> For the complete documentation index, see [llms.txt](https://docs.altura.com/altura-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.altura.com/altura-documentation/js-sdk-reference/developer-wallet-methods/transfer-erc20.md).

# Transfer ERC20

Use this method to transfer ERC20 token from your developer wallet.&#x20;

{% hint style="info" %}
ERC20 transfer works for any ERC20, and they need to be in your developer wallet
{% endhint %}

### Usage in your script

{% tabs %}
{% tab title="JavaScript" %}

```javascript
const response = await altura.transferErc20(
    CONTRACT_ADDRESS,
    CHAIN_ID,
    AMOUNT,
    TO
);

const txHash = response.txHash;
```

{% endtab %}

{% tab title="TypeScript" %}

```typescript
const response: { txHash: string } = await altura.transferItem(
    CONTRACT_ADDRESS,
    CHAIN_ID,
    AMOUNT,
    TO
);

const txHash = response.txHash;
```

{% endtab %}
{% endtabs %}

### **Parameters**

<table><thead><tr><th width="193.33333333333331">Parameter</th><th width="105">Type</th><th width="109">Required</th><th>Description</th></tr></thead><tbody><tr><td>contract_address</td><td><strong>String</strong></td><td><strong>Yes</strong></td><td>The erc20 contract address</td></tr><tr><td>chainID</td><td><strong>number</strong></td><td><strong>Yes</strong></td><td>the network ID</td></tr><tr><td>amount</td><td><strong>String</strong></td><td><strong>Yes</strong></td><td>the amount of erc20 tokens</td></tr><tr><td>to</td><td><strong>String</strong></td><td><strong>Yes</strong></td><td>The recipient's EVM-compatible address (0x...)</td></tr></tbody></table>
