@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
9 lines (8 loc) • 385 B
TypeScript
import { DynamicClient } from '@dynamic-labs-sdk/client';
export declare const setClient: (newClient: DynamicClient) => void;
export declare const getClient: () => DynamicClient;
/**
* Not many customers will ever change the client mid execution, but demo v2 will.
* That means we need hooks that can react to client changes.
*/
export declare const useClient: () => DynamicClient;