@reown/appkit-cli 1.6.1 → 1.6.3-cn-551becb.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 +49 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,54 @@
|
|
|
1
1
|
# @reown/appkit-cli
|
|
2
2
|
|
|
3
|
+
## 1.6.3-cn-551becb.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#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
|
|
8
|
+
|
|
9
|
+
- [#3527](https://github.com/reown-com/appkit/pull/3527) [`d5c1697`](https://github.com/reown-com/appkit/commit/d5c1697f8853d4536cb0a003675e36a7d51b6ed5) Thanks [@svenvoskamp](https://github.com/svenvoskamp)! - fix reload iframe after aborting farcaster
|
|
10
|
+
|
|
11
|
+
- [#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.
|
|
12
|
+
|
|
13
|
+
- [#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
|
|
14
|
+
|
|
15
|
+
## 1.6.2
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- [#3491](https://github.com/reown-com/appkit/pull/3491) [`0a8ead2`](https://github.com/reown-com/appkit/commit/0a8ead262ee0a2e0c116b1eaeb80fd5086d0298f) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where browser tab option was showing for all wallets
|
|
20
|
+
|
|
21
|
+
- [#3509](https://github.com/reown-com/appkit/pull/3509) [`0926b4d`](https://github.com/reown-com/appkit/commit/0926b4d7286ce82d58e2acd85b108f69c8823867) Thanks [@svenvoskamp](https://github.com/svenvoskamp)! - Fix issue where accounts were not correctly set
|
|
22
|
+
|
|
23
|
+
- [#3516](https://github.com/reown-com/appkit/pull/3516) [`04208c8`](https://github.com/reown-com/appkit/commit/04208c86b4b2ce6621561b121a8a620687a58728) Thanks [@zoruka](https://github.com/zoruka)! - Add unit testing for Bitcoin adapter and fix unused default values
|
|
24
|
+
|
|
25
|
+
- [#3514](https://github.com/reown-com/appkit/pull/3514) [`15bfe49`](https://github.com/reown-com/appkit/commit/15bfe4963087e3002df989f497a18a7d126c8c72) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where the `pendingTransactions` event was being emitted infinitely in wagmi adapter.
|
|
26
|
+
|
|
27
|
+
Additionally another option was added to wagmi adapter called `pendingTransactionsFilter`.
|
|
28
|
+
|
|
29
|
+
**Example usage**
|
|
30
|
+
|
|
31
|
+
```ts
|
|
32
|
+
const wagmiAdapter = new WagmiAdapter({
|
|
33
|
+
networks: [
|
|
34
|
+
/* Your Networks */
|
|
35
|
+
],
|
|
36
|
+
projectId: 'YOUR_PROJECT_ID',
|
|
37
|
+
pendingTransactionsFilter: {
|
|
38
|
+
enable: true,
|
|
39
|
+
pollingInterval: 15_000
|
|
40
|
+
}
|
|
41
|
+
})
|
|
42
|
+
|
|
43
|
+
createAppKit({
|
|
44
|
+
adapters: [wagmiAdapter],
|
|
45
|
+
networks: [
|
|
46
|
+
/* Your Networks */
|
|
47
|
+
],
|
|
48
|
+
projectId: 'YOUR_PROJECT_ID'
|
|
49
|
+
})
|
|
50
|
+
```
|
|
51
|
+
|
|
3
52
|
## 1.6.1
|
|
4
53
|
|
|
5
54
|
### Patch Changes
|