The response from processing a dev inspect transaction

interface DevInspectResults {
    effects: TransactionEffects;
    error?: null | string;
    events: SuiEvent[];
    rawEffects?: number[];
    rawTxnData?: number[];
    results?: null | SuiExecutionResult[];
}

Properties

Summary of effects that likely would be generated if the transaction is actually run. Note however, that not all dev-inspect transactions are actually usable as transactions so it might not be possible actually generate these effects from a normal transaction.

error?: null | string

Execution error from executing the transactions

events: SuiEvent[]

Events that likely would be generated if the transaction is actually run.

rawEffects?: number[]

The raw effects of the transaction that was dev inspected.

rawTxnData?: number[]

The raw transaction data that was dev inspected.

results?: null | SuiExecutionResult[]

Execution results (including return values) from executing the transactions