@meteora-ag/cp-amm-sdk 1.2.1 → 1.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -6086,6 +6086,7 @@ type VestingState = IdlAccounts<CpAmm$1>["vesting"];
6086
6086
  type ConfigState = IdlAccounts<CpAmm$1>["config"];
6087
6087
  type TokenBadgeState = IdlAccounts<CpAmm$1>["tokenBadge"];
6088
6088
  type RewardInfo = IdlTypes<CpAmm$1>["rewardInfo"];
6089
+ type UserRewardInfo = IdlTypes<CpAmm$1>["userRewardInfo"];
6089
6090
  /**
6090
6091
  * Dynamic fee parameters
6091
6092
  * @param binStep
@@ -6553,17 +6554,31 @@ type InitializeRewardParams = {
6553
6554
  rewardDuration: BN;
6554
6555
  pool: PublicKey;
6555
6556
  rewardMint: PublicKey;
6557
+ funder: PublicKey;
6558
+ payer: PublicKey;
6559
+ creator: PublicKey;
6560
+ rewardMintProgram: PublicKey;
6561
+ };
6562
+ type InitializeAndFundReward = {
6563
+ rewardIndex: number;
6564
+ rewardDuration: BN;
6565
+ pool: PublicKey;
6566
+ creator: PublicKey;
6556
6567
  payer: PublicKey;
6568
+ rewardMint: PublicKey;
6569
+ carryForward: boolean;
6570
+ amount: BN;
6571
+ rewardMintProgram: PublicKey;
6557
6572
  };
6558
6573
  type UpdateRewardDurationParams = {
6559
6574
  pool: PublicKey;
6560
- admin: PublicKey;
6575
+ signer: PublicKey;
6561
6576
  rewardIndex: number;
6562
6577
  newDuration: BN;
6563
6578
  };
6564
6579
  type UpdateRewardFunderParams = {
6565
6580
  pool: PublicKey;
6566
- admin: PublicKey;
6581
+ signer: PublicKey;
6567
6582
  rewardIndex: number;
6568
6583
  newFunder: PublicKey;
6569
6584
  };
@@ -6573,6 +6588,9 @@ type FundRewardParams = {
6573
6588
  pool: PublicKey;
6574
6589
  carryForward: boolean;
6575
6590
  amount: BN;
6591
+ rewardMint: PublicKey;
6592
+ rewardVault: PublicKey;
6593
+ rewardMintProgram: PublicKey;
6576
6594
  };
6577
6595
  type WithdrawIneligibleRewardParams = {
6578
6596
  rewardIndex: number;
@@ -6595,7 +6613,7 @@ type ClaimRewardParams = {
6595
6613
  positionState: PositionState;
6596
6614
  positionNftAccount: PublicKey;
6597
6615
  rewardIndex: number;
6598
- skipReward: number;
6616
+ isSkipReward: boolean;
6599
6617
  feePayer?: PublicKey;
6600
6618
  };
6601
6619
  type RefreshVestingParams = {
@@ -6859,11 +6877,26 @@ declare class CpAmm {
6859
6877
  position: PublicKey;
6860
6878
  positionState: PositionState;
6861
6879
  }>>;
6880
+ /**
6881
+ * Retrieves all vesting accounts associated with a position.
6882
+ * @param position - Public key of the position.
6883
+ * @returns Array of vesting account public keys and their states.
6884
+ */
6862
6885
  getAllVestingsByPosition(position: PublicKey): Promise<Array<{
6863
6886
  publicKey: PublicKey;
6864
6887
  account: VestingState;
6865
6888
  }>>;
6889
+ /**
6890
+ * Checks if a position has any locked liquidity.
6891
+ * @param position - Position state.
6892
+ * @returns True if the position has locked liquidity, false otherwise.
6893
+ */
6866
6894
  isLockedPosition(position: PositionState): boolean;
6895
+ /**
6896
+ * Checks if a position is permanently locked.
6897
+ * @param positionState - Position state.
6898
+ * @returns True if the position is permanently locked, false otherwise.
6899
+ */
6867
6900
  isPermanentLockedPosition(positionState: PositionState): boolean;
6868
6901
  /**
6869
6902
  * Checks if a position can be unlocked based on its locking state and vesting schedules.
@@ -6888,6 +6921,11 @@ declare class CpAmm {
6888
6921
  canUnlock: boolean;
6889
6922
  reason?: string;
6890
6923
  };
6924
+ /**
6925
+ * Checks if a pool exists.
6926
+ * @param pool - Public key of the pool.
6927
+ * @returns True if the pool exists, false otherwise.
6928
+ */
6891
6929
  isPoolExist(pool: PublicKey): Promise<boolean>;
6892
6930
  /**
6893
6931
  * Computes the liquidity delta based on the provided token amounts and sqrt price
@@ -6909,6 +6947,11 @@ declare class CpAmm {
6909
6947
  totalFee: BN$1;
6910
6948
  priceImpact: Decimal;
6911
6949
  };
6950
+ /**
6951
+ * Calculates the expected output amount or input amount for a swap depending on the swap mode.
6952
+ * @param params GetQuote2Params
6953
+ * @returns Quote2Result
6954
+ */
6912
6955
  getQuote2(params: GetQuote2Params): Quote2Result;
