@magmaprotocol/magma-clmm-sdk 0.5.125 → 0.5.126

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.mjs CHANGED
@@ -11385,11 +11385,12 @@ var AlmmModule = class {
11385
11385
  }
11386
11386
  const fields = getObjectFields(object);
11387
11387
  const ownerWarp = getObjectOwner(object);
11388
+ const bin_real_ids = new Array(fields.bin_count).map((_, index) => get_real_id(fields.bin_start + index));
11388
11389
  return {
11389
11390
  pos_object_id: fields.id.id,
11390
11391
  owner: ownerWarp.AddressOwner,
11391
11392
  pool: fields.pair_id,
11392
- bin_real_ids: fields.bin_ids.map((id) => get_real_id(id)),
11393
+ bin_real_ids,
11393
11394
  type: ""
11394
11395
  };
11395
11396
  }