@reown/appkit-core 1.0.6 → 1.0.7

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.
@@ -32,6 +32,7 @@ export declare const NetworkController: {
32
32
  setApprovedCaipNetworksData(chain: ChainNamespace | undefined): Promise<void>;
33
33
  checkIfSupportedNetwork(): boolean;
34
34
  checkIfSmartAccountEnabled(): boolean;
35
+ checkIfNamesSupported(): boolean | undefined;
35
36
  resetNetwork(): void;
36
37
  getSupportsAllNetworks(): boolean | undefined;
37
38
  showUnsupportedChainUI(): void;
@@ -1,4 +1,5 @@
1
1
  import type { Features } from './TypeUtil.js';
2
+ import type { ChainNamespace } from '@reown/appkit-common';
2
3
  export declare const ONRAMP_PROVIDERS: {
3
4
  label: string;
4
5
  name: string;
@@ -35,6 +36,7 @@ export declare const ConstantsUtil: {
35
36
  SWAP_SUGGESTED_TOKENS: string[];
36
37
  SWAP_POPULAR_TOKENS: string[];
37
38
  SWAP_SUPPORTED_NETWORKS: string[];
39
+ NAMES_SUPPORTED_CHAIN_NAMESPACES: ChainNamespace[];
38
40
  NATIVE_TOKEN_ADDRESS: {
39
41
  readonly eip155: "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee";
40
42
  readonly solana: "So11111111111111111111111111111111111111111";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reown/appkit-core",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "type": "module",
5
5
  "main": "./dist/esm/exports/index.js",
6
6
  "types": "./dist/types/exports/index.d.ts",
@@ -23,8 +23,8 @@
23
23
  "dependencies": {
24
24
  "@walletconnect/universal-provider": "2.17.0",
25
25
  "valtio": "1.11.2",
26
- "@reown/appkit-common": "1.0.6",
27
- "@reown/appkit-wallet": "1.0.6"
26
+ "@reown/appkit-common": "1.0.7",
27
+ "@reown/appkit-wallet": "1.0.7"
28
28
  },
29
29
  "devDependencies": {
30
30
  "vitest": "2.0.5",