Interface TransactionResponse

interface TransactionResponse {
    hash: string;
    blockNumber?: number;
    blockHash?: string;
    timestamp?: number;
    confirmations: number;
    from: string;
    raw?: string;
    wait: ((confirmations?: number) => Promise<TransactionReceipt>);
    to?: string;
    nonce: number;
    gasLimit: BigNumber;
    gasPrice?: BigNumber;
    data: string;
    value: BigNumber;
    chainId: number;
    r?: string;
    s?: string;
    v?: number;
    type?: null | number;
    accessList?: AccessList;
    maxPriorityFeePerGas?: BigNumber;
    maxFeePerGas?: BigNumber;
}

Hierarchy

  • Transaction
    • TransactionResponse

Properties

hash: string
blockNumber?: number
blockHash?: string
timestamp?: number
confirmations: number
from: string
raw?: string
wait: ((confirmations?: number) => Promise<TransactionReceipt>)
to?: string
nonce: number
gasLimit: BigNumber
gasPrice?: BigNumber
data: string
value: BigNumber
chainId: number
r?: string
s?: string
v?: number
type?: null | number
accessList?: AccessList
maxPriorityFeePerGas?: BigNumber
maxFeePerGas?: BigNumber