@melonproject/protocol
Version:
Technology Regulated and Operated Investment Funds
18 lines (17 loc) • 624 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var Tracks;
(function (Tracks) {
// Track for testing with our own testing price feed
Tracks["TESTING"] = "testing";
// Track linked to the kyber price feed
Tracks["KYBER_PRICE"] = "kyberPrice";
})(Tracks = exports.Tracks || (exports.Tracks = {}));
// Subset of NPM logging levels without numbers
var LogLevels;
(function (LogLevels) {
LogLevels["ERROR"] = "error";
LogLevels["WARN"] = "warn";
LogLevels["INFO"] = "info";
LogLevels["DEBUG"] = "debug";
})(LogLevels = exports.LogLevels || (exports.LogLevels = {}));