@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
8 lines (7 loc) • 369 B
TypeScript
import { EmbeddedWalletChainEnum } from '@dynamic-labs/sdk-api-core';
import { Wallet, WebAuthnAttestation } from '@dynamic-labs/wallet-connector-core';
export declare const useTurnkey: () => {
readonly createTurnkeyWallet: (chains?: EmbeddedWalletChainEnum[], options?: {
webAuthnAttestation: WebAuthnAttestation;
}) => Promise<Wallet | undefined>;
};