OPNet
    Preparing search index...

    Interface ITransactionReceipt

    This interface represents a transaction receipt. ITransactionReceipt

    interface ITransactionReceipt {
        events?: RawContractEvents | ContractEvents;
        gasUsed: string | bigint;
        receipt?: string | Buffer<ArrayBufferLike>;
        receiptProofs?: string[];
        revert?: string | Buffer<ArrayBufferLike>;
        specialGasUsed: string | bigint;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    The events of the transaction.

    gasUsed: string | bigint

    Gas used by the transaction.

    receipt?: string | Buffer<ArrayBufferLike>

    The receipt of the transaction.

    receiptProofs?: string[]

    The receipt proofs of the transaction.

    revert?: string | Buffer<ArrayBufferLike>

    If the transaction was reverted, this field will contain the revert message.

    specialGasUsed: string | bigint

    Special gas used by the transaction.