UNPKG

@kryptogo/kryptogokit-sdk-react

Version:

KryptogoKit offers a comprehensive web3 wallet solution with seamless KryptoGO Auth integration and multi-wallet connection support. Designed for users. Built for developers.

12 lines (11 loc) 509 B
import { KryptogoFetchClient, type FetchRequestOpts } from './fetch'; import { KryptogoWebSocket } from './webSocket'; export declare function createHttpClient({ baseUrl, headers, params, timeout, }: { baseUrl: string; } & FetchRequestOpts): KryptogoFetchClient; export declare const baseHttpClient: (dev?: boolean) => KryptogoFetchClient; export declare function useHttpClient(): { client: KryptogoFetchClient; dev: boolean | undefined; }; export declare const wsClient: () => KryptogoWebSocket;