@tuwaio/satellite-core 0.3.3 → 0.3.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.
- package/README.md +9 -10
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -4,26 +4,25 @@
|
|
|
4
4
|
[](./LICENSE)
|
|
5
5
|
[](https://github.com/TuwaIO/satellite-connect/actions)
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Framework-agnostic type-safe state engine for tracking multi-chain connection lifecycles and active wallet sessions in the TUWA Ecosystem.
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
|
11
11
|
## 🏛️ What is `@tuwaio/satellite-core`?
|
|
12
12
|
|
|
13
|
-
`@tuwaio/satellite-core`
|
|
13
|
+
`@tuwaio/satellite-core` represents the core state management and cryptographic identity mapping layer of the Satellite framework. It functions as a framework-agnostic state tracker keeping absolute synchronization between multi-chain provider events and unified application session layers.
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
By employing Zustand and Immer, it operates as a type-safe state engine without direct UI bindings, establishing a clean separation of concerns.
|
|
16
16
|
|
|
17
17
|
---
|
|
18
18
|
|
|
19
|
-
## ✨
|
|
19
|
+
## ✨ Core Primitives
|
|
20
20
|
|
|
21
|
-
- **
|
|
22
|
-
- **
|
|
23
|
-
- **
|
|
24
|
-
- **
|
|
25
|
-
- **
|
|
26
|
-
- **Bundle Optimization:** Efficient tree-shaking optimization
|
|
21
|
+
- **Cryptographic Identity Mapping:** Standardized session and address models across EVM and Solana chains.
|
|
22
|
+
- **Connection Orchestration:** Framework-agnostic lifecycle management for active sessions and protocol-level connections.
|
|
23
|
+
- **Type-Safe Session Store:** Deterministic and immutable state transitions powered by Zustand and Immer.
|
|
24
|
+
- **Provider Event Synchronization:** Real-time event watchers for network mutations, account switches, and disconnections.
|
|
25
|
+
- **Zero UI Coupling:** Fully headless execution designed to feed directly into bindings or custom interfaces.
|
|
27
26
|
|
|
28
27
|
---
|
|
29
28
|
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tuwaio/satellite-core",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "Oleksandr Tkach",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
|
-
"description": "
|
|
7
|
+
"description": "Tier 3 of the TUWA Ecosystem. Framework-agnostic core state store for tracking multi-chain connection lifecycles and active wallet sessions.",
|
|
8
8
|
"main": "./dist/index.js",
|
|
9
9
|
"module": "./dist/index.mjs",
|
|
10
10
|
"types": "./dist/index.d.ts",
|
|
@@ -45,11 +45,11 @@
|
|
|
45
45
|
"zustand": "5.x.x"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@tuwaio/orbit-core": "^0.2.
|
|
48
|
+
"@tuwaio/orbit-core": "^0.2.12",
|
|
49
49
|
"immer": "^11.1.8",
|
|
50
50
|
"tsup": "^8.5.1",
|
|
51
51
|
"typescript": "^6.0.3",
|
|
52
|
-
"zustand": "^5.0.
|
|
52
|
+
"zustand": "^5.0.14"
|
|
53
53
|
},
|
|
54
54
|
"scripts": {
|
|
55
55
|
"start": "tsup src/index.ts --watch",
|