interface Transaction {
    accessList?: AccessList;
    blockHash?: string;
    blockNumber?: number;
    chainId: number;
    confirmations: number;
    data: string;
    from: string;
    gasLimit: string;
    gasPrice?: string;
    hash: string;
    maxFeePerGas?: string;
    maxPriorityFeePerGas?: string;
    nonce: number;
    r?: string;
    raw?: string;
    s?: string;
    timestamp?: number;
    to?: string;
    type?: null | number;
    v?: number;
    value: string;
}

Properties

accessList?: AccessList

EIP-2930; Type 1 & EIP-1559; Type 2

blockHash?: string
blockNumber?: number

The block number of the transaction if mined

chainId: number
confirmations: number
data: string
from: string
gasLimit: string
gasPrice?: string
hash: string
maxFeePerGas?: string
maxPriorityFeePerGas?: string

EIP-1559; Type 2

nonce: number
r?: string
raw?: string

The raw transaction

s?: string
timestamp?: number
to?: string
type?: null | number

Typed-Transaction features

v?: number
value: string

Generated using TypeDoc