@mojito-inc/core-service
Version:
Mojito Core API service for auction, payment, token
43 lines (41 loc) • 2.22 kB
JavaScript
;
exports.RegistryTokenFilterInput = void 0;
(function (RegistryTokenFilterInput) {
RegistryTokenFilterInput["RECENTLY_LISTED"] = "recently_listed";
RegistryTokenFilterInput["RECENTLY_MINTED"] = "recently_minted";
RegistryTokenFilterInput["INITIALLY_MINTED"] = "initially_minted";
RegistryTokenFilterInput["PRICE_LOW_TO_HIGH"] = "price_low_to_high";
RegistryTokenFilterInput["PRICE_HIGH_TO_LOW"] = "price_high_to_low";
})(exports.RegistryTokenFilterInput || (exports.RegistryTokenFilterInput = {}));
exports.RegistryTokenColumnType = void 0;
(function (RegistryTokenColumnType) {
RegistryTokenColumnType["TOKEN_NAME"] = "tokenName";
RegistryTokenColumnType["TOKEN_TYPE"] = "tokenType";
RegistryTokenColumnType["TOKEN_ID"] = "tokenID";
RegistryTokenColumnType["PRIORITY"] = "priority";
})(exports.RegistryTokenColumnType || (exports.RegistryTokenColumnType = {}));
exports.OrderType = void 0;
(function (OrderType) {
OrderType["ASC"] = "ASC";
OrderType["DESC"] = "DESC";
})(exports.OrderType || (exports.OrderType = {}));
exports.RegistryTokenStatus = void 0;
(function (RegistryTokenStatus) {
RegistryTokenStatus["NEW"] = "NEW";
RegistryTokenStatus["ENQUIRY_PENDING"] = "ENQUIRY_PENDING";
RegistryTokenStatus["OPEN_FOR_SALE"] = "OPEN_FOR_SALE";
RegistryTokenStatus["SALE_PENDING"] = "SALE_PENDING";
RegistryTokenStatus["STALE_OWNERSHIP"] = "STALE_OWNERSHIP";
})(exports.RegistryTokenStatus || (exports.RegistryTokenStatus = {}));
exports.RegistryCurrency = void 0;
(function (RegistryCurrency) {
RegistryCurrency["USD"] = "USD";
RegistryCurrency["EUR"] = "EUR";
})(exports.RegistryCurrency || (exports.RegistryCurrency = {}));
exports.RegistryCollectionSortColumns = void 0;
(function (RegistryCollectionSortColumns) {
RegistryCollectionSortColumns["COLLECTION_NAME"] = "collectionName";
RegistryCollectionSortColumns["CREATED_AT"] = "createdAt";
RegistryCollectionSortColumns["COLLECTION_TOTAL"] = "collectionTotal";
RegistryCollectionSortColumns["TOTAL_APPROVED"] = "totalApproved";
})(exports.RegistryCollectionSortColumns || (exports.RegistryCollectionSortColumns = {}));