UNPKG

fugitut

Version:

A simple, maximally extensible, dependency minimized framework for building modern Ethereum dApps

14 lines (11 loc) 326 B
interface Ethereum { send: unknown sendAsync: unknown enable: () => Promise<string[]> on?: (method: string, listener: (...args: any[]) => void) => void removeListener?: (method: string, listener: (...args: any[]) => void) => void } declare interface Window { ethereum?: Ethereum } declare const __DEV__: boolean