UNPKG

@crust_finance/sdk-core

Version:

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

14 lines (13 loc) 476 B
import { Currency } from './currency'; import { NativeCurrency } from './nativeCurrency'; import { Token } from './token'; /** * Ether is the main usage of a 'native' currency, i.e. for Ethereum mainnet and all testnets */ 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; }