@dynamic-labs/embedded-wallet 4.10.2 → 4.10.3
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
|
+
### [4.10.3](https://github.com/dynamic-labs/dynamic-auth/compare/v4.10.2...v4.10.3) (2025-04-04)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* dark mode vars ([#8456](https://github.com/dynamic-labs/dynamic-auth/issues/8456)) ([26c8a28](https://github.com/dynamic-labs/dynamic-auth/commit/26c8a289d151b79c73726ddf00048d83ff8d5098))
|
|
8
|
+
* onramp options override ([#8335](https://github.com/dynamic-labs/dynamic-auth/issues/8335)) ([731af19](https://github.com/dynamic-labs/dynamic-auth/commit/731af199df5c7743be8d7502dd7c6155a7d68128))
|
|
9
|
+
|
|
2
10
|
### [4.10.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.10.1...v4.10.2) (2025-04-02)
|
|
3
11
|
|
|
4
12
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/embedded-wallet",
|
|
3
|
-
"version": "4.10.
|
|
3
|
+
"version": "4.10.3",
|
|
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",
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"@turnkey/http": "2.15.0",
|
|
24
24
|
"@turnkey/iframe-stamper": "2.0.0",
|
|
25
25
|
"@turnkey/webauthn-stamper": "0.5.0",
|
|
26
|
-
"@dynamic-labs/assert-package-version": "4.10.
|
|
27
|
-
"@dynamic-labs/logger": "4.10.
|
|
28
|
-
"@dynamic-labs/utils": "4.10.
|
|
29
|
-
"@dynamic-labs/wallet-book": "4.10.
|
|
30
|
-
"@dynamic-labs/wallet-connector-core": "4.10.
|
|
31
|
-
"@dynamic-labs/webauthn": "4.10.
|
|
26
|
+
"@dynamic-labs/assert-package-version": "4.10.3",
|
|
27
|
+
"@dynamic-labs/logger": "4.10.3",
|
|
28
|
+
"@dynamic-labs/utils": "4.10.3",
|
|
29
|
+
"@dynamic-labs/wallet-book": "4.10.3",
|
|
30
|
+
"@dynamic-labs/wallet-connector-core": "4.10.3",
|
|
31
|
+
"@dynamic-labs/webauthn": "4.10.3"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {}
|
|
34
34
|
}
|
|
@@ -208,6 +208,7 @@ class TurnkeyWalletConnectorBase extends walletConnectorCore.WalletConnectorBase
|
|
|
208
208
|
return sessionKeys.publicKey;
|
|
209
209
|
}
|
|
210
210
|
catch (error) {
|
|
211
|
+
logger.logger.error(error);
|
|
211
212
|
throw new utils.DynamicError('Failed to create or restore session');
|
|
212
213
|
}
|
|
213
214
|
finally {
|