UNPKG

enclave-wallet-sdk

Version:

A simple enclave wallet SDK for React applications

6 lines (5 loc) 398 B
export declare const NETWORK_NAME_TO_CHAIN_ID: Record<string, number>; export declare function getNetworkName(chainId: string | number): string; export declare const NETWORK_LOGO_URLS: Record<string, string>; export declare function formatAmount(amount: string): string; export declare const debounce: <T extends (...args: any[]) => any>(func: T, wait: number) => (...args: Parameters<T>) => void;