@reown/appkit-cli 1.6.9 → 1.7.0-rc.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/CHANGELOG.md +56 -0
- package/package.json +21 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,61 @@
|
|
|
1
1
|
# @reown/appkit-cli
|
|
2
2
|
|
|
3
|
+
## 1.7.0-rc.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#3976](https://github.com/reown-com/appkit/pull/3976) [`cbd929f`](https://github.com/reown-com/appkit/commit/cbd929f839ad7ee4c7838fa980bcfd63b40b1415) Thanks [@tomiir](https://github.com/tomiir)! - Adds @reown/appkit-controllers. Proxies @reown/appkit-core to the new controllers package to maintain backwards compatibility.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- [#3952](https://github.com/reown-com/appkit/pull/3952) [`8b0f958`](https://github.com/reown-com/appkit/commit/8b0f958b8e4169564a1c77da33a1c9d15554094c) Thanks [@enesozturk](https://github.com/enesozturk)! - Fixes profile name syncing when switching to non EVM network or to a testnet
|
|
12
|
+
|
|
13
|
+
- [#3961](https://github.com/reown-com/appkit/pull/3961) [`7280345`](https://github.com/reown-com/appkit/commit/7280345ecb39359c9a5271f0ff9ebfb902379272) Thanks [@tomiir](https://github.com/tomiir)! - Adds UX by reown footer to connection screens
|
|
14
|
+
|
|
15
|
+
- [#3985](https://github.com/reown-com/appkit/pull/3985) [`569aa92`](https://github.com/reown-com/appkit/commit/569aa92cddfe51aa93c2ca201eeb500da28e8a1a) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where users could not use the embedded wallet if they denied access to their email address and/or username
|
|
16
|
+
|
|
17
|
+
- [#3860](https://github.com/reown-com/appkit/pull/3860) [`dc6c6ab`](https://github.com/reown-com/appkit/commit/dc6c6abb30fb4cbc9b7241cb8af6e6f970e71f62) Thanks [@tomiir](https://github.com/tomiir)! - Initializes Solana connection on adapter construction
|
|
18
|
+
|
|
19
|
+
- [#3969](https://github.com/reown-com/appkit/pull/3969) [`42e0f0e`](https://github.com/reown-com/appkit/commit/42e0f0ed9e0ef87cd5eae641dfb8bc8d267e1b44) Thanks [@magiziz](https://github.com/magiziz)! - Added `appKit.getAccount` public method
|
|
20
|
+
|
|
21
|
+
- [#3757](https://github.com/reown-com/appkit/pull/3757) [`95980b9`](https://github.com/reown-com/appkit/commit/95980b955955e9e50336e91789d9838a53534558) Thanks [@tomiir](https://github.com/tomiir)! - Splits code into basic and regular appkit. Re-exports ui and scaffold components so they can be tree-shaken. Dynamically import appropiate chunks according to feature flags'
|
|
22
|
+
|
|
23
|
+
- [#3916](https://github.com/reown-com/appkit/pull/3916) [`29779a4`](https://github.com/reown-com/appkit/commit/29779a491e2ef38e5e945afcf79601cede6d1219) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where connection status was incorrectly set on page refresh after attempting to connect with WalletConnect.
|
|
24
|
+
|
|
25
|
+
- [#3987](https://github.com/reown-com/appkit/pull/3987) [`ce9e3c1`](https://github.com/reown-com/appkit/commit/ce9e3c1baa0189c843359ab46aa3fa0ed8f18d14) Thanks [@enesozturk](https://github.com/enesozturk)! - Handles namespace switching when calling `open()` function. Passing `namespace` to `open()` function, AppKit will switch to that namespace. If namespace is connected, it'll open Account button, if not it'll open Connect screen.
|
|
26
|
+
|
|
27
|
+
**Example:**
|
|
28
|
+
|
|
29
|
+
```jsx
|
|
30
|
+
const { open } = useAppKit()
|
|
31
|
+
|
|
32
|
+
open({ namespace: 'eip155' })
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
This could be combined with `view` parameter as well. It'll switch to that namespace and open relevant page.
|
|
36
|
+
|
|
37
|
+
**Example:**
|
|
38
|
+
|
|
39
|
+
```jsx
|
|
40
|
+
const { open } = useAppKit()
|
|
41
|
+
|
|
42
|
+
open({ view: 'Connect', namespace: 'eip155' })
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
- [#3936](https://github.com/reown-com/appkit/pull/3936) [`df403d9`](https://github.com/reown-com/appkit/commit/df403d9cce342c7b75864ec5fa841324a647434c) Thanks [@enesozturk](https://github.com/enesozturk)! - Adds namespace parameter to AppKit buttons.
|
|
46
|
+
|
|
47
|
+
This allows users to render namespace specific connect & account buttons. When namespace has passed, connect button opens connect page with only that namespace's connectors and account button shows only that namespace's account info.
|
|
48
|
+
|
|
49
|
+
**Example:**
|
|
50
|
+
|
|
51
|
+
```js
|
|
52
|
+
<appkit-button namespace="eip155" />
|
|
53
|
+
<appkit-button namespace="solana" />
|
|
54
|
+
<appkit-button namespace="bip122" />
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
- [#3970](https://github.com/reown-com/appkit/pull/3970) [`b5273b6`](https://github.com/reown-com/appkit/commit/b5273b6ca5de673f74fff01f3a1c460a9869903d) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where wagmi triggered a disconnect on page refresh
|
|
58
|
+
|
|
3
59
|
## 1.6.9
|
|
4
60
|
|
|
5
61
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,27 +1,39 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reown/appkit-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0-rc.0",
|
|
4
|
+
"sideEffects": false,
|
|
4
5
|
"description": "Reown AppKit CLI",
|
|
5
6
|
"main": "index.js",
|
|
6
7
|
"type": "module",
|
|
7
8
|
"bin": {
|
|
8
9
|
"appkit-cli": "./index.js"
|
|
9
10
|
},
|
|
10
|
-
"keywords": [],
|
|
11
11
|
"author": "",
|
|
12
12
|
"license": "ISC",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"chalk": "5.
|
|
15
|
-
"figlet": "1.
|
|
16
|
-
"inquirer": "12.
|
|
14
|
+
"chalk": "5.4.1",
|
|
15
|
+
"figlet": "1.8.0",
|
|
16
|
+
"inquirer": "12.4.2",
|
|
17
17
|
"tiged": "2.12.7"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@babel/plugin-transform-runtime": "7.
|
|
21
|
-
"@babel/preset-env": "7.
|
|
22
|
-
"@babel/runtime": "7.
|
|
20
|
+
"@babel/plugin-transform-runtime": "7.26.9",
|
|
21
|
+
"@babel/preset-env": "7.26.9",
|
|
22
|
+
"@babel/runtime": "7.26.9",
|
|
23
23
|
"cross-env": "7.0.3",
|
|
24
24
|
"esm": "3.2.25",
|
|
25
25
|
"ts-node": "10.9.2"
|
|
26
|
-
}
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"appkit",
|
|
29
|
+
"wallet",
|
|
30
|
+
"onboarding",
|
|
31
|
+
"reown",
|
|
32
|
+
"dapps",
|
|
33
|
+
"web3",
|
|
34
|
+
"wagmi",
|
|
35
|
+
"ethereum",
|
|
36
|
+
"solana",
|
|
37
|
+
"bitcoin"
|
|
38
|
+
]
|
|
27
39
|
}
|