UNPKG

@atomiqlabs/sdk

Version:

atomiq labs SDK for cross-chain swaps between smart chains and bitcoin

20 lines (19 loc) 542 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.FeeType = void 0; /** * Enum representing types of fees in a swap * * @category Pricing */ var FeeType; (function (FeeType) { /** * Swap fee taken by the LP */ FeeType[FeeType["SWAP"] = 0] = "SWAP"; /** * Network fee to cover the transactions on the destination (output) network */ FeeType[FeeType["NETWORK_OUTPUT"] = 1] = "NETWORK_OUTPUT"; })(FeeType = exports.FeeType || (exports.FeeType = {}));