arkiv-sdk
    Preparing search index...

    Interface ArkivClient

    Interface for the internal full Arkiv client extending read-only capabilities with wallet functionality for transaction signing and submission.

    interface ArkivClient {
        httpClient: Client<
            HttpTransport,
            Chain,
            undefined
            | Account,
            RpcSchema,
            PublicActions<HttpTransport, Chain, undefined | Account> & ArkivActions,
        >;
        walletClient: Client<
            HttpTransport
            | CustomTransport,
            Chain,
            Account,
            RpcSchema,
            WalletActions<Chain, Account> & PublicActions<
                HttpTransport
                | CustomTransport,
                Chain,
                Account,
            > & ArkivWalletActions,
        >;
        wsClient: Client<
            WebSocketTransport,
            Chain,
            undefined
            | Account,
            RpcSchema,
            PublicActions<WebSocketTransport, Chain, undefined | Account>,
        >;
    }

    Hierarchy (View Summary)

    Index

    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

    walletClient: Client<
        HttpTransport
        | CustomTransport,
        Chain,
        Account,
        RpcSchema,
        WalletActions<Chain, Account> & PublicActions<
            HttpTransport
            | CustomTransport,
            Chain,
            Account,
        > & ArkivWalletActions,
    >

    Wallet client for signing and sending transactions to Arkiv

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

    WebSocket client for real-time event monitoring and subscriptions