> 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-erc721.md).

# Transfer ERC721

Use this method to transfer an ERC721 Token from your developer wallet.&#x20;

{% hint style="info" %}
You are only able to transfer ERC721 tokens, which is in your developer wallet and the collection use Altura services.
{% endhint %}

### Usage in your script

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

```javascript
const response = await altura.transferErc721(
    COLLECTION_ADDRESS,
    TOKEN_ID,
    TO_ADDRESS
);

const txHash = response.txHash;
```

{% endtab %}

{% tab title="TypeScript" %}

```typescript
const response: { txHash: string } = await altura.transferErc721(
    COLLECTION_ADDRESS,
    TOKEN_ID,
    TO_ADDRESS
);

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>collection_addr</td><td><strong>String</strong></td><td><strong>Yes</strong></td><td>The ERC721 collection address</td></tr><tr><td>token_id</td><td><strong>number</strong></td><td><strong>Yes</strong></td><td>The ERC721 tokenId</td></tr><tr><td>to_addr</td><td><strong>String</strong></td><td><strong>Yes</strong></td><td>The recipient's EVM-compatible address (0x...)</td></tr></tbody></table>
