Transaction list response item

Txlist

interface Txlist {
    blockHash?: string;
    blockNumber?: string;
    timestamp?: string;
    hash?: string;
    nonce?: string;
    transactionIndex?: string;
    from?: string;
    to?: string;
    value?: string;
    gas?: string;
    gasPrice?: string;
    contractAddress?: string;
    input?: string;
    type?: string;
    maxFeePerGas?: string;
    maxPriorityFeePerGas?: string;
    isError?: string;
    errDescription?: string;
    gasUsed?: string;
    cumulativeGasUsed?: string;
    txreceipt_status?: string;
    confirmations?: string;
}

Properties

blockHash?: string

Block hash

blockNumber?: string

Block number

timestamp?: string

Timestamp of the transaction

hash?: string

Transaction hash

nonce?: string

Transaction nonce

transactionIndex?: string

Transaction index in block

from?: string

Sender address

to?: string

Recipient address

value?: string

Transaction value in Drip

gas?: string

Gas limit

gasPrice?: string

Gas price in Drip

contractAddress?: string

Contract address if created

input?: string

Input data

type?: string

Transaction type

maxFeePerGas?: string

Max fee per gas

maxPriorityFeePerGas?: string

Max priority fee per gas

isError?: string

Transaction status (0 for failure, 1 for success)

errDescription?: string

Error message if failed

gasUsed?: string

Gas used by the transaction

cumulativeGasUsed?: string

Cumulative gas used in the block

txreceipt_status?: string

Transaction receipt status

confirmations?: string

Number of confirmations