@magmaprotocol/magma-clmm-sdk 0.5.21 → 0.5.23
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.js +14 -14
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +14 -14
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -6994,8 +6994,6 @@ var SwapModule = class {
|
|
|
6994
6994
|
const { global_config_id } = getPackagerConfigs(this.sdk.sdkOptions.magma_config);
|
|
6995
6995
|
const tx = new Transaction8();
|
|
6996
6996
|
const typeArguments = [params.coinTypeA, params.coinTypeB];
|
|
6997
|
-
console.log("############ integrate.published_at", integrate.published_at, ClmmFetcherModule);
|
|
6998
|
-
console.log("####### global_config_id", global_config_id);
|
|
6999
6997
|
const args = [
|
|
7000
6998
|
tx.object(global_config_id),
|
|
7001
6999
|
tx.object(params.pool.poolAddress),
|
|
@@ -9237,18 +9235,20 @@ var GaugeModule = class {
|
|
|
9237
9235
|
stakedPositionOfPool.forEach((value) => {
|
|
9238
9236
|
;
|
|
9239
9237
|
value.infos.forEach((info) => {
|
|
9240
|
-
|
|
9241
|
-
|
|
9242
|
-
|
|
9243
|
-
|
|
9244
|
-
|
|
9245
|
-
|
|
9246
|
-
|
|
9247
|
-
|
|
9248
|
-
|
|
9249
|
-
|
|
9250
|
-
|
|
9251
|
-
|
|
9238
|
+
if (info.info) {
|
|
9239
|
+
res.push({
|
|
9240
|
+
coin_type_a: coins[0],
|
|
9241
|
+
coin_type_b: coins[1],
|
|
9242
|
+
liquidity: info.info.fields.liquidity,
|
|
9243
|
+
tick_lower_index: asIntN(BigInt(info.info.fields.tick_lower_index.fields.bits)),
|
|
9244
|
+
tick_upper_index: asIntN(BigInt(info.info.fields.tick_upper_index.fields.bits)),
|
|
9245
|
+
pos_object_id: info.info.fields.position_id,
|
|
9246
|
+
magma_distribution_staked: info.info.fields.magma_distribution_staked,
|
|
9247
|
+
pool: info.pool_id,
|
|
9248
|
+
earned: info.earned,
|
|
9249
|
+
name: info.name
|
|
9250
|
+
});
|
|
9251
|
+
}
|
|
9252
9252
|
});
|
|
9253
9253
|
});
|
|
9254
9254
|
}
|