@atomiqlabs/sdk
Version:
atomiq labs SDK for cross-chain swaps between smart chains and bitcoin
16 lines (15 loc) • 357 B
TypeScript
/**
* Enum representing the direction of a swap (from or to Bitcoin)
*
* @category Core
*/
export declare enum SwapDirection {
/**
* Swaps from bitcoin to smart chains (Solana, Starknet, EVM, etc.)
*/
FROM_BTC = 0,
/**
* Swaps from smart chains (Solana, Starknet, EVM, etc.) to bitcoin
*/
TO_BTC = 1
}