@sangaman/xud
Version:
Exchange Union Daemon
24 lines • 1.05 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var SwapProtocol;
(function (SwapProtocol) {
SwapProtocol["LND"] = "LND";
SwapProtocol["RAIDEN"] = "RAIDEN";
})(SwapProtocol = exports.SwapProtocol || (exports.SwapProtocol = {}));
var OrderingDirection;
(function (OrderingDirection) {
OrderingDirection["DESC"] = "DESC";
OrderingDirection["ASC"] = "ASC";
})(OrderingDirection = exports.OrderingDirection || (exports.OrderingDirection = {}));
// TODO: consider to replace CurrencyType with currencies.
var CurrencyType;
(function (CurrencyType) {
CurrencyType[CurrencyType["BTC"] = 0] = "BTC";
CurrencyType[CurrencyType["LTC"] = 1] = "LTC";
})(CurrencyType = exports.CurrencyType || (exports.CurrencyType = {}));
var SwapDealRole;
(function (SwapDealRole) {
SwapDealRole[SwapDealRole["Taker"] = 0] = "Taker";
SwapDealRole[SwapDealRole["Maker"] = 1] = "Maker";
})(SwapDealRole = exports.SwapDealRole || (exports.SwapDealRole = {}));
//# sourceMappingURL=enums.js.map