@dynamic-labs/ethereum 0.19.0-alpha.16 → 0.19.0-alpha.17

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
+ ## [0.19.0-alpha.17](https://github.com/dynamic-labs/DynamicAuth/compare/v0.19.0-alpha.16...v0.19.0-alpha.17) (2023-10-19)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * memoize createEmbeddedWallet so sync passkey is not called multiple times ([#3612](https://github.com/dynamic-labs/DynamicAuth/issues/3612)) ([11d53e9](https://github.com/dynamic-labs/DynamicAuth/commit/11d53e9bf3e7c4ceb4be7dede96e6facd07a6767))
8
+ * revert any changes of the form of the wallet connector key ([#3608](https://github.com/dynamic-labs/DynamicAuth/issues/3608)) ([f0e2a89](https://github.com/dynamic-labs/DynamicAuth/commit/f0e2a8988047e7533cbfc52eee06d6752c5aa9c4))
9
+
2
10
  ## [0.19.0-alpha.16](https://github.com/dynamic-labs/DynamicAuth/compare/v0.19.0-alpha.15...v0.19.0-alpha.16) (2023-10-17)
3
11
 
4
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/ethereum",
3
- "version": "0.19.0-alpha.16",
3
+ "version": "0.19.0-alpha.17",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/dynamic-labs/DynamicAuth.git",
@@ -31,11 +31,11 @@
31
31
  "@walletconnect/universal-provider": "2.10.1",
32
32
  "eventemitter3": "5.0.1",
33
33
  "buffer": "6.0.3",
34
- "@dynamic-labs/rpc-providers": "0.19.0-alpha.16",
35
- "@dynamic-labs/types": "0.19.0-alpha.16",
36
- "@dynamic-labs/utils": "0.19.0-alpha.16",
37
- "@dynamic-labs/wallet-book": "0.19.0-alpha.16",
38
- "@dynamic-labs/wallet-connector-core": "0.19.0-alpha.16",
34
+ "@dynamic-labs/rpc-providers": "0.19.0-alpha.17",
35
+ "@dynamic-labs/types": "0.19.0-alpha.17",
36
+ "@dynamic-labs/utils": "0.19.0-alpha.17",
37
+ "@dynamic-labs/wallet-book": "0.19.0-alpha.17",
38
+ "@dynamic-labs/wallet-connector-core": "0.19.0-alpha.17",
39
39
  "stream": "0.0.2"
40
40
  },
41
41
  "peerDependencies": {
@@ -23,7 +23,8 @@ const fetchInjectedWalletConnector = ({ walletBook, }) => {
23
23
  this.name = name;
24
24
  this.wallet = wallet;
25
25
  this.walletConnectorFallback = walletConnectorFallback;
26
- this.overrideKey = `${key}__evm`;
26
+ // this is the key from the wallet book entry so that we don't purely rely on the normalized name
27
+ this.overrideKey = key;
27
28
  }
28
29
  };
29
30
  });
@@ -19,7 +19,8 @@ const fetchInjectedWalletConnector = ({ walletBook, }) => {
19
19
  this.name = name;
20
20
  this.wallet = wallet;
21
21
  this.walletConnectorFallback = walletConnectorFallback;
22
- this.overrideKey = `${key}__evm`;
22
+ // this is the key from the wallet book entry so that we don't purely rely on the normalized name
23
+ this.overrideKey = key;
23
24
  }
24
25
  };
25
26
  });