Interface TransactionResponse

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

Hierarchy

  • Transaction
    • TransactionResponse

Properties

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

Type declaration

    • (confirmations?): Promise<TransactionReceipt>
    • Parameters

      • Optional confirmations: number

      Returns Promise<TransactionReceipt>

Generated using TypeDoc