golem-base-sdk
    Preparing search index...

    Interface GolemBaseClient

    interface GolemBaseClient {
        httpClient: Client<
            HttpTransport,
            Chain,
            undefined
            | Account,
            RpcSchema,
            PublicActions<HttpTransport, Chain, undefined | Account> & GolemBaseActions,
        >;
        walletClient: Client<
            HttpTransport
            | CustomTransport,
            Chain,
            Account,
            RpcSchema,
            WalletActions<Chain, Account> & PublicActions<
                HttpTransport
                | CustomTransport,
                Chain,
                Account,
            > & GolemBaseWalletActions,
        >;
        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> & GolemBaseActions,
    >
    walletClient: Client<
        HttpTransport
        | CustomTransport,
        Chain,
        Account,
        RpcSchema,
        WalletActions<Chain, Account> & PublicActions<
            HttpTransport
            | CustomTransport,
            Chain,
            Account,
        > & GolemBaseWalletActions,
    >
    wsClient: Client<
        WebSocketTransport,
        Chain,
        undefined
        | Account,
        RpcSchema,
        PublicActions<WebSocketTransport, Chain, undefined | Account>,
    >