@reown/appkit-cli 1.6.2 → 1.6.3-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 +53 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,58 @@
|
|
|
1
1
|
# @reown/appkit-cli
|
|
2
2
|
|
|
3
|
+
## 1.6.3-rc.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#3530](https://github.com/reown-com/appkit/pull/3530) [`295f320`](https://github.com/reown-com/appkit/commit/295f320b133b5bd605f9c9a89441935a2471f1ec) Thanks [@magiziz](https://github.com/magiziz)! - Updated account modal to redirect to the settings view instead of the profile view when only one social/email account is connected
|
|
8
|
+
|
|
9
|
+
- [#3528](https://github.com/reown-com/appkit/pull/3528) [`a3dae62`](https://github.com/reown-com/appkit/commit/a3dae620d7f5209ca496ada6491eced3f0e5391c) Thanks [@magiziz](https://github.com/magiziz)! - Added a new option to enable or disable logs from email/social login.
|
|
10
|
+
|
|
11
|
+
**Example usage**
|
|
12
|
+
|
|
13
|
+
```ts
|
|
14
|
+
import { createAppKit } from '@reown/appkit/react'
|
|
15
|
+
|
|
16
|
+
const modal = createAppKit({
|
|
17
|
+
adapters: [
|
|
18
|
+
/* Adapters */
|
|
19
|
+
],
|
|
20
|
+
networks: [
|
|
21
|
+
/* Networks */
|
|
22
|
+
],
|
|
23
|
+
projectId: 'YOUR_PROJECT_ID',
|
|
24
|
+
enableAuthLogger: false // Optional - defaults to true
|
|
25
|
+
})
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
- [#3492](https://github.com/reown-com/appkit/pull/3492) [`8569d56`](https://github.com/reown-com/appkit/commit/8569d56a3c6ab41833c7ef6a21712afee4bbcec0) Thanks [@tomiir](https://github.com/tomiir)! - Fixes issue where non-embedded wallets would show an empty list on send flow
|
|
29
|
+
|
|
30
|
+
- [#3522](https://github.com/reown-com/appkit/pull/3522) [`39616f5`](https://github.com/reown-com/appkit/commit/39616f5efb6f5af17ef716aca2383597cd98fdde) Thanks [@enesozturk](https://github.com/enesozturk)! - Fixes `signOutOnNetworkChange` and `signOutOnAccountChange` flags on SIWX mapper function to work as expected
|
|
31
|
+
|
|
32
|
+
- [#3541](https://github.com/reown-com/appkit/pull/3541) [`fc80119`](https://github.com/reown-com/appkit/commit/fc80119c3c709288d231603c5157b8078151520d) Thanks [@tomiir](https://github.com/tomiir)! - Fixes issue with WC connections on wallets that do not support a requested network. Sets default network to first one supported by wallet
|
|
33
|
+
|
|
34
|
+
- [#3493](https://github.com/reown-com/appkit/pull/3493) [`0735f15`](https://github.com/reown-com/appkit/commit/0735f15c65b5de397dd856004f197f2ec07538f9) Thanks [@tomiir](https://github.com/tomiir)! - Fixes issue where walletInfo would be undefined or empty
|
|
35
|
+
|
|
36
|
+
- [#3541](https://github.com/reown-com/appkit/pull/3541) [`fc80119`](https://github.com/reown-com/appkit/commit/fc80119c3c709288d231603c5157b8078151520d) Thanks [@tomiir](https://github.com/tomiir)! - Improves existing connection error handling'
|
|
37
|
+
|
|
38
|
+
- [#3534](https://github.com/reown-com/appkit/pull/3534) [`e946c97`](https://github.com/reown-com/appkit/commit/e946c977fcc6e1282f05d35955004fc391f3f354) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where disconnecting the injected wallet did not update the state as disconnected for ethers/ethers5 adapters
|
|
39
|
+
|
|
40
|
+
- [#3531](https://github.com/reown-com/appkit/pull/3531) [`aa24c91`](https://github.com/reown-com/appkit/commit/aa24c918f7c3f285b20d44c81a5d224743bcb4ed) Thanks [@tomiir](https://github.com/tomiir)! - Adds loading while disconnecting
|
|
41
|
+
|
|
42
|
+
- [#3535](https://github.com/reown-com/appkit/pull/3535) [`e6fc980`](https://github.com/reown-com/appkit/commit/e6fc9800039984e3150c38a4c4cbd7214d07742c) Thanks [@tomiir](https://github.com/tomiir)! - Fixes issue where refreshing the page when connected to multiple namespaces would only reconnect the last active one
|
|
43
|
+
|
|
44
|
+
- [#3494](https://github.com/reown-com/appkit/pull/3494) [`d3ecccb`](https://github.com/reown-com/appkit/commit/d3ecccbbde0d40a27f2b261a3d99b15ab83149da) Thanks [@tomiir](https://github.com/tomiir)! - Prevents blockchain api calls on testnets
|
|
45
|
+
|
|
46
|
+
- [#3537](https://github.com/reown-com/appkit/pull/3537) [`7e19dae`](https://github.com/reown-com/appkit/commit/7e19daeaf93c48338f1f7b5dc5de5a271ae8f643) Thanks [@enesozturk](https://github.com/enesozturk)! - Fixes Vue hooks to return reactive values
|
|
47
|
+
|
|
48
|
+
- [#3533](https://github.com/reown-com/appkit/pull/3533) [`af58b49`](https://github.com/reown-com/appkit/commit/af58b49dda0ebdbdc76a5859692e5df46f6ca86a) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where an incorrect EOA label and icon were displayed in the profile view after reconnecting through social/email login
|
|
49
|
+
|
|
50
|
+
- [#3521](https://github.com/reown-com/appkit/pull/3521) [`60c1715`](https://github.com/reown-com/appkit/commit/60c17150bb29765bfc88e0f522484e59c3bdd1fe) Thanks [@zoruka](https://github.com/zoruka)! - Set connected wallet info when going to authenticate flow.
|
|
51
|
+
|
|
52
|
+
- [#3549](https://github.com/reown-com/appkit/pull/3549) [`4d25c1d`](https://github.com/reown-com/appkit/commit/4d25c1d7986a2b9b0128d3c250e750c60b619cc0) Thanks [@tomiir](https://github.com/tomiir)! - Updates @solana/web3.js dependency to latest
|
|
53
|
+
|
|
54
|
+
- [#3512](https://github.com/reown-com/appkit/pull/3512) [`7459461`](https://github.com/reown-com/appkit/commit/7459461eed6786a17c251c40aab153572ecda45f) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where profile name and profile image was not displayed after connecting via social or email login
|
|
55
|
+
|
|
3
56
|
## 1.6.2
|
|
4
57
|
|
|
5
58
|
### Patch Changes
|