@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.
Files changed (2) hide show
  1. package/README.md +9 -10
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -4,26 +4,25 @@
4
4
  [![License](https://img.shields.io/npm/l/@tuwaio/satellite-core.svg)](./LICENSE)
5
5
  [![Build Status](https://img.shields.io/github/actions/workflow/status/TuwaIO/satellite-connect/release.yml?branch=main)](https://github.com/TuwaIO/satellite-connect/actions)
6
6
 
7
- Core of the Satellite ecosystem for Web3 wallet interactions, providing a universal interface for connecting and interacting with various blockchain wallets.
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` is the foundation package of the Satellite ecosystem, designed to unify Web3 wallet interactions. It provides a single interface for connecting and interacting with wallets across different blockchains (EVM, Solana).
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
- Built with TypeScript, it leverages modern tools for state management and type-safe development.
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
- ## ✨ Key Features
19
+ ## ✨ Core Primitives
20
20
 
21
- - **Universal Interface:** Single API for interacting with different blockchain wallets
22
- - **Type Safety:** Full TypeScript support
23
- - **Modular Architecture:** Easy extension for new wallet types
24
- - **State Management:** Built-in connection state management system
25
- - **Multi-Wallet Support:** Manage multiple simultaneous wallet connections
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",
3
+ "version": "0.3.4",
4
4
  "private": false,
5
5
  "author": "Oleksandr Tkach",
6
6
  "license": "Apache-2.0",
7
- "description": "Core of the Satellite ecosystem for Web3 wallet interactions, providing a universal interface for connecting and interacting with various blockchain wallets.",
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.8",
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.13"
52
+ "zustand": "^5.0.14"
53
53
  },
54
54
  "scripts": {
55
55
  "start": "tsup src/index.ts --watch",