Interface ITransactionReceipt

This interface represents a transaction receipt. ITransactionReceipt

interface ITransactionReceipt {
    events?: RawContractEvents | ContractEvents;
    receipt?: string | Buffer;
    receiptProofs?: string[];
    revert?: string | Buffer;
}

Hierarchy (view full)

Implemented by

Properties

The events of the transaction.

receipt?: string | Buffer

The receipt of the transaction.

receiptProofs?: string[]

The receipt proofs of the transaction.

revert?: string | Buffer

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