@pancakeswap/swap-sdk-core
Version:
🛠An SDK for building applications on top of Pancakeswap.
11 lines • 359 B
TypeScript
import { BaseCurrency } from './baseCurrency';
import { Token } from './token';
/**
* Represents the native currency of the chain on which it resides, e.g.
*/
export declare abstract class NativeCurrency extends BaseCurrency {
readonly isNative: true;
readonly isToken: false;
get asToken(): Token;
}
//# sourceMappingURL=nativeCurrency.d.ts.map