@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tuwaio/nova-connect",
3
- "version": "1.0.0-fix-test-alpha.61.e356934",
3
+ "version": "1.0.0-fix-test-alpha.62.a3a7178",
4
4
  "private": false,
5
5
  "author": "Oleksandr Tkach",
6
6
  "license": "Apache-2.0",
@@ -219,13 +219,13 @@
219
219
  "tw-animate-css": "^1.4.0",
220
220
  "typescript": "^5.9.3",
221
221
  "tsup": "^8.5.0",
222
- "@tuwaio/orbit-core": "^1.0.0-fix-test-alpha.61.e356934",
223
- "@tuwaio/orbit-evm": "^1.0.0-fix-test-alpha.61.e356934",
224
- "@tuwaio/satellite-core": "^1.0.0-fix-test-alpha.61.e356934",
225
- "@tuwaio/orbit-solana": "^1.0.0-fix-test-alpha.61.e356934",
226
- "@tuwaio/satellite-react": "^1.0.0-fix-test-alpha.61.e356934",
227
- "@tuwaio/satellite-evm": "^1.0.0-fix-test-alpha.61.e356934",
228
- "@tuwaio/satellite-solana": "^1.0.0-fix-test-alpha.61.e356934"
222
+ "@tuwaio/orbit-solana": "^1.0.0-fix-test-alpha.62.a3a7178",
223
+ "@tuwaio/orbit-evm": "^1.0.0-fix-test-alpha.62.a3a7178",
224
+ "@tuwaio/satellite-core": "^1.0.0-fix-test-alpha.62.a3a7178",
225
+ "@tuwaio/satellite-react": "^1.0.0-fix-test-alpha.62.a3a7178",
226
+ "@tuwaio/orbit-core": "^1.0.0-fix-test-alpha.62.a3a7178",
227
+ "@tuwaio/satellite-solana": "^1.0.0-fix-test-alpha.62.a3a7178",
228
+ "@tuwaio/satellite-evm": "^1.0.0-fix-test-alpha.62.a3a7178"
229
229
  },
230
230
  "scripts": {
231
231
  "start": "tsup src/index.ts --watch",
@@ -1,31 +0,0 @@
1
- import { OrbitAdapter } from '@tuwaio/orbit-core';
2
- import { Chain } from 'viem/chains';
3
- export { Chain } from 'viem/chains';
4
- import { EVMWallet, ConnectorEVM } from '@tuwaio/satellite-evm';
5
-
6
- /**
7
- * Get EVM chain IDs from app chains configuration
8
- */
9
- declare function getEvmChains(appChains?: readonly [Chain, ...Chain[]]): number[];
10
- /**
11
- * Type guard to check if a chain list contains EVM chain IDs
12
- */
13
- declare function isEvmChainList(chains: (string | number)[]): chains is number[];
14
-
15
- declare module '@tuwaio/nova-connect' {
16
- interface AllChainConfigs {
17
- /**
18
- * EVM chains configuration - enhanced from default any type
19
- * @override Replaces default `any` with specific Chain typing when viem is available
20
- */
21
- appChains?: readonly [Chain, ...Chain[]];
22
- }
23
- interface AllWallets {
24
- [OrbitAdapter.EVM]: EVMWallet;
25
- }
26
- interface AllConnectors {
27
- [OrbitAdapter.EVM]: ConnectorEVM;
28
- }
29
- }
30
-
31
- export { getEvmChains, isEvmChainList };
@@ -1,31 +0,0 @@
1
- import { OrbitAdapter } from '@tuwaio/orbit-core';
2
- import { Chain } from 'viem/chains';
3
- export { Chain } from 'viem/chains';
4
- import { EVMWallet, ConnectorEVM } from '@tuwaio/satellite-evm';
5
-
6
- /**
7
- * Get EVM chain IDs from app chains configuration
8
- */
9
- declare function getEvmChains(appChains?: readonly [Chain, ...Chain[]]): number[];
10
- /**
11
- * Type guard to check if a chain list contains EVM chain IDs
12
- */
13
- declare function isEvmChainList(chains: (string | number)[]): chains is number[];
14
-
15
- declare module '@tuwaio/nova-connect' {
16
- interface AllChainConfigs {
17
- /**
18
- * EVM chains configuration - enhanced from default any type
19
- * @override Replaces default `any` with specific Chain typing when viem is available
20
- */
21
- appChains?: readonly [Chain, ...Chain[]];
22
- }
23
- interface AllWallets {
24
- [OrbitAdapter.EVM]: EVMWallet;
25
- }
26
- interface AllConnectors {
27
- [OrbitAdapter.EVM]: ConnectorEVM;
28
- }
29
- }
30
-
31
- export { getEvmChains, isEvmChainList };