@tuwaio/nova-connect 1.0.0-fix-styles-alpha.1.6a584d5 → 1.0.0-fix-packages-alpha.1.901cdf5

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 (3) hide show
  1. package/README.md +5 -15
  2. package/dist/index.css +1 -1
  3. package/package.json +29 -34
package/README.md CHANGED
@@ -32,6 +32,7 @@ Built on top of the Satellite Connect ecosystem, Nova Connect offers a unified i
32
32
  ## 💾 Installation
33
33
 
34
34
  ### Requirements
35
+
35
36
  - React 19+
36
37
  - Node.js 20+
37
38
  - TypeScript 5.9+
@@ -55,7 +56,7 @@ yarn add @tuwaio/nova-connect @tuwaio/satellite-core @tuwaio/orbit-core @tuwaio/
55
56
 
56
57
  ```tsx
57
58
  import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
58
- import { satelliteEVMAdapter, createDefaultTransports, initAllConnectors } from '@tuwaio/satellite-evm';
59
+ import { satelliteEVMAdapter, createDefaultTransports } from '@tuwaio/satellite-evm';
59
60
  import { NovaConnectProvider } from '@tuwaio/nova-connect';
60
61
  import { SatelliteConnectProvider } from '@tuwaio/nova-connect/satellite';
61
62
  import { EVMWalletsWatcher } from '@tuwaio/nova-connect/evm';
@@ -63,29 +64,18 @@ import { SolanaWalletsWatcher } from '@tuwaio/nova-connect/solana';
63
64
  import { satelliteSolanaAdapter } from '@tuwaio/satellite-solana';
64
65
  import { WagmiProvider } from 'wagmi';
65
66
  import { ReactNode } from 'react';
66
- import { createConfig, http } from '@wagmi/core';
67
+ import { createConfig } from '@wagmi/core';
68
+ import { injected } from '@wagmi/connectors';
67
69
  import { mainnet, sepolia } from 'viem/chains';
68
70
  import type { Chain } from 'viem/chains';
69
71
 
70
- export const appConfig = {
71
- appName: 'Satellite EVM Test App',
72
- // Ensure you have WalletConnect Project ID in your environment variables
73
- projectId: process.env.NEXT_PUBLIC_WALLET_PROJECT_ID ?? 'YOUR_OWN_PROJECT_ID',
74
- };
75
-
76
72
  export const appEVMChains = [
77
73
  mainnet,
78
74
  sepolia,
79
75
  ] as readonly [Chain, ...Chain[]];
80
76
 
81
77
  export const wagmiConfig = createConfig({
82
- connectors: initAllConnectors({
83
- ...appConfig,
84
- // Optional: Add app details for WalletConnect modal
85
- description: 'My awesome dApp',
86
- appUrl: '[https://my-dapp.com](https://my-dapp.com)',
87
- appIcons: ['[https://my-dapp.com/icon.png](https://my-dapp.com/icon.png)'],
88
- }),
78
+ connectors: [injected()],
89
79
  transports: createDefaultTransports(appEVMChains), // Automatically creates http transports
90
80
  chains: appEVMChains,
91
81
  ssr: true, // Enable SSR support if needed (e.g., in Next.js)
package/dist/index.css CHANGED
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.1.16 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.1.17 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  @layer theme, base, components, utilities;
4
4
  @layer theme {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tuwaio/nova-connect",
3
- "version": "1.0.0-fix-styles-alpha.1.6a584d5",
3
+ "version": "1.0.0-fix-packages-alpha.1.901cdf5",
4
4
  "private": false,
5
5
  "author": "Oleksandr Tkach",
6
6
  "license": "Apache-2.0",
@@ -85,7 +85,7 @@
85
85
  }
86
86
  ],
87
87
  "dependencies": {
88
- "@tuwaio/satellite-react": "^0.1.3"
88
+ "@tuwaio/satellite-react": "1.0.0-fix-packages-alpha.1.bd0ce80"
89
89
  },
90
90
  "peerDependencies": {
91
91
  "@bgd-labs/react-web3-icons": ">=1.5",
@@ -99,14 +99,13 @@
99
99
  "@tuwaio/satellite-evm": ">=0.1.1",
100
100
  "@tuwaio/satellite-solana": ">=0.1",
101
101
  "@tuwaio/pulsar-core": ">=0.2",
102
- "@tuwaio/nova-core": ">=0",
103
- "@tuwaio/nova-transactions": ">=0",
102
+ "@tuwaio/nova-core": ">=0.1",
103
+ "@tuwaio/nova-transactions": ">=0.1",
104
104
  "@wallet-standard/react": "1.x.x",
105
- "@wagmi/core": "2.x.x",
106
- "@wagmi/connectors": "6.x.x",
107
- "gill": ">=0.12",
105
+ "@wagmi/core": "3.x.x",
106
+ "gill": ">=0.14",
108
107
  "dayjs": "1.x.x",
109
- "immer": "10.x.x",
108
+ "immer": "11.x.x",
110
109
  "ethereum-blockies-base64": "1.x.x",
111
110
  "framer-motion": "12.x.x",
112
111
  "@emotion/is-prop-valid": "1.x.x",
@@ -176,9 +175,6 @@
176
175
  "@wagmi/core": {
177
176
  "optional": true
178
177
  },
179
- "@wagmi/connectors": {
180
- "optional": true
181
- },
182
178
  "viem": {
183
179
  "optional": true
184
180
  },
@@ -196,44 +192,43 @@
196
192
  }
197
193
  },
198
194
  "devDependencies": {
199
- "@bgd-labs/react-web3-icons": "^1.52.0",
195
+ "@bgd-labs/react-web3-icons": "^1.56.0",
200
196
  "@heroicons/react": "^2.2.0",
201
197
  "@radix-ui/react-dialog": "^1.1.15",
202
198
  "@radix-ui/react-select": "^2.2.6",
203
- "@tuwaio/orbit-core": "^0.1.2",
204
- "@tuwaio/orbit-evm": "^0.1.2",
205
- "@tuwaio/orbit-solana": "^0.1.1",
206
- "@tuwaio/satellite-core": "^0.1.2",
207
- "@tuwaio/satellite-evm": "^0.1.3",
208
- "@tuwaio/satellite-solana": "^0.1.2",
209
- "@tuwaio/pulsar-core": "^0.2.2",
199
+ "@tuwaio/orbit-core": "1.0.0-fix-packages-alpha.2.a02ae73",
200
+ "@tuwaio/orbit-evm": "1.0.0-fix-packages-alpha.2.a02ae73",
201
+ "@tuwaio/orbit-solana": "1.0.0-fix-packages-alpha.2.a02ae73",
202
+ "@tuwaio/satellite-core": "1.0.0-fix-packages-alpha.1.bd0ce80",
203
+ "@tuwaio/satellite-evm": "1.0.0-fix-packages-alpha.1.bd0ce80",
204
+ "@tuwaio/satellite-solana": "1.0.0-fix-packages-alpha.1.bd0ce80",
205
+ "@tuwaio/pulsar-core": "1.0.0-fix-packages-alpha.1.151441c",
210
206
  "@wallet-standard/react": "^1.0.1",
211
- "@wagmi/core": "^2.22.1",
212
- "@wagmi/connectors": "^6.1.2",
213
- "gill": "^0.12.0",
207
+ "@wagmi/core": "^3.0.0",
208
+ "gill": "^0.14.0",
214
209
  "clsx": "^2.1.1",
215
- "dayjs": "^1.11.18",
216
- "immer": "^10.2.0",
210
+ "dayjs": "^1.11.19",
211
+ "immer": "^11.0.0",
217
212
  "ethereum-blockies-base64": "^1.0.2",
218
213
  "framer-motion": "^12.23.24",
219
214
  "react": "^19.2.0",
220
215
  "react-toastify": "^11.0.5",
221
- "tailwind-merge": "^3.3.1",
222
- "viem": "^2.38.5",
216
+ "tailwind-merge": "^3.4.0",
217
+ "viem": "^2.40.3",
223
218
  "zustand": "^5.0.8",
224
- "@tailwindcss/postcss": "^4.1.16",
225
- "@tailwindcss/vite": "^4.1.16",
226
- "@types/react": "^19.2.2",
227
- "autoprefixer": "^10.4.21",
219
+ "@tailwindcss/postcss": "^4.1.17",
220
+ "@tailwindcss/vite": "^4.1.17",
221
+ "@types/react": "^19.2.7",
222
+ "autoprefixer": "^10.4.22",
228
223
  "postcss": "^8.5.6",
229
224
  "postcss-cli": "^11.0.1",
230
- "tailwindcss": "^4.1.16",
225
+ "tailwindcss": "^4.1.17",
231
226
  "@emotion/is-prop-valid": "^1.4.0",
232
227
  "tw-animate-css": "^1.4.0",
233
228
  "typescript": "^5.9.3",
234
- "tsup": "^8.5.0",
235
- "@tuwaio/nova-core": "^1.0.0-fix-styles-alpha.1.6a584d5",
236
- "@tuwaio/nova-transactions": "^1.0.0-fix-styles-alpha.1.6a584d5"
229
+ "tsup": "^8.5.1",
230
+ "@tuwaio/nova-core": "^1.0.0-fix-packages-alpha.1.901cdf5",
231
+ "@tuwaio/nova-transactions": "^1.0.0-fix-packages-alpha.1.901cdf5"
237
232
  },
238
233
  "scripts": {
239
234
  "start": "tsup src/index.ts --watch",