interface Receipt {
    blockNumber: bigint;
    contractAddress: string;
    cumulativeGasUsed: bigint;
    effectiveGasPrice: bigint;
    from: string;
    gasUsed: bigint;
    logs: Log[];
    logsBloom: Uint8Array;
    status: number;
    to: string;
    transactionIndex: number;
    txHashHex: string;
    txType: number;
    vmError: string;
}

Properties

blockNumber: bigint
contractAddress: string
cumulativeGasUsed: bigint
effectiveGasPrice: bigint
from: string
gasUsed: bigint
logs: Log[]
logsBloom: Uint8Array
status: number
to: string
transactionIndex: number
txHashHex: string
txType: number
vmError: string