interface Transaction {
    accessList?: {
        address: `0x${string}`;
        storageKeys: `0x${string}`[];
    }[];
    chainId?: `0x${string}`;
    data?: `0x${string}`;
    from: `0x${string}`;
    gas?: `0x${string}`;
    gasPrice?: `0x${string}`;
    maxFeePerGas?: `0x${string}`;
    maxPriorityFeePerGas?: `0x${string}`;
    nonce?: `0x${string}`;
    to?: `0x${string}`;
    type?: `0x${string}`;
    value?: `0x${string}`;
}

Properties

accessList?: {
    address: `0x${string}`;
    storageKeys: `0x${string}`[];
}[]
chainId?: `0x${string}`
data?: `0x${string}`
from: `0x${string}`
gas?: `0x${string}`
gasPrice?: `0x${string}`
maxFeePerGas?: `0x${string}`
maxPriorityFeePerGas?: `0x${string}`
nonce?: `0x${string}`
to?: `0x${string}`
type?: `0x${string}`
value?: `0x${string}`