Documentation
    Preparing search index...

    Interface DevInspectResults

    The response from processing a dev inspect transaction

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

    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?: string | null

    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?: SuiExecutionResult[] | null

    Execution results (including return values) from executing the transactions