@mindsorg/web3modal-ts
Version:
Web3modal's provider layer abstraction for simple implementation of web3 wallet connections
15 lines (14 loc) • 531 B
TypeScript
import { IAbstractConnectorOptions } from '../../helpers';
export interface IAuthereumConnectorOptions extends IAbstractConnectorOptions {
networkName: string;
apiKey: string;
rpcUri: string;
webUri: string;
xsUri: string;
blockedPopupRedirect: boolean;
forceRedirect: boolean;
disableNotifications: boolean;
disableGoogleAnalytics: boolean;
}
declare const ConnectToAuthereum: (Authereum: any, opts?: Partial<IAuthereumConnectorOptions>) => Promise<unknown>;
export default ConnectToAuthereum;