TokenTransfer

Transfers tokens between accounts. The transaction signer must be the owner of the source account.Fields:

Field
Type
Description

value

String

Amount of tokens to transfer

to

String

Recipient address

token

Option<String>

Token address (None for native token)

Sample Response:

{
  "transaction_type": "TokenTransfer",
  "data": {
    "value": "1000000000000000000",
    "to": "0x9E1E9688A44D058fF181Ed64ddFAFbBE5CC74ff3",
    "token": "0x1234567890123456789012345678901234567890"
  }
}

Last updated