@mindsorg/web3modal-ts
Version:
Web3modal's provider layer abstraction for simple implementation of web3 wallet connections
10 lines (9 loc) • 388 B
TypeScript
import { IAbstractConnectorOptions } from '../../helpers';
export interface IWalletLinkConnectorOptions extends IAbstractConnectorOptions {
infuraUrl: string;
appName?: string;
appLogoUrl?: string;
darkMode: boolean;
}
declare const ConnectToWalletLink: (WalletLinkProvider: any, opts: IWalletLinkConnectorOptions) => Promise<unknown>;
export default ConnectToWalletLink;