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