@ledgerhq/cryptoassets 6.21.3 → 6.22.4

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.
Files changed (46) hide show
  1. package/.turbo/turbo-build.log +2 -0
  2. package/data/bep20.js +20 -2
  3. package/data/erc20-signatures.js +1 -1
  4. package/data/erc20.js +15 -5
  5. package/data/esdt.js +1 -1
  6. package/data/exchange/erc20.js +12 -2
  7. package/data/polygon-erc20.js +9 -0
  8. package/lib/currencies.js +2 -2
  9. package/lib/currencies.js.map +1 -1
  10. package/lib/exchange.js +1 -1
  11. package/lib-es/abandonseed.d.ts +0 -0
  12. package/lib-es/abandonseed.d.ts.map +0 -0
  13. package/lib-es/abandonseed.js +0 -0
  14. package/lib-es/abandonseed.js.map +0 -0
  15. package/lib-es/currencies.d.ts +0 -0
  16. package/lib-es/currencies.d.ts.map +0 -0
  17. package/lib-es/currencies.js +2 -2
  18. package/lib-es/currencies.js.map +1 -1
  19. package/lib-es/currencies.test.d.ts +0 -0
  20. package/lib-es/currencies.test.d.ts.map +0 -0
  21. package/lib-es/currencies.test.js +0 -0
  22. package/lib-es/currencies.test.js.map +0 -0
  23. package/lib-es/exchange.d.ts +0 -0
  24. package/lib-es/exchange.d.ts.map +0 -0
  25. package/lib-es/exchange.js +2 -2
  26. package/lib-es/exchange.js.map +0 -0
  27. package/lib-es/fiats.d.ts +0 -0
  28. package/lib-es/fiats.d.ts.map +0 -0
  29. package/lib-es/fiats.js +0 -0
  30. package/lib-es/fiats.js.map +0 -0
  31. package/lib-es/index.d.ts +0 -0
  32. package/lib-es/index.d.ts.map +0 -0
  33. package/lib-es/index.js +0 -0
  34. package/lib-es/index.js.map +0 -0
  35. package/lib-es/tokens.d.ts +0 -0
  36. package/lib-es/tokens.d.ts.map +0 -0
  37. package/lib-es/tokens.js +0 -0
  38. package/lib-es/tokens.js.map +0 -0
  39. package/lib-es/types.d.ts +0 -0
  40. package/lib-es/types.d.ts.map +0 -0
  41. package/lib-es/types.js +0 -0
  42. package/lib-es/types.js.map +0 -0
  43. package/package.json +2 -2
  44. package/src/currencies.ts +2 -2
  45. package/src/exchange.ts +2 -2
  46. package/ethereum.json +0 -193956
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ledgerhq/cryptoassets",
3
- "version": "6.21.3",
3
+ "version": "6.22.4",
4
4
  "description": "Ledger crypto-assets list",
5
5
  "keywords": [
6
6
  "Ledger"
@@ -29,5 +29,5 @@
29
29
  "watch": "bash ../../script/watch.sh",
30
30
  "doc": "bash ../../script/doc.sh"
31
31
  },
32
- "gitHead": "d40c77cc5dc5804637b1c153a536a1e1d7a8f41c"
32
+ "gitHead": "6b78677ef262faef3833a49e8c122a42c76b682e"
33
33
  }
package/src/currencies.ts CHANGED
@@ -618,8 +618,8 @@ const cryptocurrenciesById: Record<string, CryptoCurrency> = {
618
618
  ],
619
619
  explorerViews: [
620
620
  {
621
- tx: "https://www.mintscan.io/txs/$hash",
622
- address: "https://www.mintscan.io/validators/$address",
621
+ tx: "https://www.mintscan.io/cosmos/txs/$hash",
622
+ address: "https://www.mintscan.io/cosmos/validators/$address",
623
623
  },
624
624
  ],
625
625
  },
package/src/exchange.ts CHANGED
@@ -1,5 +1,5 @@
1
- import coins from "../data/exchange/erc20";
2
- import erc20 from "../data/exchange/coins";
1
+ import erc20 from "../data/exchange/erc20";
2
+ import coins from "../data/exchange/coins";
3
3
  const all = [...coins, ...erc20];
4
4
  const configs = {};
5
5