Umi — API References - v1.3.0
    Preparing search index...

    Type Alias RpcResultWithContext<Value>

    Defines an RPC result that wraps the returned value and provides the slot number as context.

    type RpcResultWithContext<Value> = {
        context: { slot: number };
        value: Value;
    }

    Type Parameters

    • Value
    Index

    Properties

    Properties

    context: { slot: number }
    value: Value