UNPKG

@atomiqlabs/sdk

Version:

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

20 lines (19 loc) 568 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SwapSide = void 0; /** * Enum representing the side of the swap for querying available input/output tokens * * @category Core */ var SwapSide; (function (SwapSide) { /** * Represents input / source side of the swap */ SwapSide[SwapSide["INPUT"] = 1] = "INPUT"; /** * Represents output / destination side of the swap */ SwapSide[SwapSide["OUTPUT"] = 0] = "OUTPUT"; })(SwapSide = exports.SwapSide || (exports.SwapSide = {}));