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