@meteora-ag/dlmm 1.3.3 → 1.3.5
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.ts +27 -3
- package/dist/index.js +448 -280
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +669 -501
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -4
package/dist/index.d.ts
CHANGED
|
@@ -5411,6 +5411,10 @@ interface BinLiquidity {
|
|
|
5411
5411
|
price: string;
|
|
5412
5412
|
pricePerToken: string;
|
|
5413
5413
|
}
|
|
5414
|
+
declare namespace BinLiquidity {
|
|
5415
|
+
function fromBin(bin: Bin, binId: number, binStep: number, baseTokenDecimal: number, quoteTokenDecimal: number, version: number): BinLiquidity;
|
|
5416
|
+
function empty(binId: number, binStep: number, baseTokenDecimal: number, quoteTokenDecimal: number, version: number): BinLiquidity;
|
|
5417
|
+
}
|
|
5414
5418
|
interface SwapQuote {
|
|
5415
5419
|
consumedInAmount: BN;
|
|
5416
5420
|
outAmount: BN;
|
|
@@ -5724,7 +5728,7 @@ declare class DLMM {
|
|
|
5724
5728
|
* @returns an object with two properties: "activeBin" and "bins". The value of "activeBin" is the
|
|
5725
5729
|
* active bin ID of the lbPair, and the value of "bins" is an array of BinLiquidity objects.
|
|
5726
5730
|
*/
|
|
5727
|
-
getBinsBetweenLowerAndUpperBound(lowerBinId: number, upperBinId: number,
|
|
5731
|
+
getBinsBetweenLowerAndUpperBound(lowerBinId: number, upperBinId: number, lowerBinArray?: BinArray, upperBinArray?: BinArray): Promise<{
|
|
5728
5732
|
activeBin: number;
|
|
5729
5733
|
bins: BinLiquidity[];
|
|
5730
5734
|
}>;
|
|
@@ -6142,6 +6146,7 @@ declare function getBinArraysRequiredByPositionRange(pair: PublicKey, fromBinId:
|
|
|
6142
6146
|
key: PublicKey;
|
|
6143
6147
|
index: BN;
|
|
6144
6148
|
}[];
|
|
6149
|
+
declare function enumerateBins(binsById: Map<number, Bin>, lowerBinId: number, upperBinId: number, binStep: number, baseTokenDecimal: number, quoteTokenDecimal: number, version: number): Generator<BinLiquidity, void, unknown>;
|
|
6145
6150
|
|
|
6146
6151
|
declare function getPriceOfBinByBinId(binId: number, binStep: number): Decimal;
|
|
6147
6152
|
/** private */
|
|
@@ -6396,6 +6401,7 @@ declare function getTokensMintFromPoolAddress(connection: Connection, poolAddres
|
|
|
6396
6401
|
}>;
|
|
6397
6402
|
|
|
6398
6403
|
declare function chunks<T>(array: T[], size: number): T[][];
|
|
6404
|
+
declare function range<T>(min: number, max: number, mapfn: (i: number) => T): T[];
|
|
6399
6405
|
declare function chunkedFetchMultiplePoolAccount(program: ClmmProgram, pks: PublicKey[], chunkSize?: number): Promise<{
|
|
6400
6406
|
parameters: {
|
|
6401
6407
|
baseFactor: number;
|
|
@@ -6472,7 +6478,25 @@ declare const parseLogs: <T>(eventParser: EventParser, logs: string[]) => T;
|
|
|
6472
6478
|
declare const wrapSOLInstruction: (from: PublicKey, to: PublicKey, amount: bigint) => TransactionInstruction[];
|
|
6473
6479
|
declare const unwrapSOLInstruction: (owner: PublicKey, allowOwnerOffCurve?: boolean) => Promise<TransactionInstruction>;
|
|
6474
6480
|
declare function chunkedGetMultipleAccountInfos(connection: Connection, pks: PublicKey[], chunkSize?: number): Promise<_solana_web3_js.AccountInfo<Buffer>[]>;
|
|
6475
|
-
|
|
6481
|
+
/**
|
|
6482
|
+
* Gets the estimated compute unit usage with a buffer.
|
|
6483
|
+
* @param connection A Solana connection object.
|
|
6484
|
+
* @param instructions The instructions of the transaction to simulate.
|
|
6485
|
+
* @param feePayer The public key of the fee payer.
|
|
6486
|
+
* @param buffer The buffer to add to the estimated compute unit usage. Max value is 1. Default value is 0.1 if not provided, and will be capped between 50k - 200k.
|
|
6487
|
+
* @returns The estimated compute unit usage with the buffer.
|
|
6488
|
+
*/
|
|
6489
|
+
declare const getEstimatedComputeUnitUsageWithBuffer: (connection: Connection, instructions: TransactionInstruction[], feePayer: PublicKey, buffer?: number) => Promise<number>;
|
|
6490
|
+
/**
|
|
6491
|
+
* Gets the estimated compute unit usage with a buffer and converts it to a SetComputeUnitLimit instruction.
|
|
6492
|
+
* If the estimated compute unit usage cannot be retrieved, returns a SetComputeUnitLimit instruction with the fallback unit.
|
|
6493
|
+
* @param connection A Solana connection object.
|
|
6494
|
+
* @param instructions The instructions of the transaction to simulate.
|
|
6495
|
+
* @param feePayer The public key of the fee payer.
|
|
6496
|
+
* @param buffer The buffer to add to the estimated compute unit usage. Max value is 1. Default value is 0.1 if not provided, and will be capped between 50k - 200k.
|
|
6497
|
+
* @returns A SetComputeUnitLimit instruction with the estimated compute unit usage.
|
|
6498
|
+
*/
|
|
6499
|
+
declare const getEstimatedComputeUnitIxWithBuffer: (connection: Connection, instructions: TransactionInstruction[], feePayer: PublicKey, buffer?: number) => Promise<TransactionInstruction>;
|
|
6476
6500
|
|
|
6477
6501
|
type Codes = (typeof IDL.errors)[number]["code"];
|
|
6478
6502
|
declare class DLMMError extends Error {
|
|
@@ -6522,4 +6546,4 @@ declare const MAX_BIN_PER_TX = 69;
|
|
|
6522
6546
|
declare const MAX_ACTIVE_BIN_SLIPPAGE = 3;
|
|
6523
6547
|
declare const ILM_BASE: PublicKey;
|
|
6524
6548
|
|
|
6525
|
-
export { ADMIN, ActivationType, BASIS_POINT_MAX, BIN_ARRAY_BITMAP_SIZE, BIN_ARRAY_FEE, Bin, BinAndAmount, BinArray, BinArrayAccount, BinArrayBitmapExtension, BinArrayBitmapExtensionAccount, BinLiquidity, BinLiquidityDistribution, BinLiquidityReduction, BitmapType, ClmmProgram, Clock, ClockLayout, CompressedBinDepositAmount, CompressedBinDepositAmounts, DLMMError, DlmmSdkError, EXTENSION_BINARRAY_BITMAP_SIZE, EmissionRate, FEE_PRECISION, FeeInfo, GetOrCreateATAResponse, IAccountsCache, IDL, ILM_BASE, InitCustomizablePermissionlessPairIx, InitPermissionPairIx, LBCLMM_PROGRAM_IDS, LMRewards, LbClmm, LbPair, LbPairAccount, LbPosition, LiquidityOneSideParameter, LiquidityParameter, LiquidityParameterByStrategy, LiquidityParameterByStrategyOneSide, LiquidityParameterByWeight, MAX_ACTIVE_BIN_SLIPPAGE, MAX_BIN_ARRAY_SIZE, MAX_BIN_LENGTH_ALLOWED_IN_ONE_TX, MAX_BIN_PER_POSITION, MAX_BIN_PER_TX, MAX_CLAIM_ALL_ALLOWED, MAX_FEE_RATE, Network, POSITION_FEE, PRECISION, PairStatus, PairType, Position, PositionBinData, PositionData, PositionInfo, PositionV2, PositionVersion, ProgramStrategyParameter, ProgramStrategyType, SCALE, SCALE_OFFSET, SIMULATION_USER, SeedLiquidityResponse, Strategy, StrategyParameters, StrategyType, SwapExactOutParams, SwapFee, SwapParams, SwapQuote, SwapQuoteExactOut, SwapWithPriceImpactParams, TInitializePositionAndAddLiquidityParams, TInitializePositionAndAddLiquidityParamsByStrategy, TQuoteCreatePositionParams, TokenReserve, autoFillXByStrategy, autoFillXByWeight, autoFillYByStrategy, autoFillYByWeight, binIdToBinArrayIndex, calculateBidAskDistribution, calculateNormalDistribution, calculateSpotDistribution, chunkedFetchMultipleBinArrayBitmapExtensionAccount, chunkedFetchMultiplePoolAccount, chunkedGetMultipleAccountInfos, chunks,
|
|
6549
|
+
export { ADMIN, ActivationType, BASIS_POINT_MAX, BIN_ARRAY_BITMAP_SIZE, BIN_ARRAY_FEE, Bin, BinAndAmount, BinArray, BinArrayAccount, BinArrayBitmapExtension, BinArrayBitmapExtensionAccount, BinLiquidity, BinLiquidityDistribution, BinLiquidityReduction, BitmapType, ClmmProgram, Clock, ClockLayout, CompressedBinDepositAmount, CompressedBinDepositAmounts, DLMMError, DlmmSdkError, EXTENSION_BINARRAY_BITMAP_SIZE, EmissionRate, FEE_PRECISION, FeeInfo, GetOrCreateATAResponse, IAccountsCache, IDL, ILM_BASE, InitCustomizablePermissionlessPairIx, InitPermissionPairIx, LBCLMM_PROGRAM_IDS, LMRewards, LbClmm, LbPair, LbPairAccount, LbPosition, LiquidityOneSideParameter, LiquidityParameter, LiquidityParameterByStrategy, LiquidityParameterByStrategyOneSide, LiquidityParameterByWeight, MAX_ACTIVE_BIN_SLIPPAGE, MAX_BIN_ARRAY_SIZE, MAX_BIN_LENGTH_ALLOWED_IN_ONE_TX, MAX_BIN_PER_POSITION, MAX_BIN_PER_TX, MAX_CLAIM_ALL_ALLOWED, MAX_FEE_RATE, Network, POSITION_FEE, PRECISION, PairStatus, PairType, Position, PositionBinData, PositionData, PositionInfo, PositionV2, PositionVersion, ProgramStrategyParameter, ProgramStrategyType, SCALE, SCALE_OFFSET, SIMULATION_USER, SeedLiquidityResponse, Strategy, StrategyParameters, StrategyType, SwapExactOutParams, SwapFee, SwapParams, SwapQuote, SwapQuoteExactOut, SwapWithPriceImpactParams, TInitializePositionAndAddLiquidityParams, TInitializePositionAndAddLiquidityParamsByStrategy, TQuoteCreatePositionParams, TokenReserve, autoFillXByStrategy, autoFillXByWeight, autoFillYByStrategy, autoFillYByWeight, binIdToBinArrayIndex, calculateBidAskDistribution, calculateNormalDistribution, calculateSpotDistribution, chunkedFetchMultipleBinArrayBitmapExtensionAccount, chunkedFetchMultiplePoolAccount, chunkedGetMultipleAccountInfos, chunks, computeFee, computeFeeFromAmount, computeProtocolFee, DLMM as default, deriveBinArray, deriveBinArrayBitmapExtension, deriveCustomizablePermissionlessLbPair, deriveLbPair, deriveLbPair2, deriveOracle, derivePermissionLbPair, derivePosition, derivePresetParameter, derivePresetParameter2, deriveReserve, enumerateBins, findNextBinArrayIndexWithLiquidity, findNextBinArrayWithLiquidity, fromWeightDistributionToAmount, fromWeightDistributionToAmountOneSide, getBaseFee, getBinArrayLowerUpperBinId, getBinArraysRequiredByPositionRange, getBinFromBinArray, getEstimatedComputeUnitIxWithBuffer, getEstimatedComputeUnitUsageWithBuffer, getOrCreateATAInstruction, getOutAmount, getPriceOfBinByBinId, getTokenBalance, getTokenDecimals, getTokensMintFromPoolAddress, getTotalFee, getVariableFee, isBinIdWithinBinArray, isOverflowDefaultBinArrayBitmap, parseLogs, range, sParameters, swapExactInQuoteAtBin, swapExactOutQuoteAtBin, toAmountAskSide, toAmountBidSide, toAmountBothSide, toAmountsBothSideByStrategy, toAmountsOneSideByStrategy, toStrategyParameters, toWeightDistribution, unwrapSOLInstruction, vParameters, wrapSOLInstruction };
|