💠Bulk Transfer ERC1155
Bulk transfer: transferring several ERC1155 token from the same collection
This endpoint can only be used to transfer several ERC1155 tokens from the same collection to a single recipient.
Transfers several ERC1155 tokens of a particular collection from your developer wallet to a user
POST
https://api.alturanft.com/api/v2/item/transfer
Takes a collection address, array of tokenIds, array of amounts, the recipient's address (to), and your API key and transfers the ERC1155 tokensto the recipient
Query Parameters
Name | Type | Description |
---|---|---|
apiKey* | String | Your API key |
Request Body
Name | Type | Description |
---|---|---|
address* | String | The items' collection address |
tokenIds* | Integer Array | An array of the token Id's you wish to transfer from the specified collection |
amounts* | Integer Array | An array of the amount of each tokenId you wish to transfer This array must be the same length as the tokenIds array |
to* | String | The recipient's EVM-compatible address (0x...) |
The TOKEN_IDS
and AMOUNTS
the array should correspond via their index.
For example TOKEN_IDS = [1, 2, 3] and AMOUNTS = [1, 1, 2] will transfer one item of tokenId 1, one item of tokenId 2 and 2 items of tokenId 3
Last updated