@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
8 lines (7 loc) • 305 B
TypeScript
import { GetAddressOpts, WalletConnector } from '@dynamic-labs/wallet-connector-core';
type Props = {
getAddressOpts?: GetAddressOpts;
walletConnector: WalletConnector;
};
export declare const useSignConnectOnlyUser: () => ({ walletConnector, getAddressOpts }: Props) => Promise<void>;
export {};