UNPKG

@mindsorg/web3modal-ts

Version:

Web3modal's provider layer abstraction for simple implementation of web3 wallet connections

10 lines (9 loc) 372 B
import { IAbstractConnectorOptions } from '../../helpers'; export interface IMewConnectConnectorOptions extends IAbstractConnectorOptions { infuraId?: string; rpc?: { [chainId: number]: string; }; } declare const ConnectToMewConnect: (MewConnectProvider: any, opts: IMewConnectConnectorOptions) => Promise<unknown>; export default ConnectToMewConnect;