UNPKG

@energiswap/sdk-core

Version:

⚒️ An SDK for building applications on top of Energiswap V3

11 lines (10 loc) 371 B
import { Currency } from './currency'; import { NativeCurrency } from './nativeCurrency'; import { Token } from './token'; export declare class Ether extends NativeCurrency { protected constructor(chainId: number); get wrapped(): Token; private static _etherCache; static onChain(chainId: number): Ether; equals(other: Currency): boolean; }