interface TransactionInfo {
    accessList?: {
        address: `0x${string}`;
        storageKeys: `0x${string}`[];
    }[];
    blockHash: `0x${string}`;
    blockNumber: `0x${string}`;
    chainId?: number;
    from: `0x${string}`;
    gas: `0x${string}`;
    gasPrice?: `0x${string}`;
    hash: `0x${string}`;
    input: `0x${string}`;
    maxFeePerGas?: `0x${string}`;
    maxPriorityFeePerGas?: `0x${string}`;
    nonce: `0x${string}`;
    r?: `0x${string}`;
    s?: `0x${string}`;
    to?: `0x${string}`;
    transactionIndex: `0x${string}`;
    type?: `0x${string}`;
    v?: `0x${string}`;
    value: `0x${string}`;
    yParity?: `0x${string}`;
}

Properties

accessList?: {
    address: `0x${string}`;
    storageKeys: `0x${string}`[];
}[]
blockHash: `0x${string}`
blockNumber: `0x${string}`
chainId?: number
from: `0x${string}`
gas: `0x${string}`
gasPrice?: `0x${string}`
hash: `0x${string}`
input: `0x${string}`
maxFeePerGas?: `0x${string}`
maxPriorityFeePerGas?: `0x${string}`
nonce: `0x${string}`
r?: `0x${string}`
s?: `0x${string}`
to?: `0x${string}`
transactionIndex: `0x${string}`
type?: `0x${string}`
v?: `0x${string}`
value: `0x${string}`
yParity?: `0x${string}`