UNPKG

astra-sdk-core

Version:

⚒️ An SDK for building applications on top of Astra CL

14 lines (13 loc) 430 B
import { Currency } from './currency'; import { NativeCurrency } from './nativeCurrency'; import { Token } from './token'; /** * AMB is the main usage of a 'native' currency */ export declare class Amber extends NativeCurrency { protected constructor(chainId: number); get wrapped(): Token; private static _etherCache; static onChain(chainId: number): Amber; equals(other: Currency): boolean; }