@rango-dev/wallets-core 0.61.1-next.1 → 0.61.1-next.2

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 (2) hide show
  1. package/package.json +1 -1
  2. package/readme.md +4 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rango-dev/wallets-core",
3
- "version": "0.61.1-next.1",
3
+ "version": "0.61.1-next.2",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "source": "./src/mod.ts",
package/readme.md CHANGED
@@ -23,11 +23,14 @@ Core package for handling web3 wallets supported by Rango
23
23
  | `.../namespaces/sui` | `@hub3js/sui` |
24
24
  | `.../namespaces/ton` | `@hub3js/tvm` |
25
25
  | `.../namespaces/xrpl` | `@hub3js/xrpl` |
26
- | `.../namespaces/tron`, `.../namespaces/utxo`, `.../legacy` | Not migrated yet — still served from this package |
26
+ | `.../namespaces/utxo` | `@hub3js/bip122` |
27
+ | `.../namespaces/tron`, `.../legacy` | Not migrated yet — still served from this package |
27
28
 
28
29
  A couple of things worth noting:
29
30
 
30
31
  - The `ton` namespace is published as **`@hub3js/tvm`**, not `@hub3js/ton`.
32
+ - The `utxo` namespace is published as **`@hub3js/bip122`**, after its CAIP-2 namespace.
33
+ It covers every UTXO chain (BTC, LTC, DOGE, BCH, Zcash) rather than assuming Bitcoin.
31
34
  - `.../namespaces/common` was split in two: the shared operators, builders, hooks and types
32
35
  became `@hub3js/std` (imported via subpaths such as `@hub3js/std/operators` and
33
36
  `@hub3js/std/types`), while the namespace registry types moved to `@hub3js/namespaces`.