@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
11 lines (10 loc) • 368 B
TypeScript
import { FC } from 'react';
import { WalletConnector } from '../../..';
export type SyncWalletViewProps = {
onSuccess: (isInSync: boolean) => void;
onError: (error: unknown, closePortal?: boolean) => void;
connector: WalletConnector;
expectedAddress: string;
activeAddress?: string;
};
export declare const SyncWalletView: FC<SyncWalletViewProps>;