@tuwaio/pulsar-solana 0.6.0 → 0.6.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/README.md +7 -7
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  An advanced toolkit for the Pulsar Engine that adds comprehensive support for tracking transactions on the Solana blockchain. It is built to leverage **Wallet Standard**, integrating seamlessly with modern Solana wallet ecosystems, and uses **`gill`** for modern blockchain interaction.
8
8
 
9
- -----
9
+ ---
10
10
 
11
11
  ## 🏛️ What is `@tuwaio/pulsar-solana`?
12
12
 
@@ -14,7 +14,7 @@ This package is a powerful, official adapter for `@tuwaio/pulsar-core`. It's des
14
14
 
15
15
  The architecture is designed for multi-chain robustness. You can provide RPC endpoints for different Solana clusters (e.g., Mainnet Beta, Devnet), and the adapter will automatically use the correct one based on the user's connected wallet state.
16
16
 
17
- -----
17
+ ---
18
18
 
19
19
  ## ✨ Core Features
20
20
 
@@ -24,7 +24,7 @@ The architecture is designed for multi-chain robustness. You can provide RPC end
24
24
  - **🌐 Network Verification:** Includes a utility (`checkSolanaChain`) to verify that the connected wallet's cluster matches the one required by the transaction.
25
25
  - **💡 Optional Wallet:** The adapter can be initialized without a wallet for read-only operations, such as displaying transaction history.
26
26
 
27
- -----
27
+ ---
28
28
 
29
29
  ## 💾 Installation
30
30
 
@@ -33,7 +33,7 @@ The architecture is designed for multi-chain robustness. You can provide RPC end
33
33
  pnpm add @tuwaio/pulsar-solana @tuwaio/pulsar-core gill @tuwaio/orbit-core @tuwaio/orbit-solana zustand immer dayjs @wallet-standard/app @wallet-standard/ui-registry @wallet-standard/ui-core
34
34
  ```
35
35
 
36
- -----
36
+ ---
37
37
 
38
38
  ## 🚀 Usage
39
39
 
@@ -82,7 +82,7 @@ export const usePulsarStore = createBoundedUseStore(
82
82
  );
83
83
  ```
84
84
 
85
- -----
85
+ ---
86
86
 
87
87
  ### 2. Initiating a Transaction
88
88
 
@@ -154,7 +154,7 @@ function MyTransactionButton() {
154
154
  }
155
155
  ```
156
156
 
157
- -----
157
+ ---
158
158
 
159
159
  ## 🤝 Contributing & Support
160
160
 
@@ -166,4 +166,4 @@ If you find this library useful, please consider supporting its development. Eve
166
166
 
167
167
  ## 📄 License
168
168
 
169
- This project is licensed under the **Apache-2.0 License** - see the [LICENSE](./LICENSE) file for details.
169
+ This project is licensed under the **Apache-2.0 License** - see the [LICENSE](./LICENSE) file for details.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tuwaio/pulsar-solana",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
4
4
  "private": false,
5
5
  "author": "Oleksandr Tkach",
6
6
  "license": "Apache-2.0",
@@ -43,7 +43,7 @@
43
43
  "@tuwaio/pulsar-core": ">=0.5",
44
44
  "@wallet-standard/app": "1.x.x",
45
45
  "@wallet-standard/ui-core": "1.x.x",
46
- "@wallet-standard/ui-registry": "1.x.x",
46
+ "@wallet-standard/ui-registry": "1.1.x",
47
47
  "gill": ">=0.14",
48
48
  "dayjs": "1.x.x",
49
49
  "immer": "11.x.x",
@@ -51,19 +51,19 @@
51
51
  },
52
52
  "devDependencies": {
53
53
  "@tuwaio/orbit-core": "^0.2.8",
54
- "@tuwaio/orbit-solana": "^0.2.4",
54
+ "@tuwaio/orbit-solana": "^0.2.6",
55
55
  "@wallet-standard/app": "^1.1.0",
56
56
  "@wallet-standard/ui-core": "^1.0.0",
57
- "@wallet-standard/ui-registry": "^1.0.1",
57
+ "@wallet-standard/ui-registry": "^1.1.0",
58
58
  "dayjs": "^1.11.20",
59
59
  "gill": "^0.14.0",
60
- "immer": "^11.1.4",
61
- "jsdom": "^29.1.0",
60
+ "immer": "^11.1.8",
61
+ "jsdom": "^29.1.1",
62
62
  "tsup": "^8.5.1",
63
63
  "typescript": "^6.0.3",
64
64
  "vitest": "^4.1.5",
65
- "zustand": "^5.0.12",
66
- "@tuwaio/pulsar-core": "^0.6.0"
65
+ "zustand": "^5.0.13",
66
+ "@tuwaio/pulsar-core": "^0.6.2"
67
67
  },
68
68
  "scripts": {
69
69
  "start": "tsup src/index.ts --watch",