@array.inc/sdk
Version:
🛠An SDK for building applications on top of Array.
14 lines (13 loc) • 475 B
TypeScript
import { Currency } from '../Currency';
import { NativeCurrency } from '../NativeCurrency';
import { Token } from '../Token';
/**
* Shiden is the main usage of a 'native' currency, i.e. for Shiden mainnet and all testnets
*/
export declare class Shiden extends NativeCurrency {
protected constructor(chainId: number);
get wrapped(): Token;
private static _cache;
static onChain(chainId: number): Shiden;
equals(other: Currency): boolean;
}