cngn-typescript-library
Version:
A lightweight Typescript library to give you the best experience with managing your cNGN merchant account
38 lines (37 loc) • 1.29 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Status = exports.AssetType = exports.Network = exports.TrxType = void 0;
var TrxType;
(function (TrxType) {
TrxType["fiat_buy"] = "fiat_buy";
TrxType["crypto_deposit"] = "crypto_deposit";
TrxType["enaira_buy"] = "enaira_buy";
TrxType["fiat_redeem"] = "fiat_redeem";
TrxType["withdraw"] = "withdraw";
TrxType["enaira_redeem"] = "enaira_redeem";
TrxType["swap"] = "swap";
})(TrxType || (exports.TrxType = TrxType = {}));
var Network;
(function (Network) {
Network["bsc"] = "bsc";
Network["atc"] = "atc";
Network["xbn"] = "xbn";
Network["eth"] = "eth";
Network["matic"] = "matic";
Network["trx"] = "trx";
Network["base"] = "base";
})(Network || (exports.Network = Network = {}));
var AssetType;
(function (AssetType) {
AssetType["fiat"] = "fiat";
AssetType["wrapped"] = "wrapped";
AssetType["enaira"] = "enaira";
})(AssetType || (exports.AssetType = AssetType = {}));
var Status;
(function (Status) {
Status["pending"] = "pending";
Status["pending_deposit"] = "pending_deposit";
Status["failed"] = "failed";
Status["rejected"] = "rejected";
Status["completed"] = "completed";
})(Status || (exports.Status = Status = {}));