UNPKG

@nfid/identitykit

Version:

A React library for adding wallet connections to dApps.

15 lines (14 loc) 286 B
export type SignerConfig = { id: string; providerUrl: string; label: string; transportType: TransportType; icon?: string; description?: string; }; export declare enum TransportType { NEW_TAB = 0, EXTENSION = 1, INTERNET_IDENTITY = 2, STOIC = 3 }