@reown/appkit-cli 1.6.1-rc.2.0 → 1.6.2
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 +40 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,43 @@
|
|
|
1
1
|
# @reown/appkit-cli
|
|
2
2
|
|
|
3
|
-
## 1.6.
|
|
3
|
+
## 1.6.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#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
|
|
8
|
+
|
|
9
|
+
- [#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
|
|
10
|
+
|
|
11
|
+
- [#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
|
|
12
|
+
|
|
13
|
+
- [#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.
|
|
14
|
+
|
|
15
|
+
Additionally another option was added to wagmi adapter called `pendingTransactionsFilter`.
|
|
16
|
+
|
|
17
|
+
**Example usage**
|
|
18
|
+
|
|
19
|
+
```ts
|
|
20
|
+
const wagmiAdapter = new WagmiAdapter({
|
|
21
|
+
networks: [
|
|
22
|
+
/* Your Networks */
|
|
23
|
+
],
|
|
24
|
+
projectId: 'YOUR_PROJECT_ID',
|
|
25
|
+
pendingTransactionsFilter: {
|
|
26
|
+
enable: true,
|
|
27
|
+
pollingInterval: 15_000
|
|
28
|
+
}
|
|
29
|
+
})
|
|
30
|
+
|
|
31
|
+
createAppKit({
|
|
32
|
+
adapters: [wagmiAdapter],
|
|
33
|
+
networks: [
|
|
34
|
+
/* Your Networks */
|
|
35
|
+
],
|
|
36
|
+
projectId: 'YOUR_PROJECT_ID'
|
|
37
|
+
})
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## 1.6.1
|
|
4
41
|
|
|
5
42
|
### Patch Changes
|
|
6
43
|
|
|
@@ -30,6 +67,8 @@
|
|
|
30
67
|
|
|
31
68
|
- [#3476](https://github.com/reown-com/appkit/pull/3476) [`ce5207f`](https://github.com/reown-com/appkit/commit/ce5207f902d3257d0780e6ae78dfe25e5a870a01) Thanks [@zoruka](https://github.com/zoruka)! - Add jsdocs comments explaining params and functions from SIWX and Bitcoin packages.
|
|
32
69
|
|
|
70
|
+
- [#3505](https://github.com/reown-com/appkit/pull/3505) [`31b87fc`](https://github.com/reown-com/appkit/commit/31b87fcc5c252f69dc35de9b1fb2ddab5b7b208d) Thanks [@tomiir](https://github.com/tomiir)! - Makes bitcoin adapter public
|
|
71
|
+
|
|
33
72
|
- [#3484](https://github.com/reown-com/appkit/pull/3484) [`6cc4cdd`](https://github.com/reown-com/appkit/commit/6cc4cdd91749693d83c5da90e19fe34979834925) Thanks [@magiziz](https://github.com/magiziz)! - Fixed an issue where Coinbase Wallet wasn't working on iOS safari
|
|
34
73
|
|
|
35
74
|
- [#3471](https://github.com/reown-com/appkit/pull/3471) [`11b3e2e`](https://github.com/reown-com/appkit/commit/11b3e2ed386eb0fa4ccc203fb6b83459a188b5d2) Thanks [@zoruka](https://github.com/zoruka)! - Clear SIWX sessions when calling ConnectionController.disconnect
|