@tuwaio/pulsar-react 0.0.5 → 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.
- package/README.md +5 -5
- 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
|
|
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
|
-
|
|
55
|
+
adapter: [evmAdapter(wagmiConfig, chains)],
|
|
56
56
|
// ... other configurations
|
|
57
57
|
});
|
|
58
58
|
|