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
| Field | Type | Description |
|---|---|---|
hash | String! non-null scalar | The unique transaction identifier (transaction hash) on the blockchain. |
blockNum | UInt64! non-null scalar | The block number in which this transaction was included. |
blockTime | Time scalar | The timestamp when the block containing this transaction was mined. This represents the actual time the transaction was confirmed on the blockchain. |
confirmations | UInt64! non-null scalar | The number of blocks that have been mined after the block containing this transaction. |
contract | Contract! non-null object | An object representing the contract associated with this transaction. |
Member Of
ContractToken object ● Token object