UNPKG

@atomiqlabs/sdk

Version:

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

17 lines (15 loc) 324 B
/** * Enum representing the side of the swap for querying available input/output tokens * * @category Core */ export enum SwapSide { /** * Represents input / source side of the swap */ INPUT = 1, /** * Represents output / destination side of the swap */ OUTPUT = 0 }