💠Transfer ERC721

Use this method to transfer an ERC721 Token from your developer wallet.

You are only able to transfer ERC721 tokens, which is in your developer wallet and the collection use Altura services.

Usage in your script

TransferErc721
  .Initialize(destroyAtEnd: true)
  .SetParameters(
    collection_addr: "0x...",
    token_id: "10",
    to_addr: "0x..."
  )
  .OnError(error => Debug.Log(error))
  .OnComplete(result => Debug.Log(result))
  .Run();

Member Functions

.Initialize()

.SetParameters()

.onError()

Action on Error: returns error information.

.onComplete()

Action on successful: returns Transfer_model type.

.Run()

Runs the API call and fills the corresponding model in the component on success.

Last updated