UNPKG

@dynamic-labs/sdk-react-core

Version:

A React SDK for implementing wallet web3 authentication and authorization to your website.

5 lines (4 loc) 252 B
import { Wallet } from '../../../shared/types'; type IsWalletConnectedArg = Pick<Wallet, 'address' | 'chain' | 'connector'>; export declare const isWalletConnected: ({ address, chain, connector, }: IsWalletConnectedArg) => Promise<boolean>; export {};