@magmaprotocol/magma-clmm-sdk 0.5.107 → 0.5.109
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 +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1854,7 +1854,7 @@ type AlmmPositionInfo = {
|
|
|
1854
1854
|
liquidity: EventPositionLiquidity;
|
|
1855
1855
|
rewards: AlmmEventEarnedRewards;
|
|
1856
1856
|
fees: AlmmEventEarnedFees;
|
|
1857
|
-
contractPool: AlmmPoolInfo
|
|
1857
|
+
contractPool: AlmmPoolInfo;
|
|
1858
1858
|
coin_type_a: string;
|
|
1859
1859
|
coin_type_b: string;
|
|
1860
1860
|
};
|
package/dist/index.js
CHANGED
|
@@ -3055,7 +3055,8 @@ function buildPosition(object) {
|
|
|
3055
3055
|
fee_owed_a: "0",
|
|
3056
3056
|
fee_growth_inside_b: "0",
|
|
3057
3057
|
fee_owed_b: "0",
|
|
3058
|
-
position_status: "Exists" /* Exists
|
|
3058
|
+
position_status: "Exists" /* Exists */,
|
|
3059
|
+
name: fields.name
|
|
3059
3060
|
};
|
|
3060
3061
|
}
|
|
3061
3062
|
const deletedResponse = getObjectDeletedResponse(object);
|