UNPKG

@atomiqlabs/sdk

Version:

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

16 lines (15 loc) 324 B
/** * Enum representing whether the swap amount is exact input or exact output * * @category Core */ export declare enum SwapAmountType { /** * Swap amount specified in the input token */ EXACT_IN = 1, /** * Swap amount specified in the output token */ EXACT_OUT = 0 }