@tuwaio/pulsar-core 0.6.4 → 0.6.5
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 +8 -8
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -4,15 +4,15 @@
|
|
|
4
4
|
[](./LICENSE)
|
|
5
5
|
[](https://github.com/TuwaIO/pulsar-core/actions)
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Tier 3 of the TUWA Ecosystem. Framework-agnostic headless core store providing append-only localStorage transaction history ledgers.
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
|
|
11
11
|
## 🏛️ What is `@tuwaio/pulsar-core`?
|
|
12
12
|
|
|
13
|
-
`@tuwaio/pulsar-core` is the
|
|
13
|
+
`@tuwaio/pulsar-core` is the framework-agnostic, zero-dependency client-side ledger layer of the Pulsar ecosystem. It contains no visual interface components or framework-specific render hooks.
|
|
14
14
|
|
|
15
|
-
Its
|
|
15
|
+
Its single purpose is to act as a headless state machine providing deterministic transaction status reconciliation and client-side state persistence across user sessions. Built on top of **Zustand** and **Immer**, it maintains transaction pool stability using persistent browser storage engines to secure an append-only transaction ledger.
|
|
16
16
|
|
|
17
17
|
This package exports one primary factory function: `createPulsarStore`.
|
|
18
18
|
|
|
@@ -20,11 +20,11 @@ This package exports one primary factory function: `createPulsarStore`.
|
|
|
20
20
|
|
|
21
21
|
## ✨ Key Features
|
|
22
22
|
|
|
23
|
-
- **Framework-Agnostic:**
|
|
24
|
-
- **Multi-Chain by Design:**
|
|
25
|
-
- **Persistent State:**
|
|
26
|
-
- **
|
|
27
|
-
- **Type-Safe:**
|
|
23
|
+
- **Framework-Agnostic:** Orchestrate and integrate state logic into any environment (React, Vue, Svelte, or Node.js).
|
|
24
|
+
- **Multi-Chain by Design:** Isolated state machine adapter system to support heterogeneous blockchain networks.
|
|
25
|
+
- **Persistent State:** Client-side state persistence powered by browser storage engines to resume lifecycle tracking across refreshes.
|
|
26
|
+
- **Append-Only Ledger:** High-stability transaction pool management using FIFO eviction policies.
|
|
27
|
+
- **Type-Safe:** Zero-compromise TypeScript implementation with explicit interfaces.
|
|
28
28
|
|
|
29
29
|
---
|
|
30
30
|
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tuwaio/pulsar-core",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.5",
|
|
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 headless core store providing append-only localStorage transaction history ledgers.",
|
|
8
8
|
"main": "./dist/index.js",
|
|
9
9
|
"module": "./dist/index.mjs",
|
|
10
10
|
"types": "./dist/index.d.ts",
|
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
"zustand": "5.x.x"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@tuwaio/orbit-core": "^0.2.
|
|
49
|
+
"@tuwaio/orbit-core": "^0.2.12",
|
|
50
50
|
"dayjs": "^1.11.21",
|
|
51
|
-
"immer": "^11.1.
|
|
51
|
+
"immer": "^11.1.9",
|
|
52
52
|
"tsup": "^8.5.1",
|
|
53
53
|
"typescript": "^6.0.3",
|
|
54
|
-
"vitest": "^4.1.
|
|
55
|
-
"zustand": "^5.0.
|
|
54
|
+
"vitest": "^4.1.9",
|
|
55
|
+
"zustand": "^5.0.14"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
58
|
"start": "tsup src/index.ts --watch",
|