@tuwaio/pulsar-react 0.0.4 → 0.0.6

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 +11 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -18,17 +18,17 @@ Its primary role is to ensure that transaction tracking can resume reliably afte
18
18
 
19
19
  ## 💾 Installation
20
20
 
21
- To use this package, you need the complete Pulsar stack, including `wagmi` for EVM interactions.
21
+ To use this package, you need the complete Pulsar stack, including `@wagmi/core` for EVM interactions.
22
22
 
23
23
  ```bash
24
24
  # Using pnpm
25
- pnpm add @tuwaio/pulsar-react @tuwaio/pulsar-core @tuwaio/pulsar-evm wagmi viem zustand immer
25
+ pnpm add @tuwaio/pulsar-react @tuwaio/pulsar-core @tuwaio/pulsar-evm @wagmi/core viem zustand immer dayjs
26
26
 
27
27
  # Using npm
28
- npm install @tuwaio/pulsar-react @tuwaio/pulsar-core @tuwaio/pulsar-evm wagmi viem zustand immer
28
+ npm install @tuwaio/pulsar-react @tuwaio/pulsar-core @tuwaio/pulsar-evm @wagmi/core viem zustand immer dayjs
29
29
 
30
30
  # Using yarn
31
- yarn add @tuwaio/pulsar-react @tuwaio/pulsar-core @tuwaio/pulsar-evm wagmi viem zustand immer
31
+ yarn add @tuwaio/pulsar-react @tuwaio/pulsar-core @tuwaio/pulsar-evm @wagmi/core viem zustand immer dayjs
32
32
  ```
33
33
 
34
34
  ---
@@ -52,7 +52,7 @@ import { wagmiConfig, chains } from '../configs/wagmi'; // Your wagmi config
52
52
  // 1. Create the vanilla store instance
53
53
  const pulsarStore = createPulsarStore({
54
54
  name: 'my-app-pulsar-storage',
55
- adapters: [evmAdapter(wagmiConfig, chains)],
55
+ adapter: [evmAdapter(wagmiConfig, chains)],
56
56
  // ... other configurations
57
57
  });
58
58
 
@@ -133,9 +133,13 @@ The hook accepts a single object with the following properties:
133
133
 
134
134
  ---
135
135
 
136
- ## 🤝 Contributing
136
+ ## 🤝 Contributing & Support
137
137
 
138
- Contributions are welcome\! Please read our main **[Contribution Guidelines](https://github.com/TuwaIO/workflows/blob/main/CONTRIBUTING.md)**.
138
+ Contributions are welcome! Please read our main **[Contribution Guidelines](https://github.com/TuwaIO/workflows/blob/main/CONTRIBUTING.md)**.
139
+
140
+ If you find this library useful, please consider supporting its development. Every contribution helps!
141
+
142
+ [**➡️ View Support Options**](https://github.com/TuwaIO/workflows/blob/main/Donation.md)
139
143
 
140
144
  ## 📄 License
141
145
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tuwaio/pulsar-react",
3
- "version": "0.0.4",
3
+ "version": "0.0.6",
4
4
  "private": false,
5
5
  "author": "Oleksandr Tkach",
6
6
  "license": "Apache-2.0",