@envatic/web3modal-ts
Version:
Web3modal's provider layer abstraction for simple implementation of web3 wallet connections
9 lines (8 loc) • 335 B
TypeScript
import { IAbstractConnectorOptions } from "../../helpers";
export interface IVenlyConnectorOptions extends IAbstractConnectorOptions {
clientId: string;
secretType?: string;
environment?: string;
}
declare const ConnectToVenly: (Venly: any, opts: IVenlyConnectorOptions) => Promise<unknown>;
export default ConnectToVenly;