@juweber99/vigee-wallet-connector
Version:
vigee library to allow persisted wallet connection across multiple wallets
9 lines (8 loc) • 360 B
TypeScript
import { Networks, WalletImplementation, Wallets } from "../_types";
export declare abstract class Factory<T> {
abstract create(param: any, param2: any): T;
}
export declare class WalletFactory {
constructor();
static create(network: Networks, wallet: Wallets, defaultAccountIdx?: number, permissionCallback?: any): WalletImplementation;
}