@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
10 lines (9 loc) • 341 B
TypeScript
import { FC } from 'react';
import { WalletConnector } from '@dynamic-labs/wallet-connector-core';
export type ReconnectWithQrCodeViewProps = {
onCancel: () => void;
onSuccess: () => void;
connector: WalletConnector;
expectedAddress: string;
};
export declare const ReconnectWithQrCodeView: FC<ReconnectWithQrCodeViewProps>;