@dynamic-labs/ethereum 2.2.0 → 2.2.1

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 CHANGED
@@ -1,4 +1,12 @@
1
1
 
2
+ ### [2.2.1](https://github.com/dynamic-labs/DynamicAuth/compare/v2.2.0...v2.2.1) (2024-06-17)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * improve handling of bitcoin connected accounts ([#6049](https://github.com/dynamic-labs/DynamicAuth/issues/6049)) ([08cb8ba](https://github.com/dynamic-labs/DynamicAuth/commit/08cb8bae2b1521367234cbe2bb55a8c3766df3c1))
8
+ * improve wagmi hooks with embedded wallets ([#6044](https://github.com/dynamic-labs/DynamicAuth/issues/6044)) ([#6052](https://github.com/dynamic-labs/DynamicAuth/issues/6052)) ([28654e8](https://github.com/dynamic-labs/DynamicAuth/commit/28654e8a45b25c4fc3bb3abfa89b453808a55053))
9
+
2
10
  ## [2.2.0](https://github.com/dynamic-labs/DynamicAuth/compare/v2.1.5...v2.2.0) (2024-06-16)
3
11
 
4
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/ethereum",
3
- "version": "2.2.0",
3
+ "version": "2.2.1",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/dynamic-labs/dynamic-auth.git",
@@ -31,13 +31,13 @@
31
31
  "@walletconnect/ethereum-provider": "2.11.2",
32
32
  "eventemitter3": "5.0.1",
33
33
  "buffer": "6.0.3",
34
- "@dynamic-labs/rpc-provider-ethereum": "2.2.0",
35
- "@dynamic-labs/turnkey": "2.2.0",
36
- "@dynamic-labs/types": "2.2.0",
37
- "@dynamic-labs/utils": "2.2.0",
38
- "@dynamic-labs/viem-utils": "2.2.0",
39
- "@dynamic-labs/wallet-book": "2.2.0",
40
- "@dynamic-labs/wallet-connector-core": "2.2.0",
34
+ "@dynamic-labs/rpc-provider-ethereum": "2.2.1",
35
+ "@dynamic-labs/turnkey": "2.2.1",
36
+ "@dynamic-labs/types": "2.2.1",
37
+ "@dynamic-labs/utils": "2.2.1",
38
+ "@dynamic-labs/viem-utils": "2.2.1",
39
+ "@dynamic-labs/wallet-book": "2.2.1",
40
+ "@dynamic-labs/wallet-connector-core": "2.2.1",
41
41
  "stream": "0.0.2"
42
42
  },
43
43
  "peerDependencies": {
@@ -123,7 +123,7 @@ class EthWalletConnector extends walletConnectorCore.WalletConnectorBase {
123
123
  return [];
124
124
  const addresses = yield utils.retryableFn(provider.getAddresses, {
125
125
  fallbackValue: [],
126
- timeoutMs: 300,
126
+ timeoutMs: 500,
127
127
  });
128
128
  if (addresses.length) {
129
129
  this.setActiveAccount(addresses[0]);
@@ -119,7 +119,7 @@ class EthWalletConnector extends WalletConnectorBase {
119
119
  return [];
120
120
  const addresses = yield retryableFn(provider.getAddresses, {
121
121
  fallbackValue: [],
122
- timeoutMs: 300,
122
+ timeoutMs: 500,
123
123
  });
124
124
  if (addresses.length) {
125
125
  this.setActiveAccount(addresses[0]);