Token transaction list response item

Tokentx

interface Tokentx {
    blockNumber?: string;
    timestamp?: string;
    hash?: string;
    nonce?: string;
    blockHash?: string;
    from?: string;
    to?: string;
    contractAddress?: string;
    tokenID?: string;
    tokenName?: string;
    tokenSymbol?: string;
    tokenDecimal?: string;
    value?: string;
    tokenType?: string;
    gas?: string;
    gasPrice?: string;
    baseFeePerGas?: string;
    maxFeePerGas?: string;
    maxPriorityFeePerGas?: string;
    status?: string;
}

Properties

blockNumber?: string

Block number

timestamp?: string

Timestamp of the transaction

hash?: string

Transaction hash

nonce?: string

Transaction nonce

blockHash?: string

Block hash

from?: string

Sender address

to?: string

Recipient address

contractAddress?: string

Contract address

tokenID?: string

Token ID (for NFTs)

tokenName?: string

Token name

tokenSymbol?: string

Token symbol

tokenDecimal?: string

Token decimals

value?: string

Transaction value in token's smallest unit

tokenType?: string

Token type

gas?: string

Gas used

gasPrice?: string

Gas price in Drip

baseFeePerGas?: string

Base fee per gas

maxFeePerGas?: string

Max fee per gas

maxPriorityFeePerGas?: string

Max priority fee per gas

status?: string

Transaction status (0 for failure, 1 for success)