@magmaprotocol/magma-clmm-sdk 0.5.82 → 0.5.83
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 -0
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -10816,7 +10816,10 @@ var DlmmModule = class {
|
|
|
10816
10816
|
res = bins;
|
|
10817
10817
|
}
|
|
10818
10818
|
});
|
|
10819
|
-
|
|
10819
|
+
res.forEach((bin) => {
|
|
10820
|
+
bin.real_bin_id = get_real_id(Number(bin.storage_id));
|
|
10821
|
+
});
|
|
10822
|
+
return res.sort((a, b) => a.real_bin_id - b.real_bin_id);
|
|
10820
10823
|
}
|
|
10821
10824
|
/**
|
|
10822
10825
|
* Gets a list of positions for the given account address.
|