Asset Transfer Transaction

This is a table for all transactions whose type is Asset Transfer. This is when an asset is transferred from one wallet to another. Visit here for more details: https://developer.algorand.org/docs/get-details/transactions/transactions/#asset-transfer-transaction

Table Schema

All transactions have a distinct intra and block_id combination. The intra is the transaction # into the block where the transaction was confirmed. Inner transactions(flagged with the inner tx flag) share the tx id of their parent application transactions so you can tie inner transaction to a parent transaction via a tx id. The inner transactions are seen as distinct transactions on the Algorand blockchain, which is signified by their intra and block id combination. One other note on the parent transactions, the parent transaction of inner transaction do not summarize the inner transactions and are seen as their own distinct transaction, which is usually an application call transaction.

FieldTypeDescription

INTRA

number

Transaction # into the block where this transaction was confirmed.

BLOCK_ID

number

Block the transaction was confirmed

TX_GROUP_ID

text

Transaction group ID, can be NULL. Exists when a group of transactions are tied together

TX_ID

text

Transaction ID of the transaction

INNER_TX

boolean

A boolean true or false on whether or not this transaction has a parent transaction. The TX_ID will be the same as the parent transaction but will have it's own intra.

ASSET_ID

number

The asset ID of the asset being transferred

SENDER

text

Address of the wallet creating the transaction

FEE

number

Fee associated with the transaction, in ALGOs

ASSET_SENDER

text

The sender of the transfer. The regular sender field should be used and this one set to the zero value for regular transfers between accounts. If this value is nonzero, it indicates a clawback transaction where the sender is the asset's clawback address and the asset sender is the address from which the funds will be withdrawn.

ASSET_RECEIVER

text

The recipient of the asset transfer.

ASSET_AMOUNT

number

The amount of the asset to be transferred. A zero amount transferred to self allocates that asset in the account's Asset map.

ASSET_TRANSFERRED

number

The Asset ID of the asset transferred in the asset transfer transaction.

TX_TYPE

number

Number associated with transaction type

TX_TYPE_NAME

text

transaction type name

GENISIS_HASH

text

The hash of the genesis block of the network for which the transaction is valid

TX_MESSAGE

array

Encoded JSON message associated with the transaction

EXTRA

array

Extra json associated with transaction

Last updated