@dynamic-labs/ethereum 4.76.0 → 4.77.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,28 @@
1
1
 
2
+ ### [4.77.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.77.0...v4.77.1) (2026-04-10)
3
+
4
+ ### Bug Fixes
5
+
6
+
7
+ * fixing BTC wallet creation in the webview
8
+
9
+ ## [4.77.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.76.0...v4.77.0) (2026-04-10)
10
+
11
+
12
+ ### Features
13
+
14
+ * **midnight:** add types and chain constants ([#10851](https://github.com/dynamic-labs/dynamic-auth/issues/10851)) ([91620d2](https://github.com/dynamic-labs/dynamic-auth/commit/91620d21596c525d8d51ddb0c0ba7df456e3eb64))
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * issue when linking new wallet via qr code when there's no active session ([#10878](https://github.com/dynamic-labs/dynamic-auth/issues/10878)) ([53cbae0](https://github.com/dynamic-labs/dynamic-auth/commit/53cbae0806665371e9214663e72e2f1fb7e1ac3f))
20
+ * **lint-staged:** exclude Playwright specs from jest pre-commit hook [DYNT-496] ([#10880](https://github.com/dynamic-labs/dynamic-auth/issues/10880)) ([d3c8a9a](https://github.com/dynamic-labs/dynamic-auth/commit/d3c8a9a59c855bb834dcedf2e18a2bd0eabcb420))
21
+ * **react-core:** exclude password setup cancellations from wallet creation failure metrics ([#10868](https://github.com/dynamic-labs/dynamic-auth/issues/10868)) ([685de16](https://github.com/dynamic-labs/dynamic-auth/commit/685de16f004f282e1b24114c3a18d8c02b7e48aa))
22
+ * **react-native:** adds eip7702 authorization ([#10904](https://github.com/dynamic-labs/dynamic-auth/issues/10904)) ([fa3e41f](https://github.com/dynamic-labs/dynamic-auth/commit/fa3e41f18aeca309c199003781e569bb425dda5d))
23
+ * **react-native:** remove crypto dependency ([#10871](https://github.com/dynamic-labs/dynamic-auth/issues/10871)) ([de4faa5](https://github.com/dynamic-labs/dynamic-auth/commit/de4faa5bd8bbb8fc321ed65f8b6ccfbaff1d00d3))
24
+ * **react-native:** unify session storage ([#10870](https://github.com/dynamic-labs/dynamic-auth/issues/10870)) ([0536ea0](https://github.com/dynamic-labs/dynamic-auth/commit/0536ea0a78f69b9952b21eec38b4868276215b46))
25
+
2
26
  ## [4.76.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.75.0...v4.76.0) (2026-04-06)
3
27
 
4
28
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.76.0";
6
+ var version = "4.77.1";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.76.0";
2
+ var version = "4.77.1";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/ethereum",
3
- "version": "4.76.0",
3
+ "version": "4.77.1",
4
4
  "description": "A React SDK for implementing wallet web3 authentication and authorization to your website.",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -24,16 +24,16 @@
24
24
  "eventemitter3": "5.0.1",
25
25
  "buffer": "6.0.3",
26
26
  "@metamask/sdk": "0.33.0",
27
- "@dynamic-labs/assert-package-version": "4.76.0",
28
- "@dynamic-labs/embedded-wallet-evm": "4.76.0",
29
- "@dynamic-labs/ethereum-core": "4.76.0",
30
- "@dynamic-labs/logger": "4.76.0",
31
- "@dynamic-labs/rpc-providers": "4.76.0",
32
- "@dynamic-labs/types": "4.76.0",
33
- "@dynamic-labs/utils": "4.76.0",
34
- "@dynamic-labs/waas-evm": "4.76.0",
35
- "@dynamic-labs/wallet-book": "4.76.0",
36
- "@dynamic-labs/wallet-connector-core": "4.76.0"
27
+ "@dynamic-labs/assert-package-version": "4.77.1",
28
+ "@dynamic-labs/embedded-wallet-evm": "4.77.1",
29
+ "@dynamic-labs/ethereum-core": "4.77.1",
30
+ "@dynamic-labs/logger": "4.77.1",
31
+ "@dynamic-labs/rpc-providers": "4.77.1",
32
+ "@dynamic-labs/types": "4.77.1",
33
+ "@dynamic-labs/utils": "4.77.1",
34
+ "@dynamic-labs/waas-evm": "4.77.1",
35
+ "@dynamic-labs/wallet-book": "4.77.1",
36
+ "@dynamic-labs/wallet-connector-core": "4.77.1"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "viem": "^2.45.3"
@@ -169,8 +169,8 @@ class MetaMaskConnector extends InjectedWalletBase.InjectedWalletBase {
169
169
  }
170
170
  try {
171
171
  logger.logger.logVerboseTroubleshootingMessage('[MetaMaskConnector] getAddress - connecting to metaMask');
172
- yield this.metaMaskSDK.connect();
173
- logger.logger.logVerboseTroubleshootingMessage('[MetaMaskConnector] getAddress - connected to metaMask');
172
+ const response = yield this.metaMaskSDK.connect();
173
+ logger.logger.logVerboseTroubleshootingMessage('[MetaMaskConnector] getAddress - connected to metaMask', { response });
174
174
  }
175
175
  catch (error) {
176
176
  logger.logger.logVerboseTroubleshootingMessage('[MetaMaskConnector] getAddress - error connecting to metaMask', { error });
@@ -165,8 +165,8 @@ class MetaMaskConnector extends InjectedWalletBase {
165
165
  }
166
166
  try {
167
167
  logger.logVerboseTroubleshootingMessage('[MetaMaskConnector] getAddress - connecting to metaMask');
168
- yield this.metaMaskSDK.connect();
169
- logger.logVerboseTroubleshootingMessage('[MetaMaskConnector] getAddress - connected to metaMask');
168
+ const response = yield this.metaMaskSDK.connect();
169
+ logger.logVerboseTroubleshootingMessage('[MetaMaskConnector] getAddress - connected to metaMask', { response });
170
170
  }
171
171
  catch (error) {
172
172
  logger.logVerboseTroubleshootingMessage('[MetaMaskConnector] getAddress - error connecting to metaMask', { error });