@blockchain-lab-um/masca-connector
Version:
Library for using Masca on the frontend
13 lines (10 loc) • 317 B
TypeScript
import { EIP6963ProviderDetail } from 'mipd';
declare class ProviderStore {
private store;
private currentProvider;
constructor();
getCurrentProvider(): EIP6963ProviderDetail | null;
findProvider(rdns: string): EIP6963ProviderDetail | undefined;
destroy(): void;
}
export { ProviderStore };