interface TransactionReceipt {
    blockHash: Buffer;
    blockNumber: bigint;
    contractAddress: string;
    cumulativeGasUsed: bigint;
    from: Buffer;
    gasUsed: bigint;
    logs: TransactionLog[];
    logsBloom: Buffer;
    root: Buffer;
    status: bigint;
    to: Buffer;
    transactionHash: Buffer;
    transactionIndex: bigint;
}

Properties

blockHash: Buffer
blockNumber: bigint
contractAddress: string
cumulativeGasUsed: bigint
from: Buffer
gasUsed: bigint
logsBloom: Buffer
root: Buffer
status: bigint
to: Buffer
transactionHash: Buffer
transactionIndex: bigint

Generated using TypeDoc