@renec-foundation/redex-sdk
Version:
Typescript SDK to interact with Orca's Whirlpool program.
17 lines (16 loc) • 300 B
TypeScript
/**
* An enum for the direction of a swap.
* @category Whirlpool Utils
*/
export declare enum SwapDirection {
AtoB = "aToB",
BtoA = "bToA"
}
/**
* An enum for the token type in a Whirlpool.
* @category Whirlpool Utils
*/
export declare enum TokenType {
TokenA = 1,
TokenB = 2
}