notbank
Version:
The Notbank for Node.js
14 lines (13 loc) • 448 B
JavaScript
export var FeeCalcType;
(function (FeeCalcType) {
FeeCalcType["Flat"] = "Flat";
FeeCalcType["Percentage"] = "Percentage";
})(FeeCalcType || (FeeCalcType = {}));
export var FeeType;
(function (FeeType) {
FeeType["Flat"] = "Flat";
FeeType["MakerFee"] = "MakerFee";
FeeType["TakerFee"] = "TakerFee";
FeeType["PeggedProductFee"] = "PeggedProductFee";
FeeType["AffiliateFee"] = "AffiliateFee";
})(FeeType || (FeeType = {}));