Vana SDK - v2.2.2
    Preparing search index...

    Interface AsyncResult<T>

    Represents the result of an asynchronous blockchain operation.

    Includes transaction details when the operation involves blockchain state changes.

    interface AsyncResult<T> {
        result: T;
        transactionHash?: `0x${string}`;
        blockNumber?: bigint;
        gasUsed?: bigint;
    }

    Type Parameters

    • T

      Type of the operation result

    Index

    Properties

    result: T

    Operation result

    transactionHash?: `0x${string}`

    Transaction hash if applicable

    blockNumber?: bigint

    Block number if applicable

    gasUsed?: bigint

    Gas used if applicable