From 2430383142889fcbee77bd1d91fc52c314e83719 Mon Sep 17 00:00:00 2001 From: Sara Reynolds Date: Mon, 2 Dec 2024 13:52:52 -0500 Subject: [PATCH] add comment for wrap/unwrap/fot future support --- sdks/v4-sdk/src/utils/v4Planner.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/sdks/v4-sdk/src/utils/v4Planner.ts b/sdks/v4-sdk/src/utils/v4Planner.ts index f884fa4e..bd75bf35 100644 --- a/sdks/v4-sdk/src/utils/v4Planner.ts +++ b/sdks/v4-sdk/src/utils/v4Planner.ts @@ -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 { @@ -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, @@ -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 {