The receipt of an onchain transaction's execution.

Export

TransactionReceipt

interface TransactionReceipt {
    effective_gas_price: string;
    gas_used: string;
    logs: TransactionLog[];
    status: number;
}

Properties

effective_gas_price: string

The effective gas price the transaction was charged at.

Memberof

TransactionReceipt

gas_used: string

The amount of gas actually used by this transaction.

Memberof

TransactionReceipt

Memberof

TransactionReceipt

status: number

The status of a transaction is 1 if successful or 0 if it was reverted.

Memberof

TransactionReceipt