Skip to main content

AssetTransaction

The AssetTransaction object represents a blockchain transaction associated with the creation (minting) or destruction (burning) of a specific token.

It provides essential transaction metadata including the transaction hash, block information, confirmation status, and the associated smart contract.

Schema Definition

type AssetTransaction {
hash: String!
blockNum: UInt64!
blockTime: Time
confirmations: UInt64!
contract: Contract!
}

Fields

FieldTypeDescription
hashString! non-null scalarThe unique transaction identifier (transaction hash) on the blockchain.
blockNumUInt64! non-null scalarThe block number in which this transaction was included.
blockTimeTime scalarThe timestamp when the block containing this transaction was mined. This represents the actual time the transaction was confirmed on the blockchain.
confirmationsUInt64! non-null scalarThe number of blocks that have been mined after the block containing this transaction.
contractContract! non-null objectAn object representing the contract associated with this transaction.

Member Of

ContractToken object ● Token object