Comment on page
💠
Bulk Transfer ERC1155
Use this method to transfer multiple ERC1155 from the same collection.
To trYou are only able to transfer ERC1155 tokens, which is in your developer wallet and the collection use Altura services.
TransferItems
.Initialize(destroyAtEnd: true)
.SetParameters(
collection_addr: "0x...",
token_id: "10",
amount: "1",
to_addr: "0x..."
)
.OnError(error => Debug.Log(error))
.OnComplete(result => Debug.Log(result))
.Run();
.Initialize()
Parameter | Type | Required | Description |
---|---|---|---|
destroyAtEnd | bool | Optional | defines if this component will be destroyed after .Run() |
.SetParameters()
Parameter | Type | Required | Description |
---|---|---|---|
collection_addr | String | Yes | Address of the collection |
token_id | String | Yes | Item iD |
amount | String | Yes | amount of item to transfer |
to_addr | String | Yes | target wallet address |
.onError()
Action on Error: returns error information.
.onComplete()
.Run()
Runs the API call and fills the corresponding model in the component on success.
Last modified 1yr ago