@ecency/wallets 1.3.8 → 1.3.9

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.
@@ -22642,7 +22642,11 @@ function cc(a, h = !1) {
22642
22642
  a,
22643
22643
  $t.filter(({ type: b }) => b === "CHAIN"),
22644
22644
  $t.map((b) => (b.meta.show = h, b)),
22645
- $t.groupByProp("symbol")
22645
+ // Chain tokens are unique by symbol, so indexing by symbol
22646
+ // gives a direct lookup map instead of an array-based grouping.
22647
+ $t.indexBy(
22648
+ (b) => b.symbol
22649
+ )
22646
22650
  ) : {};
22647
22651
  }
22648
22652
  function f1(a) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ecency/wallets",
3
3
  "private": false,
4
- "version": "1.3.8",
4
+ "version": "1.3.9",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "main": "./dist/ecency-sdk.umd.js",