UNPKG

@mindsorg/web3modal-ts

Version:

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

8 lines (7 loc) 319 B
import { IAbstractConnectorOptions } from '../../helpers'; export interface IDcentConnectorOptions extends IAbstractConnectorOptions { rpcUrl: string; chainId: number; } declare const ConnectToDcentWallet: (DcentProvider: any, opts: IDcentConnectorOptions) => Promise<any>; export default ConnectToDcentWallet;