RPCResponseAndContext

public struct RPCResponseAndContext<Response> : Codable where Response : RPCResponse

A result body that consists of the context (slot information) and actual value result of a given operation.

Commonly returned from calls that query bank state.

  • The contextual information corresponding to this RPC response

    Declaration

    Swift

    public let context: RPCResponseContext
  • The actual result of the operation.

    Declaration

    Swift

    public let value: Response