Asset Configuration Transaction

This is a table for all transactions whose type is Asset Configuration. These transactions are to create, configure and destroy an asset depending on which fields are set. For more details on asset configuration transactions. Visit here: https://developer.algorand.org/docs/get-details/transactions/transactions/#asset-configuration-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

ID of Asset involved in the transaction

ASSET_SUPPLY

number

The total number of base units of the asset to create. This number cannot be changed.

SENDER

text

Address of the wallet creating the transaction

FEE

number

Fee associated with the transaction, in ALGOs

ASSET_PARAMETERS

array

All parameters involved with the asset being created, modified or destroyed in the transactionhttps://developer.algorand.org/docs/get-details/transactions/transactions/#asset-parameters

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