@totle/web3connect
Version:
A single Web3 / Ethereum provider solution for all Wallets
16 lines • 449 B
TypeScript
export interface INetwork {
nodeUrl: string;
chainId?: string;
}
export interface IOptions {
scope?: string[];
}
export interface IWalletLinkConnectorOptions {
infuraId: string;
appName: string;
appLogoUrl: string;
config?: IOptions;
}
declare const ConnectToWalletLink: (WalletLink: any, opts: IWalletLinkConnectorOptions) => Promise<unknown>;
export default ConnectToWalletLink;
//# sourceMappingURL=walletlink.d.ts.map