@tuwaio/nova-connect 1.0.0-fix-test-alpha.61.e356934 → 1.0.0-fix-test-alpha.62.a3a7178
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 +4 -3
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +13 -596
- package/dist/index.d.ts +13 -596
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/providers/index.cjs +3 -3
- package/dist/providers/index.cjs.map +1 -1
- package/dist/providers/index.d.cts +2 -38
- package/dist/providers/index.d.ts +2 -38
- package/dist/providers/index.js +3 -3
- package/dist/providers/index.js.map +1 -1
- package/package.json +8 -8
- package/dist/evm/index.d.cts +0 -31
- package/dist/evm/index.d.ts +0 -31
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@tuwaio/nova-connect)
|
|
4
4
|
[](./LICENSE)
|
|
5
|
-
[](https://github.com/TuwaIO/nova-uikit/actions)
|
|
6
6
|
|
|
7
7
|
Feature-rich React components for connecting Web3 wallets with a comprehensive customization system and support for multiple blockchain networks.
|
|
8
8
|
|
|
@@ -110,10 +110,11 @@ export function Providers({ children }: { children: ReactNode }) {
|
|
|
110
110
|
|
|
111
111
|
```tsx
|
|
112
112
|
import { NovaConnectButton } from '@tuwaio/nova-connect';
|
|
113
|
-
import {
|
|
113
|
+
import { SatelliteStoreContext } from '@tuwaio/satellite-react';
|
|
114
|
+
import { useContext } from 'react';
|
|
114
115
|
|
|
115
116
|
function App() {
|
|
116
|
-
const store =
|
|
117
|
+
const store = useContext(SatelliteStoreContext);
|
|
117
118
|
|
|
118
119
|
return (
|
|
119
120
|
<div>
|