The amounts of each token to transfer in the smallest unit
Optional
approvals?: [owner_id: string, approval_id: number][]Optional array of approval tuples [owner_id, approval_id] or nulls per tokenId
The Account that will transfer the tokens
Optional
memo?: stringOptional memo for indexing
The AccountID that will receive the tokens
The tokens to transfer
Get the available balance of an account for the given token in indivisible units
The account to get the balance of
The token to retrieve the balance from
The balance in the smallest unit as bigint
Get the available balances of an account for the given tokens in indivisible units
The account to get the balances of
The tokens to retrieve the balances from
The balances in the smallest unit as bigint[] matching the order of tokenIds
Transfer tokens from one account to another
The amount of tokens to transfer in the smallest unit
Optional
approval?: [owner_id: string, approval_id: number]Optional approval tuple [owner_id, approval_id]
The Account that will transfer the tokens
Optional
memo?: stringOptional memo for indexing
The AccountID that will receive the tokens
The token to transfer
Transfer tokens and call a function on the receiver contract.
Only works if the receiver implements the mt_on_transfer
method
The amount of tokens to transfer in the smallest unit
Optional
approval?: [owner_id: string, approval_id: number]Optional approval tuple [owner_id, approval_id]
The Account that will transfer the tokens
Optional
memo?: stringOptional memo for indexing
The message to send to the mt_on_transfer
method
The AccountID that will receive the tokens
The token to transfer
Transfer multiple tokens and amounts from one account to another