Skip to content

Commit

Permalink
add comment for wrap/unwrap/fot future support
Browse files Browse the repository at this point in the history
  • Loading branch information
snreynolds committed Dec 2, 2024
1 parent fbf3f5f commit 2430383
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions sdks/v4-sdk/src/utils/v4Planner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { encodeRouteToPath } from './encodeRouteToPath'
/**
* Actions
* @description Constants that define what action to perform
* Not all actions are supported yet.
* @enum {number}
*/
export enum Actions {
Expand All @@ -18,6 +19,10 @@ export enum Actions {
MINT_POSITION = 0x02,
BURN_POSITION = 0x03,

// for fee on transfer tokens
// INCREASE_LIQUIDITY_FROM_DELTAS = 0x04,
// MINT_POSITION_FROM_DELTAS = 0x05,

// swapping
SWAP_EXACT_IN_SINGLE = 0x06,
SWAP_EXACT_IN = 0x07,
Expand All @@ -36,7 +41,12 @@ export enum Actions {
TAKE_PAIR = 0x11,

CLOSE_CURRENCY = 0x12,
// CLEAR_OR_TAKE = 0x13,
SWEEP = 0x14,

// for wrapping/unwrapping native
// WRAP = 0x15,
// UNWRAP = 0x16,
}

export enum Subparser {
Expand Down

0 comments on commit 2430383

Please sign in to comment.