@reown/appkit-cli 1.6.1 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +37 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,42 @@
1
1
  # @reown/appkit-cli
2
2
 
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
+
3
40
  ## 1.6.1
4
41
 
5
42
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reown/appkit-cli",
3
- "version": "1.6.1",
3
+ "version": "1.6.2",
4
4
  "description": "Reown AppKit CLI",
5
5
  "main": "index.js",
6
6
  "type": "module",