@reown/appkit-common 1.6.9 → 1.7.0-alpha.0
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/dist/esm/index.js +1 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/utils/SafeLocalStorage.js +1 -1
- package/dist/esm/src/utils/SafeLocalStorage.js.map +1 -1
- package/dist/esm/src/utils/SystemUtil.js +5 -0
- package/dist/esm/src/utils/SystemUtil.js.map +1 -0
- package/dist/esm/tsconfig.tsbuildinfo +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/src/utils/SafeLocalStorage.d.ts +1 -1
- package/dist/types/src/utils/SystemUtil.d.ts +4 -0
- package/package.json +14 -7
package/dist/types/index.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export { NavigationUtil } from './src/utils/NavigationUtil.js';
|
|
|
8
8
|
export { ConstantsUtil } from './src/utils/ConstantsUtil.js';
|
|
9
9
|
export { Emitter } from './src/utils/EmitterUtil.js';
|
|
10
10
|
export { ParseUtil } from './src/utils/ParseUtil.js';
|
|
11
|
+
export { SystemUtil } from './src/utils/SystemUtil.js';
|
|
11
12
|
export { SafeLocalStorage, SafeLocalStorageKeys, isSafe, type SafeLocalStorageKey, getSafeConnectorIdKey } from './src/utils/SafeLocalStorage.js';
|
|
12
13
|
export { getW3mThemeVariables } from './src/utils/ThemeUtil.js';
|
|
13
14
|
export { isReownName } from './src/utils/NamesUtil.js';
|
|
@@ -36,7 +36,7 @@ export declare const SafeLocalStorageKeys: {
|
|
|
36
36
|
readonly CONNECTION_STATUS: "@appkit/connection_status";
|
|
37
37
|
readonly SIWX_AUTH_TOKEN: "@appkit/siwx-auth-token";
|
|
38
38
|
readonly SIWX_NONCE_TOKEN: "@appkit/siwx-nonce-token";
|
|
39
|
-
readonly
|
|
39
|
+
readonly TELEGRAM_SOCIAL_PROVIDER: "@appkit/social_provider";
|
|
40
40
|
readonly NATIVE_BALANCE_CACHE: "@appkit/native_balance_cache";
|
|
41
41
|
readonly PORTFOLIO_CACHE: "@appkit/portfolio_cache";
|
|
42
42
|
readonly ENS_CACHE: "@appkit/ens_cache";
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reown/appkit-common",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0-alpha.0",
|
|
4
|
+
"sideEffects": false,
|
|
4
5
|
"type": "module",
|
|
5
6
|
"main": "./dist/esm/index.js",
|
|
6
7
|
"types": "./dist/types/index.d.ts",
|
|
@@ -18,12 +19,6 @@
|
|
|
18
19
|
"@vitest/coverage-v8": "2.1.3",
|
|
19
20
|
"vitest": "2.1.9"
|
|
20
21
|
},
|
|
21
|
-
"keywords": [
|
|
22
|
-
"utils",
|
|
23
|
-
"types",
|
|
24
|
-
"web3",
|
|
25
|
-
"appkit"
|
|
26
|
-
],
|
|
27
22
|
"author": "Reown <support@reown.com> (https://reown.com)",
|
|
28
23
|
"license": "Apache-2.0",
|
|
29
24
|
"homepage": "https://github.com/reown-com/appkit",
|
|
@@ -34,6 +29,18 @@
|
|
|
34
29
|
"bugs": {
|
|
35
30
|
"url": "https://github.com/reown-com/appkit/issues"
|
|
36
31
|
},
|
|
32
|
+
"keywords": [
|
|
33
|
+
"appkit",
|
|
34
|
+
"wallet",
|
|
35
|
+
"onboarding",
|
|
36
|
+
"reown",
|
|
37
|
+
"dapps",
|
|
38
|
+
"web3",
|
|
39
|
+
"wagmi",
|
|
40
|
+
"ethereum",
|
|
41
|
+
"solana",
|
|
42
|
+
"bitcoin"
|
|
43
|
+
],
|
|
37
44
|
"scripts": {
|
|
38
45
|
"build:clean": "rm -rf dist",
|
|
39
46
|
"build": "tsc --build",
|