UNPKG

saepenatus

Version:

Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, mul

13 lines (10 loc) 273 B
export type LoginOptions = { walletName: string brandingHTMLString: string emailLoginFunction: EmailLoginFunction } export type MagicInitOptions = { apiKey: string userEmail?: string } export type EmailLoginFunction = (emailAddress: string) => Promise<boolean>