butterjs-sdk
Version:
Butter Network SDK
12 lines (11 loc) • 384 B
TypeScript
import { Currency } from '../Currency';
import { NativeCurrency } from '../NativeCurrency';
import { Token } from '../Token';
/**
* Near is the main usage of a 'native' currency, i.e. for Near mainnet and all testnets
*/
export declare class NearNativeCoin extends NativeCurrency {
constructor(chainId: string);
get wrapped(): Token;
equals(other: Currency): boolean;
}