arkiv-sdk
    Preparing search index...

    Interface ArkivROClient

    Interface for the internal read-only Arkiv client providing access to both HTTP and WebSocket connections for querying blockchain data.

    interface ArkivROClient {
        httpClient: Client<
            HttpTransport,
            Chain,
            undefined
            | Account,
            RpcSchema,
            PublicActions<HttpTransport, Chain, undefined | Account> & ArkivActions,
        >;
        wsClient: Client<
            WebSocketTransport,
            Chain,
            undefined
            | Account,
            RpcSchema,
            PublicActions<WebSocketTransport, Chain, undefined | Account>,
        >;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    httpClient: Client<
        HttpTransport,
        Chain,
        undefined
        | Account,
        RpcSchema,
        PublicActions<HttpTransport, Chain, undefined | Account> & ArkivActions,
    >

    HTTP client for making JSON-RPC calls and reading Arkiv data

    wsClient: Client<
        WebSocketTransport,
        Chain,
        undefined
        | Account,
        RpcSchema,
        PublicActions<WebSocketTransport, Chain, undefined | Account>,
    >

    WebSocket client for real-time event monitoring and subscriptions