@polycity/sdk
Version:
🛠An SDK for building applications on top of PolyCityDex Protocol.
11 lines (10 loc) • 371 B
TypeScript
import { Currency } from '../Currency';
import { NativeCurrency } from '../NativeCurrency';
import { Token } from '../Token';
export declare class Fantom extends NativeCurrency {
protected constructor(chainId: number);
get wrapped(): Token;
private static _cache;
static onChain(chainId: number): Fantom;
equals(other: Currency): boolean;
}