@hawksightco/hawk-sdk 1.3.208 → 1.3.210
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/src/classes/Transactions.d.ts +0 -55
- package/dist/src/classes/Transactions.d.ts.map +1 -1
- package/dist/src/classes/Transactions.js +63 -192
- package/dist/src/classes/TxGenerator.d.ts +0 -34
- package/dist/src/classes/TxGenerator.d.ts.map +1 -1
- package/dist/src/classes/TxGenerator.js +0 -190
- package/dist/src/functions.d.ts +19 -0
- package/dist/src/functions.d.ts.map +1 -1
- package/dist/src/functions.js +39 -0
- package/dist/src/hsToMeteora.d.ts +8 -1
- package/dist/src/hsToMeteora.d.ts.map +1 -1
- package/dist/src/hsToMeteora.js +121 -39
- package/dist/src/ixGenerator/IyfMainIxGenerator.d.ts +6 -0
- package/dist/src/ixGenerator/IyfMainIxGenerator.d.ts.map +1 -1
- package/dist/src/ixGenerator/IyfMainIxGenerator.js +74 -0
- package/dist/src/meteora.d.ts +79 -1
- package/dist/src/meteora.d.ts.map +1 -1
- package/dist/src/meteora.js +175 -1
- package/dist/src/types.d.ts +8 -0
- package/dist/src/types.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -63,18 +63,6 @@ export declare class Transactions {
|
|
|
63
63
|
* @returns A ResponseWithStatus containing either TransactionMetadataResponse.
|
|
64
64
|
*/
|
|
65
65
|
meteoraCreatePositionAndDeposit({ connection, params, }: TxgenParams<MeteoraCreatePositionAndDeposit>): Promise<TransactionMetadataResponse>;
|
|
66
|
-
/**
|
|
67
|
-
* Creates meteora instruction that creates new position and deposit
|
|
68
|
-
* - Supports larger positions
|
|
69
|
-
*
|
|
70
|
-
* @deprecated Use meteoraCreatePositionAndDepositToLargePosition instead.
|
|
71
|
-
*
|
|
72
|
-
* @param connection The Solana web3 connection object for blockchain interactions.
|
|
73
|
-
* @param payer The public key of the payer for transaction fees.
|
|
74
|
-
* @param params Parameters required
|
|
75
|
-
* @returns A ResponseWithStatus containing either TransactionMetadataResponse.
|
|
76
|
-
*/
|
|
77
|
-
meteoraCreatePositionAndDeposit2({ connection, params, }: TxgenParams<MeteoraCreatePositionAndDeposit>): Promise<TransactionMetadataResponse2>;
|
|
78
66
|
/**
|
|
79
67
|
* Creates meteora instruction that creates new position and deposit.
|
|
80
68
|
*
|
|
@@ -114,17 +102,6 @@ export declare class Transactions {
|
|
|
114
102
|
* @returns A ResponseWithStatus containing either TransactionMetadataResponse.
|
|
115
103
|
*/
|
|
116
104
|
meteoraDeposit({ connection, params, }: TxgenParams<MeteoraDeposit>): Promise<TransactionMetadataResponse>;
|
|
117
|
-
/**
|
|
118
|
-
* Creates meteora instruction that deposits to position.
|
|
119
|
-
*
|
|
120
|
-
* @deprecated Use meteoraDepositToLargePosition instead
|
|
121
|
-
*
|
|
122
|
-
* @param connection The Solana web3 connection object for blockchain interactions.
|
|
123
|
-
* @param payer The public key of the payer for transaction fees.
|
|
124
|
-
* @param params Parameters required
|
|
125
|
-
* @returns A ResponseWithStatus containing either TransactionMetadataResponse.
|
|
126
|
-
*/
|
|
127
|
-
meteoraDeposit2({ connection, params, }: TxgenParams<MeteoraDeposit>): Promise<TransactionMetadataResponse2>;
|
|
128
105
|
/**
|
|
129
106
|
* Creates meteora instruction withdraws from a position.
|
|
130
107
|
*
|
|
@@ -145,23 +122,6 @@ export declare class Transactions {
|
|
|
145
122
|
* @returns A ResponseWithStatus containing either TransactionMetadataResponse.
|
|
146
123
|
*/
|
|
147
124
|
meteoraWithdrawPda({ connection, params, }: TxgenParams<MeteoraWithdraw>): Promise<TransactionMetadataResponse>;
|
|
148
|
-
/**
|
|
149
|
-
* Withdraws liquidity from a Meteora DLMM position using simple instructions.
|
|
150
|
-
*
|
|
151
|
-
* @deprecated Use meteoraWithdrawLargePosition instead
|
|
152
|
-
*
|
|
153
|
-
* Unlike meteoraWithdraw which uses Meteora SDK (that generates multiple claimFee ixs
|
|
154
|
-
* potentially bloating tx size), this method uses direct instructions:
|
|
155
|
-
* - removeLiquidityByRange2: Withdraw liquidity from the specified bin range
|
|
156
|
-
* - claimFee2: Single instruction to claim fees
|
|
157
|
-
* - claimReward2: N instructions (one per active reward)
|
|
158
|
-
* - closePositionIfEmpty: Closes position if shouldClaimAndClose is true
|
|
159
|
-
*
|
|
160
|
-
* @param connection The Solana web3 connection object for blockchain interactions.
|
|
161
|
-
* @param params Parameters required for withdrawal
|
|
162
|
-
* @returns A ResponseWithStatus containing TransactionMetadataResponse.
|
|
163
|
-
*/
|
|
164
|
-
meteoraWithdrawLargerPosition({ connection, params, fetch, }: TxgenParams<MeteoraWithdrawLargerPosition>): Promise<TransactionMetadataResponse>;
|
|
165
125
|
/**
|
|
166
126
|
* Withdraw liquidity from a large Meteora DLMM position (up to 1400 bins).
|
|
167
127
|
*
|
|
@@ -178,21 +138,6 @@ export declare class Transactions {
|
|
|
178
138
|
connection: web3.Connection;
|
|
179
139
|
params: MeteoraWithdrawLargerPosition;
|
|
180
140
|
}): Promise<TransactionMetadataResponse[]>;
|
|
181
|
-
/**
|
|
182
|
-
* Withdraws liquidity from a Meteora DLMM position using simple instructions.
|
|
183
|
-
*
|
|
184
|
-
* Unlike meteoraWithdraw which uses Meteora SDK (that generates multiple claimFee ixs
|
|
185
|
-
* potentially bloating tx size), this method uses direct instructions:
|
|
186
|
-
* - removeLiquidityByRange2: Withdraw liquidity from the specified bin range
|
|
187
|
-
* - claimFee2: Single instruction to claim fees
|
|
188
|
-
* - claimReward2: N instructions (one per active reward)
|
|
189
|
-
* - closePositionIfEmpty: Closes position if shouldClaimAndClose is true
|
|
190
|
-
*
|
|
191
|
-
* @param connection The Solana web3 connection object for blockchain interactions.
|
|
192
|
-
* @param params Parameters required for withdrawal
|
|
193
|
-
* @returns A ResponseWithStatus containing TransactionMetadataResponse.
|
|
194
|
-
*/
|
|
195
|
-
private _meteoraWithdrawLargerPosition;
|
|
196
141
|
/**
|
|
197
142
|
* Resolves pool data needed for withdraw instructions.
|
|
198
143
|
* Call once, then pass the result to _buildWithdrawInstructions for each chunk.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Transactions.d.ts","sourceRoot":"","sources":["../../../src/classes/Transactions.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,IAAI,MAAM,iBAAiB,CAAC;AAiBxC,OAAO,EACL,YAAY,EACZ,eAAe,EACf,YAAY,EACZ,eAAe,EACf,gBAAgB,EAChB,iBAAiB,EACjB,+BAA+B,EAC/B,kCAAkC,EAClC,cAAc,EACd,0BAA0B,EAC1B,gBAAgB,EAChB,eAAe,EACf,QAAQ,EACR,WAAW,EACX,6BAA6B,EAC7B,2BAA2B,EAC3B,4BAA4B,EAC5B,gBAAgB,EAChB,iBAAiB,EACjB,WAAW,EACX,YAAY,EACZ,aAAa,EACb,gBAAgB,EAChB,2BAA2B,EAC3B,iBAAiB,EACjB,iBAAiB,EAEjB,mBAAmB,EACnB,kBAAkB,EAClB,oBAAoB,EAEpB,gBAAgB,EAChB,wBAAwB,EACxB,+BAA+B,EAC/B,4BAA4B,EAC5B,iBAAiB,EAEjB,8BAA8B,EAE9B,4BAA4B,EAC5B,6BAA6B,EAC7B,iCAAiC,EACjC,wCAAwC,EAGxC,sCAAsC,EAEtC,4BAA4B,EAC7B,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"Transactions.d.ts","sourceRoot":"","sources":["../../../src/classes/Transactions.ts"],"names":[],"mappings":"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"}
|
|
@@ -235,45 +235,6 @@ class Transactions {
|
|
|
235
235
|
});
|
|
236
236
|
});
|
|
237
237
|
}
|
|
238
|
-
/**
|
|
239
|
-
* Creates meteora instruction that creates new position and deposit
|
|
240
|
-
* - Supports larger positions
|
|
241
|
-
*
|
|
242
|
-
* @deprecated Use meteoraCreatePositionAndDepositToLargePosition instead.
|
|
243
|
-
*
|
|
244
|
-
* @param connection The Solana web3 connection object for blockchain interactions.
|
|
245
|
-
* @param payer The public key of the payer for transaction fees.
|
|
246
|
-
* @param params Parameters required
|
|
247
|
-
* @returns A ResponseWithStatus containing either TransactionMetadataResponse.
|
|
248
|
-
*/
|
|
249
|
-
meteoraCreatePositionAndDeposit2(_a) {
|
|
250
|
-
return __awaiter(this, arguments, void 0, function* ({ connection, params, }) {
|
|
251
|
-
// The logic is routed to meteoraDepositLargerPosition so that front-end no longer need
|
|
252
|
-
// to change anything in the front-end code.
|
|
253
|
-
// The only change they need to implement is the maximum number of bins allowed to
|
|
254
|
-
// initialize a position.
|
|
255
|
-
//
|
|
256
|
-
// Recommended bin range is up to 149 bins to ensure stability.
|
|
257
|
-
return yield this.meteoraDepositLargerPosition({
|
|
258
|
-
connection,
|
|
259
|
-
params: {
|
|
260
|
-
userWallet: params.userWallet,
|
|
261
|
-
lbPair: params.pool,
|
|
262
|
-
position: params.position,
|
|
263
|
-
lowerBinId: params.binRange.lowerRange,
|
|
264
|
-
upperBinId: params.binRange.upperRange,
|
|
265
|
-
totalXAmount: params.totalXAmount,
|
|
266
|
-
totalYAmount: params.totalYAmount,
|
|
267
|
-
distribution: params.distribution,
|
|
268
|
-
slippage: params.slippage,
|
|
269
|
-
skipInputTokenCheck: params.skipInputTokenCheck,
|
|
270
|
-
pdaTokenType: params.pdaTokenType,
|
|
271
|
-
initializePosition: true,
|
|
272
|
-
},
|
|
273
|
-
fetch: undefined,
|
|
274
|
-
});
|
|
275
|
-
});
|
|
276
|
-
}
|
|
277
238
|
/**
|
|
278
239
|
* Creates meteora instruction that creates new position and deposit.
|
|
279
240
|
*
|
|
@@ -470,51 +431,6 @@ class Transactions {
|
|
|
470
431
|
});
|
|
471
432
|
});
|
|
472
433
|
}
|
|
473
|
-
/**
|
|
474
|
-
* Creates meteora instruction that deposits to position.
|
|
475
|
-
*
|
|
476
|
-
* @deprecated Use meteoraDepositToLargePosition instead
|
|
477
|
-
*
|
|
478
|
-
* @param connection The Solana web3 connection object for blockchain interactions.
|
|
479
|
-
* @param payer The public key of the payer for transaction fees.
|
|
480
|
-
* @param params Parameters required
|
|
481
|
-
* @returns A ResponseWithStatus containing either TransactionMetadataResponse.
|
|
482
|
-
*/
|
|
483
|
-
meteoraDeposit2(_a) {
|
|
484
|
-
return __awaiter(this, arguments, void 0, function* ({ connection, params, }) {
|
|
485
|
-
const program = yield meteora_1.MeteoraDLMM.program(connection);
|
|
486
|
-
let lbPair, maxBinId, minBinId;
|
|
487
|
-
if (params.fastGeneration !== undefined) {
|
|
488
|
-
lbPair = params.fastGeneration.pool;
|
|
489
|
-
maxBinId = params.fastGeneration.upperBinId;
|
|
490
|
-
minBinId = params.fastGeneration.lowerBinId;
|
|
491
|
-
}
|
|
492
|
-
else {
|
|
493
|
-
const position = yield program.account.positionV2.fetch(params.position);
|
|
494
|
-
lbPair = position.lbPair;
|
|
495
|
-
maxBinId = position.upperBinId;
|
|
496
|
-
minBinId = position.lowerBinId;
|
|
497
|
-
}
|
|
498
|
-
return yield this.meteoraDepositLargerPosition({
|
|
499
|
-
connection,
|
|
500
|
-
params: {
|
|
501
|
-
userWallet: params.userWallet,
|
|
502
|
-
lbPair,
|
|
503
|
-
position: params.position,
|
|
504
|
-
lowerBinId: minBinId,
|
|
505
|
-
upperBinId: maxBinId,
|
|
506
|
-
totalXAmount: params.totalXAmount,
|
|
507
|
-
totalYAmount: params.totalYAmount,
|
|
508
|
-
distribution: params.distribution,
|
|
509
|
-
slippage: params.slippage,
|
|
510
|
-
skipInputTokenCheck: params.skipInputTokenCheck,
|
|
511
|
-
pdaTokenType: params.pdaTokenType,
|
|
512
|
-
initializePosition: false,
|
|
513
|
-
},
|
|
514
|
-
fetch: undefined,
|
|
515
|
-
});
|
|
516
|
-
});
|
|
517
|
-
}
|
|
518
434
|
/**
|
|
519
435
|
* Creates meteora instruction withdraws from a position.
|
|
520
436
|
*
|
|
@@ -677,44 +593,6 @@ class Transactions {
|
|
|
677
593
|
});
|
|
678
594
|
});
|
|
679
595
|
}
|
|
680
|
-
/**
|
|
681
|
-
* Withdraws liquidity from a Meteora DLMM position using simple instructions.
|
|
682
|
-
*
|
|
683
|
-
* @deprecated Use meteoraWithdrawLargePosition instead
|
|
684
|
-
*
|
|
685
|
-
* Unlike meteoraWithdraw which uses Meteora SDK (that generates multiple claimFee ixs
|
|
686
|
-
* potentially bloating tx size), this method uses direct instructions:
|
|
687
|
-
* - removeLiquidityByRange2: Withdraw liquidity from the specified bin range
|
|
688
|
-
* - claimFee2: Single instruction to claim fees
|
|
689
|
-
* - claimReward2: N instructions (one per active reward)
|
|
690
|
-
* - closePositionIfEmpty: Closes position if shouldClaimAndClose is true
|
|
691
|
-
*
|
|
692
|
-
* @param connection The Solana web3 connection object for blockchain interactions.
|
|
693
|
-
* @param params Parameters required for withdrawal
|
|
694
|
-
* @returns A ResponseWithStatus containing TransactionMetadataResponse.
|
|
695
|
-
*/
|
|
696
|
-
meteoraWithdrawLargerPosition(_a) {
|
|
697
|
-
return __awaiter(this, arguments, void 0, function* ({ connection, params, fetch, }) {
|
|
698
|
-
const mainInstructions = yield this._meteoraWithdrawLargerPosition({ connection, params, fetch });
|
|
699
|
-
// Build description
|
|
700
|
-
let description;
|
|
701
|
-
if (params.shouldClaimAndClose) {
|
|
702
|
-
description = 'Full position withdrawal with claim and close from Meteora DLMM (larger position)';
|
|
703
|
-
}
|
|
704
|
-
else if (params.amountBps.eq(new bn_js_1.default(10000))) {
|
|
705
|
-
description = 'Full position withdrawal without close from Meteora DLMM (larger position)';
|
|
706
|
-
}
|
|
707
|
-
else {
|
|
708
|
-
description = 'Partial position withdrawal from Meteora DLMM (larger position)';
|
|
709
|
-
}
|
|
710
|
-
return (0, functions_1.createTransactionMeta)({
|
|
711
|
-
payer: params.userWallet,
|
|
712
|
-
description,
|
|
713
|
-
addressLookupTableAddresses: addresses_1.GLOBAL_ALT,
|
|
714
|
-
mainInstructions,
|
|
715
|
-
});
|
|
716
|
-
});
|
|
717
|
-
}
|
|
718
596
|
/**
|
|
719
597
|
* Withdraw liquidity from a large Meteora DLMM position (up to 1400 bins).
|
|
720
598
|
*
|
|
@@ -746,16 +624,16 @@ class Transactions {
|
|
|
746
624
|
upperBinId = position.upperBinId;
|
|
747
625
|
}
|
|
748
626
|
const totalBins = upperBinId - lowerBinId + 1;
|
|
749
|
-
// ≤
|
|
750
|
-
if (totalBins <=
|
|
751
|
-
const result = yield this.
|
|
627
|
+
// ≤69 bins: single-tx path
|
|
628
|
+
if (totalBins <= 69) {
|
|
629
|
+
const result = yield this.meteoraWithdraw({
|
|
752
630
|
connection,
|
|
753
631
|
params,
|
|
754
632
|
fetch: undefined,
|
|
755
633
|
});
|
|
756
634
|
return [result];
|
|
757
635
|
}
|
|
758
|
-
// ≥
|
|
636
|
+
// ≥70 bins: multi-tx chunked withdraw
|
|
759
637
|
const resolved = yield this._resolveWithdrawPoolData({ connection, lbPair });
|
|
760
638
|
const amountBps = params.shouldClaimAndClose ? new bn_js_1.default(10000) : params.amountBps;
|
|
761
639
|
// Chunk into ≤149-bin ranges
|
|
@@ -780,45 +658,6 @@ class Transactions {
|
|
|
780
658
|
return transactions;
|
|
781
659
|
});
|
|
782
660
|
}
|
|
783
|
-
/**
|
|
784
|
-
* Withdraws liquidity from a Meteora DLMM position using simple instructions.
|
|
785
|
-
*
|
|
786
|
-
* Unlike meteoraWithdraw which uses Meteora SDK (that generates multiple claimFee ixs
|
|
787
|
-
* potentially bloating tx size), this method uses direct instructions:
|
|
788
|
-
* - removeLiquidityByRange2: Withdraw liquidity from the specified bin range
|
|
789
|
-
* - claimFee2: Single instruction to claim fees
|
|
790
|
-
* - claimReward2: N instructions (one per active reward)
|
|
791
|
-
* - closePositionIfEmpty: Closes position if shouldClaimAndClose is true
|
|
792
|
-
*
|
|
793
|
-
* @param connection The Solana web3 connection object for blockchain interactions.
|
|
794
|
-
* @param params Parameters required for withdrawal
|
|
795
|
-
* @returns A ResponseWithStatus containing TransactionMetadataResponse.
|
|
796
|
-
*/
|
|
797
|
-
_meteoraWithdrawLargerPosition(_a) {
|
|
798
|
-
return __awaiter(this, arguments, void 0, function* ({ connection, params, }) {
|
|
799
|
-
// Determine lbPair and bin range
|
|
800
|
-
let lbPair;
|
|
801
|
-
let lowerBinId;
|
|
802
|
-
let upperBinId;
|
|
803
|
-
if (params.fastGeneration !== undefined) {
|
|
804
|
-
lbPair = params.fastGeneration.pool;
|
|
805
|
-
lowerBinId = params.fastGeneration.lowerBinId;
|
|
806
|
-
upperBinId = params.fastGeneration.upperBinId;
|
|
807
|
-
}
|
|
808
|
-
else {
|
|
809
|
-
const program = yield meteora_1.MeteoraDLMM.program(connection);
|
|
810
|
-
const position = yield program.account.positionV2.fetch(params.position);
|
|
811
|
-
lbPair = position.lbPair;
|
|
812
|
-
lowerBinId = position.lowerBinId;
|
|
813
|
-
upperBinId = position.upperBinId;
|
|
814
|
-
}
|
|
815
|
-
// Resolve pool data
|
|
816
|
-
const resolved = yield this._resolveWithdrawPoolData({ connection, lbPair });
|
|
817
|
-
return this._buildWithdrawInstructions(Object.assign({ connection, userWallet: params.userWallet, position: params.position, lbPair,
|
|
818
|
-
lowerBinId,
|
|
819
|
-
upperBinId, amountBps: params.shouldClaimAndClose ? new bn_js_1.default(10000) : params.amountBps, shouldClaimAndClose: params.shouldClaimAndClose, pdaTokenType: params.pdaTokenType }, resolved));
|
|
820
|
-
});
|
|
821
|
-
}
|
|
822
661
|
/**
|
|
823
662
|
* Resolves pool data needed for withdraw instructions.
|
|
824
663
|
* Call once, then pass the result to _buildWithdrawInstructions for each chunk.
|
|
@@ -2332,9 +2171,10 @@ class Transactions {
|
|
|
2332
2171
|
const lowerBinId = activeId + params.relativeLowerBin;
|
|
2333
2172
|
const upperBinId = activeId + relativeUpperBinId;
|
|
2334
2173
|
// Initialize bin arrays for the new position range
|
|
2174
|
+
// Use HS_AUTHORITY as funder since this is a raw Meteora IX and the automation worker signs with this key
|
|
2335
2175
|
const initBinArraysIx = yield this.ix.meteoraDlmm.meteoraDlmmInitializeBinArrayDefault({
|
|
2336
2176
|
connection,
|
|
2337
|
-
userWallet:
|
|
2177
|
+
userWallet: addresses_1.HS_AUTHORITY,
|
|
2338
2178
|
lbPair,
|
|
2339
2179
|
lowerBinId,
|
|
2340
2180
|
upperBinId,
|
|
@@ -2950,9 +2790,10 @@ class Transactions {
|
|
|
2950
2790
|
const onChainParams = (0, liquidityStrategy_1.buildBitFlagAndNegateStrategyParameters)(chunk.params.x0, chunk.params.y0, chunk.params.deltaX, chunk.params.deltaY);
|
|
2951
2791
|
const instructions = [];
|
|
2952
2792
|
// Add initialize bin arrays instruction
|
|
2793
|
+
// Use HS_AUTHORITY as funder since this is a raw Meteora IX and the automation worker signs with this key
|
|
2953
2794
|
const initBinArraysIx = yield this.ix.meteoraDlmm.meteoraDlmmInitializeBinArrayDefault({
|
|
2954
2795
|
connection,
|
|
2955
|
-
userWallet,
|
|
2796
|
+
userWallet: addresses_1.HS_AUTHORITY,
|
|
2956
2797
|
lbPair,
|
|
2957
2798
|
lowerBinId: chunk.lowerBinId,
|
|
2958
2799
|
upperBinId: chunk.upperBinId,
|
|
@@ -3149,9 +2990,10 @@ class Transactions {
|
|
|
3149
2990
|
if (i < depositChunks.length) {
|
|
3150
2991
|
const chunk = depositChunks[i];
|
|
3151
2992
|
const onChainParams = (0, liquidityStrategy_1.buildBitFlagAndNegateStrategyParameters)(chunk.params.x0, chunk.params.y0, chunk.params.deltaX, chunk.params.deltaY);
|
|
2993
|
+
// Use HS_AUTHORITY as funder since this is a raw Meteora IX and the automation worker signs with this key
|
|
3152
2994
|
const initBinArraysIx = yield this.ix.meteoraDlmm.meteoraDlmmInitializeBinArrayDefault({
|
|
3153
2995
|
connection,
|
|
3154
|
-
userWallet,
|
|
2996
|
+
userWallet: addresses_1.HS_AUTHORITY,
|
|
3155
2997
|
lbPair,
|
|
3156
2998
|
lowerBinId: chunk.lowerBinId,
|
|
3157
2999
|
upperBinId: chunk.upperBinId,
|
|
@@ -3771,12 +3613,10 @@ class Transactions {
|
|
|
3771
3613
|
const depositInstructions = [];
|
|
3772
3614
|
// Build deposit array for tokens with non-zero amounts
|
|
3773
3615
|
const deposits = [];
|
|
3774
|
-
if
|
|
3775
|
-
|
|
3776
|
-
}
|
|
3777
|
-
|
|
3778
|
-
deposits.push({ mint: tokenYMint, amount: totalYAmount });
|
|
3779
|
-
}
|
|
3616
|
+
// We should deposit both X and Y even if 0 amount, because rebalance_liquidity
|
|
3617
|
+
// requires both passthrough accounts to be present.
|
|
3618
|
+
deposits.push({ mint: tokenXMint, amount: totalXAmount });
|
|
3619
|
+
deposits.push({ mint: tokenYMint, amount: totalYAmount });
|
|
3780
3620
|
// Wrap SOL to wSOL if any deposit mint is wSOL
|
|
3781
3621
|
const wrapSolIx = (0, functions_1.wrapSolIfMintIsWsolLabeled)(userWallet, userWallet, deposits);
|
|
3782
3622
|
depositInstructions.push(...wrapSolIx);
|
|
@@ -3967,25 +3807,31 @@ class Transactions {
|
|
|
3967
3807
|
const totalBins = params.binRange.upperRange - params.binRange.lowerRange + 1;
|
|
3968
3808
|
// ≤70 bins: single-tx path via meteoraDepositLargerPosition
|
|
3969
3809
|
if (totalBins <= 70) {
|
|
3970
|
-
const
|
|
3971
|
-
|
|
3972
|
-
|
|
3973
|
-
|
|
3974
|
-
|
|
3975
|
-
|
|
3976
|
-
|
|
3977
|
-
|
|
3978
|
-
|
|
3979
|
-
|
|
3980
|
-
|
|
3981
|
-
|
|
3982
|
-
|
|
3810
|
+
const dlmmPool = yield meteora_1.MeteoraDLMM.create(connection, new web3.PublicKey(params.pool), this.ix);
|
|
3811
|
+
const userPda = (0, functions_1.generateUserPda)(params.userWallet);
|
|
3812
|
+
const mainInstructions = (yield dlmmPool.initializePositionAndAddLiquidityByStrategyLabeled(connection, params.userWallet, params.userWallet, {
|
|
3813
|
+
positionPubKey: params.position,
|
|
3814
|
+
user: userPda,
|
|
3815
|
+
totalXAmount: params.totalXAmount,
|
|
3816
|
+
totalYAmount: params.totalYAmount,
|
|
3817
|
+
strategy: {
|
|
3818
|
+
maxBinId: params.binRange.upperRange,
|
|
3819
|
+
minBinId: params.binRange.lowerRange,
|
|
3820
|
+
strategyType: types_3.StrategyTypeMap[params.distribution],
|
|
3821
|
+
},
|
|
3822
|
+
slippage: params.slippage,
|
|
3823
|
+
skipInputTokenCheck: params.skipInputTokenCheck,
|
|
3824
|
+
opt: {
|
|
3983
3825
|
pdaTokenType: params.pdaTokenType,
|
|
3984
|
-
initializePosition: true,
|
|
3985
3826
|
},
|
|
3986
|
-
|
|
3987
|
-
|
|
3988
|
-
|
|
3827
|
+
}, hsToMeteora_1.meteoraToHawksightLabeled)).default();
|
|
3828
|
+
return [
|
|
3829
|
+
yield (0, functions_1.createTransactionMeta2)({
|
|
3830
|
+
payer: params.userWallet,
|
|
3831
|
+
addressLookupTableAddresses: addresses_1.GLOBAL_ALT,
|
|
3832
|
+
mainInstructions: [...mainInstructions],
|
|
3833
|
+
})
|
|
3834
|
+
];
|
|
3989
3835
|
}
|
|
3990
3836
|
// ≥150 bins: multi-tx path
|
|
3991
3837
|
// Convert Distribution string to liquidityStrategy.StrategyType number for chunked deposit
|
|
@@ -4033,6 +3879,31 @@ class Transactions {
|
|
|
4033
3879
|
pdaTokenType: params.pdaTokenType,
|
|
4034
3880
|
},
|
|
4035
3881
|
});
|
|
3882
|
+
// For one-side deposits, if the side amount is zero, we need to include init ATA idempotent ix,
|
|
3883
|
+
// since rebalanceLiquidity requires both source tokens to exist.
|
|
3884
|
+
const initIdempotent = (mint, label) => {
|
|
3885
|
+
return {
|
|
3886
|
+
instruction: (0, functions_1.createAtaIdempotentIxs)({
|
|
3887
|
+
accounts: [{
|
|
3888
|
+
payer: params.userWallet,
|
|
3889
|
+
mint,
|
|
3890
|
+
owner: params.userWallet,
|
|
3891
|
+
programId: tokenProgramMap[mint.toString()],
|
|
3892
|
+
}]
|
|
3893
|
+
})[0],
|
|
3894
|
+
label: `Idempotently initialize zero-amount ATA for ${label} mint`,
|
|
3895
|
+
class: `initZeroAmountAtaLabeled`,
|
|
3896
|
+
};
|
|
3897
|
+
};
|
|
3898
|
+
const initAtaIxs = [];
|
|
3899
|
+
if (params.totalXAmount.isZero()) {
|
|
3900
|
+
console.log(`Idempotently initialize zero-amount ATA for X mint ${tokenXMint.toString()} since totalXAmount is zero`);
|
|
3901
|
+
initAtaIxs.push(initIdempotent(tokenXMint, 'X'));
|
|
3902
|
+
}
|
|
3903
|
+
else if (params.totalYAmount.isZero()) {
|
|
3904
|
+
console.log(`Idempotently initialize zero-amount ATA for Y mint ${tokenYMint.toString()} since totalYAmount is zero`);
|
|
3905
|
+
initAtaIxs.push(initIdempotent(tokenYMint, 'Y'));
|
|
3906
|
+
}
|
|
4036
3907
|
const wrapSolIxs = [];
|
|
4037
3908
|
const depositToPdaIxs = [];
|
|
4038
3909
|
// Moving wrap SOL instruction from depositTxs to initTxs
|
|
@@ -4063,7 +3934,7 @@ class Transactions {
|
|
|
4063
3934
|
}
|
|
4064
3935
|
}
|
|
4065
3936
|
// Add wrap SOL instructions to the end of the last init transaction (correct order)
|
|
4066
|
-
initTxs[initTxs.length - 1].push(...wrapSolIxs.reverse(), ...depositToPdaIxs.reverse());
|
|
3937
|
+
initTxs[initTxs.length - 1].push(...initAtaIxs, ...wrapSolIxs.reverse(), ...depositToPdaIxs.reverse());
|
|
4067
3938
|
// Step 4: Assemble — merge init's last TX into deposit's first TX if init has >1 TX
|
|
4068
3939
|
const assembled = [];
|
|
4069
3940
|
if (initTxs.length > 1) {
|
|
@@ -117,17 +117,6 @@ export declare class TxGenerator {
|
|
|
117
117
|
* @returns A ResponseWithStatus containing either TransactionMetadataResponse or TransactionMetadata.
|
|
118
118
|
*/
|
|
119
119
|
meteoraCreatePositionAndDeposit(connection: web3.Connection, payer: string, params: _client.TxCreatePositionAndDepositBody): Promise<ResponseWithStatus<TransactionMetadata>>;
|
|
120
|
-
/**
|
|
121
|
-
* Creates meteora instruction that creates new position and deposit.
|
|
122
|
-
* - Supports larger positions
|
|
123
|
-
* - Auto-splits into multiple transactions based on size
|
|
124
|
-
*
|
|
125
|
-
* @param connection The Solana web3 connection object for blockchain interactions.
|
|
126
|
-
* @param payer The public key of the payer for transaction fees.
|
|
127
|
-
* @param params Parameters required
|
|
128
|
-
* @returns A ResponseWithStatus containing TransactionMetadata[] (auto-split by tx size).
|
|
129
|
-
*/
|
|
130
|
-
meteoraCreatePositionAndDeposit2(connection: web3.Connection, payer: string, params: _client.TxCreatePositionAndDepositBody): Promise<ResponseWithStatus<TransactionMetadataWithActions>>;
|
|
131
120
|
/**
|
|
132
121
|
* Creates meteora instruction that creates new position and deposit.
|
|
133
122
|
*
|
|
@@ -148,18 +137,6 @@ export declare class TxGenerator {
|
|
|
148
137
|
* @returns A ResponseWithStatus containing either TransactionMetadataResponse or TransactionMetadata.
|
|
149
138
|
*/
|
|
150
139
|
meteoraDeposit(connection: web3.Connection, payer: string, params: _client.TxDepositBody): Promise<ResponseWithStatus<TransactionMetadata>>;
|
|
151
|
-
/**
|
|
152
|
-
* Creates meteora instruction that deposits to position.
|
|
153
|
-
* - Supports larger positions
|
|
154
|
-
*
|
|
155
|
-
* @deprecated Use meteoraDepositToLargePosition instead
|
|
156
|
-
*
|
|
157
|
-
* @param connection The Solana web3 connection object for blockchain interactions.
|
|
158
|
-
* @param payer The public key of the payer for transaction fees.
|
|
159
|
-
* @param params Parameters required
|
|
160
|
-
* @returns A ResponseWithStatus containing either TransactionMetadataResponse or TransactionMetadata.
|
|
161
|
-
*/
|
|
162
|
-
meteoraDeposit2(connection: web3.Connection, payer: string, params: _client.TxDepositBody): Promise<ResponseWithStatus<TransactionMetadata>>;
|
|
163
140
|
/**
|
|
164
141
|
* Creates meteora instruction withdraws from a position.
|
|
165
142
|
*
|
|
@@ -180,17 +157,6 @@ export declare class TxGenerator {
|
|
|
180
157
|
* @returns A ResponseWithStatus containing either TransactionMetadataResponse or TransactionMetadata.
|
|
181
158
|
*/
|
|
182
159
|
meteoraWithdrawPda(connection: web3.Connection, payer: string, params: MeteoraTxWithdraw, pdaTokenType?: TokenType): Promise<ResponseWithStatus<TransactionMetadata>>;
|
|
183
|
-
/**
|
|
184
|
-
* Withdraws liquidity from a Meteora DLMM position using simple instructions.
|
|
185
|
-
* Unlike meteoraWithdraw which uses Meteora SDK (that generates multiple claimFee ixs
|
|
186
|
-
* potentially bloating tx size), this method uses direct instructions.
|
|
187
|
-
*
|
|
188
|
-
* @param connection The Solana web3 connection object for blockchain interactions.
|
|
189
|
-
* @param payer The public key of the payer for transaction fees.
|
|
190
|
-
* @param params Parameters required for withdrawal
|
|
191
|
-
* @returns A ResponseWithStatus containing either TransactionMetadataResponse or TransactionMetadata.
|
|
192
|
-
*/
|
|
193
|
-
meteoraWithdrawLargerPosition(connection: web3.Connection, payer: string, params: MeteoraTxWithdrawLargerPosition): Promise<ResponseWithStatus<TransactionMetadata>>;
|
|
194
160
|
/**
|
|
195
161
|
* Withdraw liquidity from a large Meteora DLMM position (up to 1400 bins).
|
|
196
162
|
* For ≤149 bins: single tx. For ≥150 bins: multi-tx with chunked withdrawals.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TxGenerator.d.ts","sourceRoot":"","sources":["../../../src/classes/TxGenerator.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"TxGenerator.d.ts","sourceRoot":"","sources":["../../../src/classes/TxGenerator.ts"],"names":[],"mappings":"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"}
|