barterjs-sdk
Version:
Barter Network SDK
16 lines (15 loc) • 458 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NativeCurrency = void 0;
const BaseCurrency_1 = require("./BaseCurrency");
/**
* Represents the native currency of the chain on which it resides, e.g.
*/
class NativeCurrency extends BaseCurrency_1.BaseCurrency {
constructor() {
super(...arguments);
this.isNative = true;
this.isToken = false;
}
}
exports.NativeCurrency = NativeCurrency;