@rango-dev/wallets-core 0.60.1-next.0 → 0.60.1-next.1
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/package.json +1 -1
- package/readme.md +29 -0
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -2,3 +2,32 @@
|
|
|
2
2
|
|
|
3
3
|
Core package for handling web3 wallets supported by Rango
|
|
4
4
|
|
|
5
|
+
> **⚠️ Deprecated — this package is being split up and moved to [hub3js](https://github.com/rango-exchange/hub3js).**
|
|
6
|
+
>
|
|
7
|
+
> Most of what lives here now ships as focused `@hub3js/*` packages. New code should import
|
|
8
|
+
> from those instead. The subpaths marked "not migrated yet" below are still served from this
|
|
9
|
+
> package and will keep working until their replacements are released.
|
|
10
|
+
|
|
11
|
+
## Migrating imports
|
|
12
|
+
|
|
13
|
+
| Old | New |
|
|
14
|
+
| --- | --- |
|
|
15
|
+
| `@rango-dev/wallets-core` | `@hub3js/core` |
|
|
16
|
+
| `.../store` | `@hub3js/core/store` |
|
|
17
|
+
| `.../utils` | `@hub3js/core/utils` |
|
|
18
|
+
| `.../namespaces/common` | `@hub3js/namespaces` + `@hub3js/std` |
|
|
19
|
+
| `.../namespaces/evm` | `@hub3js/evm` |
|
|
20
|
+
| `.../namespaces/solana` | `@hub3js/solana` |
|
|
21
|
+
| `.../namespaces/starknet` | `@hub3js/starknet` |
|
|
22
|
+
| `.../namespaces/stellar` | `@hub3js/stellar` |
|
|
23
|
+
| `.../namespaces/sui` | `@hub3js/sui` |
|
|
24
|
+
| `.../namespaces/ton` | `@hub3js/tvm` |
|
|
25
|
+
| `.../namespaces/xrpl` | `@hub3js/xrpl` |
|
|
26
|
+
| `.../namespaces/tron`, `.../namespaces/utxo`, `.../legacy` | Not migrated yet — still served from this package |
|
|
27
|
+
|
|
28
|
+
A couple of things worth noting:
|
|
29
|
+
|
|
30
|
+
- The `ton` namespace is published as **`@hub3js/tvm`**, not `@hub3js/ton`.
|
|
31
|
+
- `.../namespaces/common` was split in two: the shared operators, builders, hooks and types
|
|
32
|
+
became `@hub3js/std` (imported via subpaths such as `@hub3js/std/operators` and
|
|
33
|
+
`@hub3js/std/types`), while the namespace registry types moved to `@hub3js/namespaces`.
|