Interface TransactionByHash

interface TransactionByHash {
    blockHash: null | string;
    blockNumber: null | string;
    chainId: string;
    from: string;
    gas: string;
    gasPrice: string;
    hash: string;
    input: string;
    maxFeePerGas: string;
    maxPriorityFeePerGas: string;
    nonce: string;
    r: null | string;
    s: null | string;
    scheduledIndex: string;
    scheduledPayer: string;
    scheduledSolanaPayer: string;
    scheduledSolanaSignature: string;
    to: string;
    transactionIndex: null | string;
    type: string;
    v: null | string;
    value: string;
}

Properties

blockHash: null | string
blockNumber: null | string
chainId: string
from: string
gas: string
gasPrice: string
hash: string
input: string
maxFeePerGas: string
maxPriorityFeePerGas: string
nonce: string
r: null | string
s: null | string
scheduledIndex: string
scheduledPayer: string
scheduledSolanaPayer: string
scheduledSolanaSignature: string
to: string
transactionIndex: null | string
type: string
v: null | string
value: string