6913
6956
  /**
6914
6957
  * Calculates the deposit quote for liquidity pool.
@@ -6965,6 +7008,11 @@ declare class CpAmm {
6965
7008
  pool: PublicKey;
6966
7009
  position: PublicKey;
6967
7010
  }>;
7011
+ /**
7012
+ * Builds a transaction to create a customizable pool with dynamic config.
7013
+ * @param params InitializeCustomizeablePoolWithDynamicConfigParams
7014
+ * @returns Transaction and related addresses.
7015
+ */
6968
7016
  createCustomPoolWithDynamicConfig(params: InitializeCustomizeablePoolWithDynamicConfigParams): Promise<{
6969
7017
  tx: Transaction;
6970
7018
  pool: PublicKey;
@@ -7010,6 +7058,11 @@ declare class CpAmm {
7010
7058
  * @returns Transaction builder.
7011
7059
  */
7012
7060
  swap(params: SwapParams): TxBuilder;
7061
+ /**
7062
+ * Builds a transaction to perform a swap in the pool.
7063
+ * @param params Swap2Params
7064
+ * @returns Transaction builder.
7065
+ */
7013
7066
  swap2(params: Swap2Params): TxBuilder;
7014
7067
  /**
7015
7068
  * Builds a transaction to lock a position with vesting schedule.
@@ -7029,6 +7082,11 @@ declare class CpAmm {
7029
7082
  * @returns Transaction builder.
7030
7083
  */
7031
7084
  refreshVesting(params: RefreshVestingParams): TxBuilder;
7085
+ /**
7086
+ * Builds a transaction to close a position.
7087
+ * @param params ClosePositionParams
7088
+ * @returns Transaction builder.
7089
+ */
7032
7090
  closePosition(params: ClosePositionParams): TxBuilder;
7033
7091
  /**
7034
7092
  * Builds a transaction to remove all liquidity from a position and close it.
@@ -7055,6 +7113,18 @@ declare class CpAmm {
7055
7113
  * @throws {Error} If either position is locked or incompatible
7056
7114
  */
7057
7115
  mergePosition(params: MergePositionParams): TxBuilder;
7116
+ /**
7117
+ * Builds a transaction to initialize a reward for a pool.
7118
+ * @param params InitializeRewardParams
7119
+ * @returns Transaction builder.
7120
+ */
7121
+ initializeReward(params: InitializeRewardParams): TxBuilder;
7122
+ /**
7123
+ * Builds a transaction to initialize and fund a reward for a pool.
7124
+ * @param params InitializeAndFundReward
7125
+ * @returns Transaction builder.
7126
+ */
7127
+ initializeAndFundReward(params: InitializeAndFundReward): TxBuilder;
7058
7128
  /**
7059
7129
  * Builds a transaction to update reward duration.
7060
7130
  * @param {UpdateRewardDurationParams} params - Parameters including pool and new duration.
@@ -7103,7 +7173,17 @@ declare class CpAmm {
7103
7173
  * @returns Transaction builder.
7104
7174
  */
7105
7175
  claimReward(params: ClaimRewardParams): TxBuilder;
7176
+ /**
7177
+ * Builds a transaction to split a position into two positions.
7178
+ * @param params SplitPositionParams
7179
+ * @returns Transaction builder.
7180
+ */
7106
7181
  splitPosition(params: SplitPositionParams): TxBuilder;
7182
+ /**
7183
+ * Builds a transaction to split a position into two positions.
7184
+ * @param params SplitPosition2Params
7185
+ * @returns Transaction builder.
7186
+ */
7107
7187
  splitPosition2(params: SplitPosition2Params): TxBuilder;
7108
7188
  }
7109
7189
 
@@ -7166,7 +7246,7 @@ declare function getTokenProgram(flag: number): PublicKey;
7166
7246
  * @param mint - The mint
7167
7247
  * @returns The token decimals
7168
7248
  */
7169
- declare const getTokenDecimals: (connection: Connection, mint: PublicKey) => Promise<number>;
7249
+ declare const getTokenDecimals: (connection: Connection, mint: PublicKey, tokenProgram: PublicKey) => Promise<number>;
7170
7250
  /**
7171
7251
  * Gets the or creates the ATA instruction
7172
7252
  * @param connection - The connection
@@ -7314,11 +7394,20 @@ declare const getSqrtPriceFromPrice: (price: string, tokenADecimal: number, toke
7314
7394
  * @param positionState - The position state
7315
7395
  * @returns The unclaimed reward
7316
7396
  */
7317
- declare const getUnClaimReward: (poolState: PoolState, positionState: PositionState) => {
7397
+ declare const getUnClaimLpFee: (poolState: PoolState, positionState: PositionState) => {
7318
7398
  feeTokenA: BN;
7319
7399
  feeTokenB: BN;
7320
7400
  rewards: BN[];
7321
7401
  };
7402
+ declare function getRewardInfo(poolState: PoolState, rewardIndex: number, periodTime: BN, currentTime: BN): {
7403
+ rewardPerPeriod: BN;
7404
+ rewardBalance: BN;
7405
+ totalRewardDistributed: BN;
7406
+ };
7407
+ declare function getUserRewardPending(poolState: PoolState, positionState: PositionState, rewardIndex: number, currentTime: BN, periodTime: BN): {
7408
+ userRewardPerPeriod: BN;
7409
+ userPendingReward: BN;
7410
+ };
7322
7411
 
7323
7412
  /**
7324
7413
  * Filters for the position by pool
@@ -15601,4 +15690,4 @@ var cp_amm = {
15601
15690
  types: types
15602
15691
  };
15603
15692
 
15604
- export { ActivationPoint, ActivationType, type AddLiquidityParams, type AmmProgram, BASIS_POINT_MAX, BIN_STEP_BPS_DEFAULT, BIN_STEP_BPS_U128_DEFAULT, type BaseFee, type BaseFeeHandler, BaseFeeMode, type BuildAddLiquidityParams, type BuildLiquidatePositionInstructionParams, type BuildRemoveAllLiquidityInstructionParams, CP_AMM_PROGRAM_ID, CURRENT_POOL_VERSION, type ClaimPartnerFeeParams, type ClaimPositionFeeInstructionParams, type ClaimPositionFeeParams, type ClaimPositionFeeParams2, type ClaimRewardParams, type ClosePositionInstructionParams, type ClosePositionParams, CollectFeeMode, type ConfigState, CpAmm, cp_amm as CpAmmIdl, type CpAmm$1 as CpAmmTypes, type CreatePoolParams, type CreatePositionAndAddLiquidity, type CreatePositionParams, DYNAMIC_FEE_DECAY_PERIOD_DEFAULT, DYNAMIC_FEE_FILTER_PERIOD_DEFAULT, DYNAMIC_FEE_REDUCTION_FACTOR_DEFAULT, DYNAMIC_FEE_ROUNDING_OFFSET, DYNAMIC_FEE_SCALING_FACTOR, type DepositQuote, type DynamicFee, type DynamicFeeParams, type DynamicFeeStruct, FEE_DENOMINATOR, type FeeMode, type FeeOnAmountResult, FeeRateLimiter, FeeScheduler, type FundRewardParams, type GetDepositQuoteParams, type GetQuote2Params, type GetQuoteParams, type GetWithdrawQuoteParams, type InitializeCustomizeablePoolParams, type InitializeCustomizeablePoolWithDynamicConfigParams, type InitializeRewardParams, LIQUIDITY_SCALE, type LiquidityDeltaParams, type LockPositionParams, MAX, MAX_CU_BUFFER, MAX_EXPONENTIAL, MAX_FEE_BPS_V0, MAX_FEE_BPS_V1, MAX_FEE_NUMERATOR_V0, MAX_FEE_NUMERATOR_V1, MAX_PRICE_CHANGE_BPS_DEFAULT, MAX_RATE_LIMITER_DURATION_IN_SECONDS, MAX_RATE_LIMITER_DURATION_IN_SLOTS, MAX_SQRT_PRICE, MIN_CU_BUFFER, MIN_FEE_BPS, MIN_FEE_NUMERATOR, MIN_SQRT_PRICE, type MergePositionParams, ONE_Q64, type PermanentLockParams, type PoolFeesParams, type PoolFeesStruct, type PoolState, PoolStatus, PoolVersion, type PositionState, type PrepareCustomizablePoolParams, type PreparePoolCreationParams, type PreparePoolCreationSingleSide, type PrepareTokenAccountParams, type PreparedPoolCreation, type Quote2Result, type RefreshVestingParams, type RemoveAllLiquidityAndClosePositionParams, type RemoveAllLiquidityParams, type RemoveLiquidityParams, type RewardInfo, Rounding, SCALE_OFFSET, SPLIT_POSITION_DENOMINATOR, type SetupFeeClaimAccountsParams, type SplitFees, type SplitPosition2Params, type SplitPositionParams, type Swap2Params, type SwapAmount, SwapMode, type SwapParams, type SwapResult, type SwapResult2, type TokenBadgeState, TradeDirection, type TxBuilder, U128_MAX, U16_MAX, U64_MAX, type UpdateRewardDurationParams, type UpdateRewardFunderParams, type VestingState, type WithdrawIneligibleRewardParams, type WithdrawQuote, bpsToFeeNumerator, calculateAtoBFromAmountIn, calculateAtoBFromAmountOut, calculateAtoBFromPartialAmountIn, calculateBtoAFromAmountIn, calculateBtoAFromAmountOut, calculateBtoAFromPartialAmountIn, calculateInitSqrtPrice, calculateTransferFeeExcludedAmount, calculateTransferFeeIncludedAmount, convertToFeeSchedulerSecondFactor, convertToLamports, convertToRateLimiterSecondFactor, decimalToQ64, deriveClaimFeeOperatorAddress, deriveConfigAddress, deriveCustomizablePoolAddress, derivePoolAddress, derivePoolAuthority, derivePositionAddress, derivePositionNftAccount, deriveRewardVaultAddress, deriveTokenBadgeAddress, deriveTokenVaultAddress, feeNumeratorToBps, fromDecimalToBN, getAllPositionNftAccountByOwner, getAllUserPositionNftAccount, getAmountAFromLiquidityDelta, getAmountBFromLiquidityDelta, getAmountWithSlippage, getAvailableVestingLiquidity, getBaseFeeHandler, getBaseFeeNumerator, getBaseFeeNumeratorByPeriod, getBaseFeeParams, getCheckedAmounts, getCurrentPoint, getDynamicFeeNumerator, getDynamicFeeParams, getEstimatedComputeUnitIxWithBuffer, getEstimatedComputeUnitUsageWithBuffer, getExcludedFeeAmount, getExcludedFeeAmountFromIncludedFeeAmount, getFeeInPeriod, getFeeMode, getFeeNumeratorFromExcludedFeeAmount, getFeeNumeratorFromIncludedFeeAmount, getFeeNumeratorOnExponentialFeeScheduler, getFeeNumeratorOnLinearFeeScheduler, getFeeOnAmount, getFeeSchedulerParams, getFirstKey, getIncludedFeeAmount, getLiquidityDeltaFromAmountA, getLiquidityDeltaFromAmountB, getMaxAmountWithSlippage, getMaxBaseFeeNumerator, getMaxFeeBps, getMaxFeeNumerator, getMaxIndex, getMinBaseFeeNumerator, getNextSqrtPriceFromAmountInARoundingUp, getNextSqrtPriceFromAmountInBRoundingDown, getNextSqrtPriceFromAmountOutARoundingUp, getNextSqrtPriceFromAmountOutBRoundingDown, getNextSqrtPriceFromInput, getNextSqrtPriceFromOutput, getOrCreateATAInstruction, getPriceChange, getPriceFromSqrtPrice, getPriceImpact, getRateLimiterParams, getSecondKey, getSimulationComputeUnits, getSqrtPriceFromPrice, getSwapResultFromExactInput, getSwapResultFromExactOutput, getSwapResultFromPartialInput, getTokenDecimals, getTokenProgram, getTotalFeeNumerator, getTotalLockedLiquidity, getTotalTradingFeeFromExcludedFeeAmount, getTotalTradingFeeFromIncludedFeeAmount, getUnClaimReward, hasPartner, isDynamicFeeEnabled, isNonZeroRateLimiter, isRateLimiterApplied, isSwapEnabled, isVestingComplete, isZeroRateLimiter, mulDiv, parseFeeSchedulerSecondFactor, parseRateLimiterSecondFactor, positionByPoolFilter, pow, q64ToDecimal, splitFees, sqrt, swapQuoteExactInput, swapQuoteExactOutput, swapQuotePartialInput, toNumerator, unwrapSOLInstruction, validateFeeFraction, validateFeeRateLimiter, validateFeeScheduler, vestingByPositionFilter, wrapSOLInstruction };
15693
+ export { ActivationPoint, ActivationType, type AddLiquidityParams, type AmmProgram, BASIS_POINT_MAX, BIN_STEP_BPS_DEFAULT, BIN_STEP_BPS_U128_DEFAULT, type BaseFee, type BaseFeeHandler, BaseFeeMode, type BuildAddLiquidityParams, type BuildLiquidatePositionInstructionParams, type BuildRemoveAllLiquidityInstructionParams, CP_AMM_PROGRAM_ID, CURRENT_POOL_VERSION, type ClaimPartnerFeeParams, type ClaimPositionFeeInstructionParams, type ClaimPositionFeeParams, type ClaimPositionFeeParams2, type ClaimRewardParams, type ClosePositionInstructionParams, type ClosePositionParams, CollectFeeMode, type ConfigState, CpAmm, cp_amm as CpAmmIdl, type CpAmm$1 as CpAmmTypes, type CreatePoolParams, type CreatePositionAndAddLiquidity, type CreatePositionParams, DYNAMIC_FEE_DECAY_PERIOD_DEFAULT, DYNAMIC_FEE_FILTER_PERIOD_DEFAULT, DYNAMIC_FEE_REDUCTION_FACTOR_DEFAULT, DYNAMIC_FEE_ROUNDING_OFFSET, DYNAMIC_FEE_SCALING_FACTOR, type DepositQuote, type DynamicFee, type DynamicFeeParams, type DynamicFeeStruct, FEE_DENOMINATOR, type FeeMode, type FeeOnAmountResult, FeeRateLimiter, FeeScheduler, type FundRewardParams, type GetDepositQuoteParams, type GetQuote2Params, type GetQuoteParams, type GetWithdrawQuoteParams, type InitializeAndFundReward, type InitializeCustomizeablePoolParams, type InitializeCustomizeablePoolWithDynamicConfigParams, type InitializeRewardParams, LIQUIDITY_SCALE, type LiquidityDeltaParams, type LockPositionParams, MAX, MAX_CU_BUFFER, MAX_EXPONENTIAL, MAX_FEE_BPS_V0, MAX_FEE_BPS_V1, MAX_FEE_NUMERATOR_V0, MAX_FEE_NUMERATOR_V1, MAX_PRICE_CHANGE_BPS_DEFAULT, MAX_RATE_LIMITER_DURATION_IN_SECONDS, MAX_RATE_LIMITER_DURATION_IN_SLOTS, MAX_SQRT_PRICE, MIN_CU_BUFFER, MIN_FEE_BPS, MIN_FEE_NUMERATOR, MIN_SQRT_PRICE, type MergePositionParams, ONE_Q64, type PermanentLockParams, type PoolFeesParams, type PoolFeesStruct, type PoolState, PoolStatus, PoolVersion, type PositionState, type PrepareCustomizablePoolParams, type PreparePoolCreationParams, type PreparePoolCreationSingleSide, type PrepareTokenAccountParams, type PreparedPoolCreation, type Quote2Result, type RefreshVestingParams, type RemoveAllLiquidityAndClosePositionParams, type RemoveAllLiquidityParams, type RemoveLiquidityParams, type RewardInfo, Rounding, SCALE_OFFSET, SPLIT_POSITION_DENOMINATOR, type SetupFeeClaimAccountsParams, type SplitFees, type SplitPosition2Params, type SplitPositionParams, type Swap2Params, type SwapAmount, SwapMode, type SwapParams, type SwapResult, type SwapResult2, type TokenBadgeState, TradeDirection, type TxBuilder, U128_MAX, U16_MAX, U64_MAX, type UpdateRewardDurationParams, type UpdateRewardFunderParams, type UserRewardInfo, type VestingState, type WithdrawIneligibleRewardParams, type WithdrawQuote, bpsToFeeNumerator, calculateAtoBFromAmountIn, calculateAtoBFromAmountOut, calculateAtoBFromPartialAmountIn, calculateBtoAFromAmountIn, calculateBtoAFromAmountOut, calculateBtoAFromPartialAmountIn, calculateInitSqrtPrice, calculateTransferFeeExcludedAmount, calculateTransferFeeIncludedAmount, convertToFeeSchedulerSecondFactor, convertToLamports, convertToRateLimiterSecondFactor, decimalToQ64, deriveClaimFeeOperatorAddress, deriveConfigAddress, deriveCustomizablePoolAddress, derivePoolAddress, derivePoolAuthority, derivePositionAddress, derivePositionNftAccount, deriveRewardVaultAddress, deriveTokenBadgeAddress, deriveTokenVaultAddress, feeNumeratorToBps, fromDecimalToBN, getAllPositionNftAccountByOwner, getAllUserPositionNftAccount, getAmountAFromLiquidityDelta, getAmountBFromLiquidityDelta, getAmountWithSlippage, getAvailableVestingLiquidity, getBaseFeeHandler, getBaseFeeNumerator, getBaseFeeNumeratorByPeriod, getBaseFeeParams, getCheckedAmounts, getCurrentPoint, getDynamicFeeNumerator, getDynamicFeeParams, getEstimatedComputeUnitIxWithBuffer, getEstimatedComputeUnitUsageWithBuffer, getExcludedFeeAmount, getExcludedFeeAmountFromIncludedFeeAmount, getFeeInPeriod, getFeeMode, getFeeNumeratorFromExcludedFeeAmount, getFeeNumeratorFromIncludedFeeAmount, getFeeNumeratorOnExponentialFeeScheduler, getFeeNumeratorOnLinearFeeScheduler, getFeeOnAmount, getFeeSchedulerParams, getFirstKey, getIncludedFeeAmount, getLiquidityDeltaFromAmountA, getLiquidityDeltaFromAmountB, getMaxAmountWithSlippage, getMaxBaseFeeNumerator, getMaxFeeBps, getMaxFeeNumerator, getMaxIndex, getMinBaseFeeNumerator, getNextSqrtPriceFromAmountInARoundingUp, getNextSqrtPriceFromAmountInBRoundingDown, getNextSqrtPriceFromAmountOutARoundingUp, getNextSqrtPriceFromAmountOutBRoundingDown, getNextSqrtPriceFromInput, getNextSqrtPriceFromOutput, getOrCreateATAInstruction, getPriceChange, getPriceFromSqrtPrice, getPriceImpact, getRateLimiterParams, getRewardInfo, getSecondKey, getSimulationComputeUnits, getSqrtPriceFromPrice, getSwapResultFromExactInput, getSwapResultFromExactOutput, getSwapResultFromPartialInput, getTokenDecimals, getTokenProgram, getTotalFeeNumerator, getTotalLockedLiquidity, getTotalTradingFeeFromExcludedFeeAmount, getTotalTradingFeeFromIncludedFeeAmount, getUnClaimLpFee, getUserRewardPending, hasPartner, isDynamicFeeEnabled, isNonZeroRateLimiter, isRateLimiterApplied, isSwapEnabled, isVestingComplete, isZeroRateLimiter, mulDiv, parseFeeSchedulerSecondFactor, parseRateLimiterSecondFactor, positionByPoolFilter, pow, q64ToDecimal, splitFees, sqrt, swapQuoteExactInput, swapQuoteExactOutput, swapQuotePartialInput, toNumerator, unwrapSOLInstruction, validateFeeFraction, validateFeeRateLimiter, validateFeeScheduler, vestingByPositionFilter, wrapSOLInstruction };
package/dist/index.d.ts CHANGED
@@ -6086,6 +6086,7 @@ type VestingState = IdlAccounts<CpAmm$1>["vesting"];
6086
6086
  type ConfigState = IdlAccounts<CpAmm$1>["config"];
6087
6087
  type TokenBadgeState = IdlAccounts<CpAmm$1>["tokenBadge"];
6088
6088
  type RewardInfo = IdlTypes<CpAmm$1>["rewardInfo"];
6089
+ type UserRewardInfo = IdlTypes<CpAmm$1>["userRewardInfo"];
6089
6090
  /**
6090
6091
  * Dynamic fee parameters
6091
6092
  * @param binStep
@@ -6553,17 +6554,31 @@ type InitializeRewardParams = {
6553
6554
  rewardDuration: BN;
6554
6555
  pool: PublicKey;
6555
6556
  rewardMint: PublicKey;
6557
+ funder: PublicKey;
6558
+ payer: PublicKey;
6559
+ creator: PublicKey;
6560
+ rewardMintProgram: PublicKey;
6561
+ };
6562
+ type InitializeAndFundReward = {
6563
+ rewardIndex: number;
6564
+ rewardDuration: BN;
6565
+ pool: PublicKey;
6566
+ creator: PublicKey;
6556
6567
  payer: PublicKey;
6568
+ rewardMint: PublicKey;
6569
+ carryForward: boolean;
6570
+ amount: BN;
6571
+ rewardMintProgram: PublicKey;
6557
6572
  };
6558
6573
  type UpdateRewardDurationParams = {
6559
6574
  pool: PublicKey;
6560
- admin: PublicKey;
6575
+ signer: PublicKey;
6561
6576
  rewardIndex: number;
6562
6577
  newDuration: BN;
6563
6578
  };
6564
6579
  type UpdateRewardFunderParams = {
6565
6580
  pool: PublicKey;
6566
- admin: PublicKey;
6581
+ signer: PublicKey;
6567
6582
  rewardIndex: number;
6568
6583
  newFunder: PublicKey;
6569
6584
  };
@@ -6573,6 +6588,9 @@ type FundRewardParams = {
6573
6588
  pool: PublicKey;
6574
6589
  carryForward: boolean;
6575
6590
  amount: BN;
6591
+ rewardMint: PublicKey;
6592
+ rewardVault: PublicKey;
6593
+ rewardMintProgram: PublicKey;
6576
6594
  };
6577
6595
  type WithdrawIneligibleRewardParams = {
6578
6596
  rewardIndex: number;
@@ -6595,7 +6613,7 @@ type ClaimRewardParams = {
6595
6613
  positionState: PositionState;
6596
6614
  positionNftAccount: PublicKey;
6597
6615
  rewardIndex: number;
6598
- skipReward: number;
6616
+ isSkipReward: boolean;
6599
6617
  feePayer?: PublicKey;
6600
6618
  };
6601
6619
  type RefreshVestingParams = {
@@ -6859,11 +6877,26 @@ declare class CpAmm {
6859
6877
  position: PublicKey;
6860
6878
  positionState: PositionState;
6861
6879
  }>>;
6880
+ /**
6881
+ * Retrieves all vesting accounts associated with a position.
6882
+ * @param position - Public key of the position.
6883
+ * @returns Array of vesting account public keys and their states.
6884
+ */
6862
6885
  getAllVestingsByPosition(position: PublicKey): Promise<Array<{
6863
6886
  publicKey: PublicKey;
6864
6887
  account: VestingState;
6865
6888
  }>>;
6889
+ /**
6890
+ * Checks if a position has any locked liquidity.
6891
+ * @param position - Position state.
6892
+ * @returns True if the position has locked liquidity, false otherwise.
6893
+ */
6866
6894
  isLockedPosition(position: PositionState): boolean;
6895
+ /**
6896
+ * Checks if a position is permanently locked.
6897
+ * @param positionState - Position state.
6898
+ * @returns True if the position is permanently locked, false otherwise.
6899
+ */
6867
6900
  isPermanentLockedPosition(positionState: PositionState): boolean;
6868
6901
  /**
6869
6902
  * Checks if a position can be unlocked based on its locking state and vesting schedules.
@@ -6888,6 +6921,11 @@ declare class CpAmm {
6888
6921
  canUnlock: boolean;
6889
6922
  reason?: string;
6890
6923
  };
6924
+ /**
6925
+ * Checks if a pool exists.
6926
+ * @param pool - Public key of the pool.
6927
+ * @returns True if the pool exists, false otherwise.
6928
+ */
6891
6929
  isPoolExist(pool: PublicKey): Promise<boolean>;
6892
6930
  /**
6893
6931
  * Computes the liquidity delta based on the provided token amounts and sqrt price
@@ -6909,6 +6947,11 @@ declare class CpAmm {
6909
6947
  totalFee: BN$1;
6910
6948
  priceImpact: Decimal;
6911
6949
  };
6950
+ /**
6951
+ * Calculates the expected output amount or input amount for a swap depending on the swap mode.
6952
+ * @param params GetQuote2Params
6953
+ * @returns Quote2Result
6954
+ */
6912
6955
  getQuote2(params: GetQuote2Params): Quote2Result;
6913
6956
  /**
6914
6957
  * Calculates the deposit quote for liquidity pool.
@@ -6965,6 +7008,11 @@ declare class CpAmm {
6965
7008
  pool: PublicKey;
6966
7009
  position: PublicKey;
6967
7010
  }>;
7011
+ /**
7012
+ * Builds a transaction to create a customizable pool with dynamic config.
7013
+ * @param params InitializeCustomizeablePoolWithDynamicConfigParams
7014
+ * @returns Transaction and related addresses.
7015
+ */
6968
7016
  createCustomPoolWithDynamicConfig(params: InitializeCustomizeablePoolWithDynamicConfigParams): Promise<{
6969
7017
  tx: Transaction;
6970
7018
  pool: PublicKey;
@@ -7010,6 +7058,11 @@ declare class CpAmm {
7010
7058
  * @returns Transaction builder.
7011
7059
  */
7012
7060
  swap(params: SwapParams): TxBuilder;
7061
+ /**
7062
+ * Builds a transaction to perform a swap in the pool.
7063
+ * @param params Swap2Params
7064
+ * @returns Transaction builder.
7065
+ */
7013
7066
  swap2(params: Swap2Params): TxBuilder;
7014
7067
  /**
7015
7068
  * Builds a transaction to lock a position with vesting schedule.
@@ -7029,6 +7082,11 @@ declare class CpAmm {
7029
7082
  * @returns Transaction builder.
7030
7083
  */
7031
7084
  refreshVesting(params: RefreshVestingParams): TxBuilder;
7085
+ /**
7086
+ * Builds a transaction to close a position.
7087
+ * @param params ClosePositionParams
7088
+ * @returns Transaction builder.
7089
+ */
7032
7090
  closePosition(params: ClosePositionParams): TxBuilder;
7033
7091
  /**
7034
7092
  * Builds a transaction to remove all liquidity from a position and close it.
@@ -7055,6 +7113,18 @@ declare class CpAmm {
7055
7113
  * @throws {Error} If either position is locked or incompatible
7056
7114
  */
7057
7115
  mergePosition(params: MergePositionParams): TxBuilder;
7116
+ /**
7117
+ * Builds a transaction to initialize a reward for a pool.
7118
+ * @param params InitializeRewardParams
7119
+ * @returns Transaction builder.
7120
+ */
7121
+ initializeReward(params: InitializeRewardParams): TxBuilder;
7122
+ /**
7123
+ * Builds a transaction to initialize and fund a reward for a pool.
7124
+ * @param params InitializeAndFundReward
7125
+ * @returns Transaction builder.
7126
+ */
7127
+ initializeAndFundReward(params: InitializeAndFundReward): TxBuilder;
7058
7128
  /**
7059
7129
  * Builds a transaction to update reward duration.
7060
7130
  * @param {UpdateRewardDurationParams} params - Parameters including pool and new duration.
@@ -7103,7 +7173,17 @@ declare class CpAmm {
7103
7173
  * @returns Transaction builder.
7104
7174
  */
7105
7175
  claimReward(params: ClaimRewardParams): TxBuilder;
7176
+ /**
7177
+ * Builds a transaction to split a position into two positions.
7178
+ * @param params SplitPositionParams
7179
+ * @returns Transaction builder.
7180
+ */
7106
7181
  splitPosition(params: SplitPositionParams): TxBuilder;
7182
+ /**
7183
+ * Builds a transaction to split a position into two positions.
7184
+ * @param params SplitPosition2Params
7185
+ * @returns Transaction builder.
7186
+ */
7107
7187
  splitPosition2(params: SplitPosition2Params): TxBuilder;
7108
7188
  }
7109
7189
 
@@ -7166,7 +7246,7 @@ declare function getTokenProgram(flag: number): PublicKey;
7166
7246
  * @param mint - The mint
7167
7247
  * @returns The token decimals
7168
7248
  */
7169
- declare const getTokenDecimals: (connection: Connection, mint: PublicKey) => Promise<number>;
7249
+ declare const getTokenDecimals: (connection: Connection, mint: PublicKey, tokenProgram: PublicKey) => Promise<number>;
7170
7250
  /**
7171
7251
  * Gets the or creates the ATA instruction
7172
7252
  * @param connection - The connection
@@ -7314,11 +7394,20 @@ declare const getSqrtPriceFromPrice: (price: string, tokenADecimal: number, toke
7314
7394
  * @param positionState - The position state
7315
7395
  * @returns The unclaimed reward
7316
7396
  */
7317
- declare const getUnClaimReward: (poolState: PoolState, positionState: PositionState) => {
7397
+ declare const getUnClaimLpFee: (poolState: PoolState, positionState: PositionState) => {
7318
7398
  feeTokenA: BN;
7319
7399
  feeTokenB: BN;
7320
7400
  rewards: BN[];
7321
7401
  };
7402
+ declare function getRewardInfo(poolState: PoolState, rewardIndex: number, periodTime: BN, currentTime: BN): {
7403
+ rewardPerPeriod: BN;
7404
+ rewardBalance: BN;
7405
+ totalRewardDistributed: BN;
7406
+ };
7407
+ declare function getUserRewardPending(poolState: PoolState, positionState: PositionState, rewardIndex: number, currentTime: BN, periodTime: BN): {
7408
+ userRewardPerPeriod: BN;
7409
+ userPendingReward: BN;
7410
+ };
7322
7411
 
7323
7412
  /**
7324
7413
  * Filters for the position by pool
@@ -15601,4 +15690,4 @@ var cp_amm = {
15601
15690
  types: types
15602
15691
  };
15603
15692
 
15604
- export { ActivationPoint, ActivationType, type AddLiquidityParams, type AmmProgram, BASIS_POINT_MAX, BIN_STEP_BPS_DEFAULT, BIN_STEP_BPS_U128_DEFAULT, type BaseFee, type BaseFeeHandler, BaseFeeMode, type BuildAddLiquidityParams, type BuildLiquidatePositionInstructionParams, type BuildRemoveAllLiquidityInstructionParams, CP_AMM_PROGRAM_ID, CURRENT_POOL_VERSION, type ClaimPartnerFeeParams, type ClaimPositionFeeInstructionParams, type ClaimPositionFeeParams, type ClaimPositionFeeParams2, type ClaimRewardParams, type ClosePositionInstructionParams, type ClosePositionParams, CollectFeeMode, type ConfigState, CpAmm, cp_amm as CpAmmIdl, type CpAmm$1 as CpAmmTypes, type CreatePoolParams, type CreatePositionAndAddLiquidity, type CreatePositionParams, DYNAMIC_FEE_DECAY_PERIOD_DEFAULT, DYNAMIC_FEE_FILTER_PERIOD_DEFAULT, DYNAMIC_FEE_REDUCTION_FACTOR_DEFAULT, DYNAMIC_FEE_ROUNDING_OFFSET, DYNAMIC_FEE_SCALING_FACTOR, type DepositQuote, type DynamicFee, type DynamicFeeParams, type DynamicFeeStruct, FEE_DENOMINATOR, type FeeMode, type FeeOnAmountResult, FeeRateLimiter, FeeScheduler, type FundRewardParams, type GetDepositQuoteParams, type GetQuote2Params, type GetQuoteParams, type GetWithdrawQuoteParams, type InitializeCustomizeablePoolParams, type InitializeCustomizeablePoolWithDynamicConfigParams, type InitializeRewardParams, LIQUIDITY_SCALE, type LiquidityDeltaParams, type LockPositionParams, MAX, MAX_CU_BUFFER, MAX_EXPONENTIAL, MAX_FEE_BPS_V0, MAX_FEE_BPS_V1, MAX_FEE_NUMERATOR_V0, MAX_FEE_NUMERATOR_V1, MAX_PRICE_CHANGE_BPS_DEFAULT, MAX_RATE_LIMITER_DURATION_IN_SECONDS, MAX_RATE_LIMITER_DURATION_IN_SLOTS, MAX_SQRT_PRICE, MIN_CU_BUFFER, MIN_FEE_BPS, MIN_FEE_NUMERATOR, MIN_SQRT_PRICE, type MergePositionParams, ONE_Q64, type PermanentLockParams, type PoolFeesParams, type PoolFeesStruct, type PoolState, PoolStatus, PoolVersion, type PositionState, type PrepareCustomizablePoolParams, type PreparePoolCreationParams, type PreparePoolCreationSingleSide, type PrepareTokenAccountParams, type PreparedPoolCreation, type Quote2Result, type RefreshVestingParams, type RemoveAllLiquidityAndClosePositionParams, type RemoveAllLiquidityParams, type RemoveLiquidityParams, type RewardInfo, Rounding, SCALE_OFFSET, SPLIT_POSITION_DENOMINATOR, type SetupFeeClaimAccountsParams, type SplitFees, type SplitPosition2Params, type SplitPositionParams, type Swap2Params, type SwapAmount, SwapMode, type SwapParams, type SwapResult, type SwapResult2, type TokenBadgeState, TradeDirection, type TxBuilder, U128_MAX, U16_MAX, U64_MAX, type UpdateRewardDurationParams, type UpdateRewardFunderParams, type VestingState, type WithdrawIneligibleRewardParams, type WithdrawQuote, bpsToFeeNumerator, calculateAtoBFromAmountIn, calculateAtoBFromAmountOut, calculateAtoBFromPartialAmountIn, calculateBtoAFromAmountIn, calculateBtoAFromAmountOut, calculateBtoAFromPartialAmountIn, calculateInitSqrtPrice, calculateTransferFeeExcludedAmount, calculateTransferFeeIncludedAmount, convertToFeeSchedulerSecondFactor, convertToLamports, convertToRateLimiterSecondFactor, decimalToQ64, deriveClaimFeeOperatorAddress, deriveConfigAddress, deriveCustomizablePoolAddress, derivePoolAddress, derivePoolAuthority, derivePositionAddress, derivePositionNftAccount, deriveRewardVaultAddress, deriveTokenBadgeAddress, deriveTokenVaultAddress, feeNumeratorToBps, fromDecimalToBN, getAllPositionNftAccountByOwner, getAllUserPositionNftAccount, getAmountAFromLiquidityDelta, getAmountBFromLiquidityDelta, getAmountWithSlippage, getAvailableVestingLiquidity, getBaseFeeHandler, getBaseFeeNumerator, getBaseFeeNumeratorByPeriod, getBaseFeeParams, getCheckedAmounts, getCurrentPoint, getDynamicFeeNumerator, getDynamicFeeParams, getEstimatedComputeUnitIxWithBuffer, getEstimatedComputeUnitUsageWithBuffer, getExcludedFeeAmount, getExcludedFeeAmountFromIncludedFeeAmount, getFeeInPeriod, getFeeMode, getFeeNumeratorFromExcludedFeeAmount, getFeeNumeratorFromIncludedFeeAmount, getFeeNumeratorOnExponentialFeeScheduler, getFeeNumeratorOnLinearFeeScheduler, getFeeOnAmount, getFeeSchedulerParams, getFirstKey, getIncludedFeeAmount, getLiquidityDeltaFromAmountA, getLiquidityDeltaFromAmountB, getMaxAmountWithSlippage, getMaxBaseFeeNumerator, getMaxFeeBps, getMaxFeeNumerator, getMaxIndex, getMinBaseFeeNumerator, getNextSqrtPriceFromAmountInARoundingUp, getNextSqrtPriceFromAmountInBRoundingDown, getNextSqrtPriceFromAmountOutARoundingUp, getNextSqrtPriceFromAmountOutBRoundingDown, getNextSqrtPriceFromInput, getNextSqrtPriceFromOutput, getOrCreateATAInstruction, getPriceChange, getPriceFromSqrtPrice, getPriceImpact, getRateLimiterParams, getSecondKey, getSimulationComputeUnits, getSqrtPriceFromPrice, getSwapResultFromExactInput, getSwapResultFromExactOutput, getSwapResultFromPartialInput, getTokenDecimals, getTokenProgram, getTotalFeeNumerator, getTotalLockedLiquidity, getTotalTradingFeeFromExcludedFeeAmount, getTotalTradingFeeFromIncludedFeeAmount, getUnClaimReward, hasPartner, isDynamicFeeEnabled, isNonZeroRateLimiter, isRateLimiterApplied, isSwapEnabled, isVestingComplete, isZeroRateLimiter, mulDiv, parseFeeSchedulerSecondFactor, parseRateLimiterSecondFactor, positionByPoolFilter, pow, q64ToDecimal, splitFees, sqrt, swapQuoteExactInput, swapQuoteExactOutput, swapQuotePartialInput, toNumerator, unwrapSOLInstruction, validateFeeFraction, validateFeeRateLimiter, validateFeeScheduler, vestingByPositionFilter, wrapSOLInstruction };
15693
+ export { ActivationPoint, ActivationType, type AddLiquidityParams, type AmmProgram, BASIS_POINT_MAX, BIN_STEP_BPS_DEFAULT, BIN_STEP_BPS_U128_DEFAULT, type BaseFee, type BaseFeeHandler, BaseFeeMode, type BuildAddLiquidityParams, type BuildLiquidatePositionInstructionParams, type BuildRemoveAllLiquidityInstructionParams, CP_AMM_PROGRAM_ID, CURRENT_POOL_VERSION, type ClaimPartnerFeeParams, type ClaimPositionFeeInstructionParams, type ClaimPositionFeeParams, type ClaimPositionFeeParams2, type ClaimRewardParams, type ClosePositionInstructionParams, type ClosePositionParams, CollectFeeMode, type ConfigState, CpAmm, cp_amm as CpAmmIdl, type CpAmm$1 as CpAmmTypes, type CreatePoolParams, type CreatePositionAndAddLiquidity, type CreatePositionParams, DYNAMIC_FEE_DECAY_PERIOD_DEFAULT, DYNAMIC_FEE_FILTER_PERIOD_DEFAULT, DYNAMIC_FEE_REDUCTION_FACTOR_DEFAULT, DYNAMIC_FEE_ROUNDING_OFFSET, DYNAMIC_FEE_SCALING_FACTOR, type DepositQuote, type DynamicFee, type DynamicFeeParams, type DynamicFeeStruct, FEE_DENOMINATOR, type FeeMode, type FeeOnAmountResult, FeeRateLimiter, FeeScheduler, type FundRewardParams, type GetDepositQuoteParams, type GetQuote2Params, type GetQuoteParams, type GetWithdrawQuoteParams, type InitializeAndFundReward, type InitializeCustomizeablePoolParams, type InitializeCustomizeablePoolWithDynamicConfigParams, type InitializeRewardParams, LIQUIDITY_SCALE, type LiquidityDeltaParams, type LockPositionParams, MAX, MAX_CU_BUFFER, MAX_EXPONENTIAL, MAX_FEE_BPS_V0, MAX_FEE_BPS_V1, MAX_FEE_NUMERATOR_V0, MAX_FEE_NUMERATOR_V1, MAX_PRICE_CHANGE_BPS_DEFAULT, MAX_RATE_LIMITER_DURATION_IN_SECONDS, MAX_RATE_LIMITER_DURATION_IN_SLOTS, MAX_SQRT_PRICE, MIN_CU_BUFFER, MIN_FEE_BPS, MIN_FEE_NUMERATOR, MIN_SQRT_PRICE, type MergePositionParams, ONE_Q64, type PermanentLockParams, type PoolFeesParams, type PoolFeesStruct, type PoolState, PoolStatus, PoolVersion, type PositionState, type PrepareCustomizablePoolParams, type PreparePoolCreationParams, type PreparePoolCreationSingleSide, type PrepareTokenAccountParams, type PreparedPoolCreation, type Quote2Result, type RefreshVestingParams, type RemoveAllLiquidityAndClosePositionParams, type RemoveAllLiquidityParams, type RemoveLiquidityParams, type RewardInfo, Rounding, SCALE_OFFSET, SPLIT_POSITION_DENOMINATOR, type SetupFeeClaimAccountsParams, type SplitFees, type SplitPosition2Params, type SplitPositionParams, type Swap2Params, type SwapAmount, SwapMode, type SwapParams, type SwapResult, type SwapResult2, type TokenBadgeState, TradeDirection, type TxBuilder, U128_MAX, U16_MAX, U64_MAX, type UpdateRewardDurationParams, type UpdateRewardFunderParams, type UserRewardInfo, type VestingState, type WithdrawIneligibleRewardParams, type WithdrawQuote, bpsToFeeNumerator, calculateAtoBFromAmountIn, calculateAtoBFromAmountOut, calculateAtoBFromPartialAmountIn, calculateBtoAFromAmountIn, calculateBtoAFromAmountOut, calculateBtoAFromPartialAmountIn, calculateInitSqrtPrice, calculateTransferFeeExcludedAmount, calculateTransferFeeIncludedAmount, convertToFeeSchedulerSecondFactor, convertToLamports, convertToRateLimiterSecondFactor, decimalToQ64, deriveClaimFeeOperatorAddress, deriveConfigAddress, deriveCustomizablePoolAddress, derivePoolAddress, derivePoolAuthority, derivePositionAddress, derivePositionNftAccount, deriveRewardVaultAddress, deriveTokenBadgeAddress, deriveTokenVaultAddress, feeNumeratorToBps, fromDecimalToBN, getAllPositionNftAccountByOwner, getAllUserPositionNftAccount, getAmountAFromLiquidityDelta, getAmountBFromLiquidityDelta, getAmountWithSlippage, getAvailableVestingLiquidity, getBaseFeeHandler, getBaseFeeNumerator, getBaseFeeNumeratorByPeriod, getBaseFeeParams, getCheckedAmounts, getCurrentPoint, getDynamicFeeNumerator, getDynamicFeeParams, getEstimatedComputeUnitIxWithBuffer, getEstimatedComputeUnitUsageWithBuffer, getExcludedFeeAmount, getExcludedFeeAmountFromIncludedFeeAmount, getFeeInPeriod, getFeeMode, getFeeNumeratorFromExcludedFeeAmount, getFeeNumeratorFromIncludedFeeAmount, getFeeNumeratorOnExponentialFeeScheduler, getFeeNumeratorOnLinearFeeScheduler, getFeeOnAmount, getFeeSchedulerParams, getFirstKey, getIncludedFeeAmount, getLiquidityDeltaFromAmountA, getLiquidityDeltaFromAmountB, getMaxAmountWithSlippage, getMaxBaseFeeNumerator, getMaxFeeBps, getMaxFeeNumerator, getMaxIndex, getMinBaseFeeNumerator, getNextSqrtPriceFromAmountInARoundingUp, getNextSqrtPriceFromAmountInBRoundingDown, getNextSqrtPriceFromAmountOutARoundingUp, getNextSqrtPriceFromAmountOutBRoundingDown, getNextSqrtPriceFromInput, getNextSqrtPriceFromOutput, getOrCreateATAInstruction, getPriceChange, getPriceFromSqrtPrice, getPriceImpact, getRateLimiterParams, getRewardInfo, getSecondKey, getSimulationComputeUnits, getSqrtPriceFromPrice, getSwapResultFromExactInput, getSwapResultFromExactOutput, getSwapResultFromPartialInput, getTokenDecimals, getTokenProgram, getTotalFeeNumerator, getTotalLockedLiquidity, getTotalTradingFeeFromExcludedFeeAmount, getTotalTradingFeeFromIncludedFeeAmount, getUnClaimLpFee, getUserRewardPending, hasPartner, isDynamicFeeEnabled, isNonZeroRateLimiter, isRateLimiterApplied, isSwapEnabled, isVestingComplete, isZeroRateLimiter, mulDiv, parseFeeSchedulerSecondFactor, parseRateLimiterSecondFactor, positionByPoolFilter, pow, q64ToDecimal, splitFees, sqrt, swapQuoteExactInput, swapQuoteExactOutput, swapQuotePartialInput, toNumerator, unwrapSOLInstruction, validateFeeFraction, validateFeeRateLimiter, validateFeeScheduler, vestingByPositionFilter, wrapSOLInstruction };