@dynamic-labs/embedded-wallet 4.0.0-alpha.0 → 4.0.0-alpha.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,20 @@
|
|
|
1
1
|
|
|
2
|
+
## [4.0.0-alpha.1](https://github.com/dynamic-labs/DynamicAuth/compare/v4.0.0-alpha.0...v4.0.0-alpha.1) (2024-09-17)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* blockaid website scanning for global connectivity ([#6874](https://github.com/dynamic-labs/DynamicAuth/issues/6874)) ([f8cbabd](https://github.com/dynamic-labs/DynamicAuth/commit/f8cbabd92fd4b5b096f47ff8e24c572ad7720dd8))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* deeplinking on ethereum and bitcoin sats connector ([#6917](https://github.com/dynamic-labs/DynamicAuth/issues/6917)) ([3896c3a](https://github.com/dynamic-labs/DynamicAuth/commit/3896c3a97819459da74dc5b4771796d7991c1f07))
|
|
13
|
+
* emit walletAdded event when createEmbeddedWalletAccount called ([#6922](https://github.com/dynamic-labs/DynamicAuth/issues/6922)) ([2a8bdd6](https://github.com/dynamic-labs/DynamicAuth/commit/2a8bdd68c50efd946c6f9b398dfae2b3585db34f))
|
|
14
|
+
* interface for sendBitcoin on unisat ([37a1bc2](https://github.com/dynamic-labs/DynamicAuth/commit/37a1bc216f43eef817c40e23b9161327f9d29c59))
|
|
15
|
+
* remove ballet crypto and duplicate keplr entry ([#6906](https://github.com/dynamic-labs/DynamicAuth/issues/6906)) ([14aeeea](https://github.com/dynamic-labs/DynamicAuth/commit/14aeeeaa8d906344f4aeddf9e73527df346b9ea0))
|
|
16
|
+
* solana and cosmos signers not working properly ([#6898](https://github.com/dynamic-labs/DynamicAuth/issues/6898)) ([6f07981](https://github.com/dynamic-labs/DynamicAuth/commit/6f079811c0d7e45b97d2dae72f4141268ab4fe0c))
|
|
17
|
+
|
|
2
18
|
## [4.0.0-alpha.0](https://github.com/dynamic-labs/DynamicAuth/compare/v3.0.0...v4.0.0-alpha.0) (2024-09-13)
|
|
3
19
|
|
|
4
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/embedded-wallet",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.1",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/dynamic-labs/dynamic-auth.git",
|
|
@@ -26,16 +26,16 @@
|
|
|
26
26
|
"./package.json": "./package.json"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@dynamic-labs/sdk-api-core": "0.0.
|
|
29
|
+
"@dynamic-labs/sdk-api-core": "0.0.530",
|
|
30
30
|
"@turnkey/api-key-stamper": "0.4.1",
|
|
31
31
|
"@turnkey/http": "2.12.2",
|
|
32
32
|
"@turnkey/iframe-stamper": "2.0.0",
|
|
33
33
|
"@turnkey/webauthn-stamper": "0.5.0",
|
|
34
|
-
"@dynamic-labs/logger": "4.0.0-alpha.
|
|
35
|
-
"@dynamic-labs/utils": "4.0.0-alpha.
|
|
36
|
-
"@dynamic-labs/wallet-book": "4.0.0-alpha.
|
|
37
|
-
"@dynamic-labs/wallet-connector-core": "4.0.0-alpha.
|
|
38
|
-
"@dynamic-labs/webauthn": "4.0.0-alpha.
|
|
34
|
+
"@dynamic-labs/logger": "4.0.0-alpha.1",
|
|
35
|
+
"@dynamic-labs/utils": "4.0.0-alpha.1",
|
|
36
|
+
"@dynamic-labs/wallet-book": "4.0.0-alpha.1",
|
|
37
|
+
"@dynamic-labs/wallet-connector-core": "4.0.0-alpha.1",
|
|
38
|
+
"@dynamic-labs/webauthn": "4.0.0-alpha.1"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {}
|
|
41
41
|
}
|
|
@@ -25,9 +25,6 @@ class TurnkeyWalletConnectorBase extends walletConnectorCore.WalletConnectorBase
|
|
|
25
25
|
TurnkeyWalletConnectorBase.sessionKeys = undefined;
|
|
26
26
|
TurnkeyWalletConnectorBase.apiKeyStamper = undefined;
|
|
27
27
|
ExportHandler.ExportHandler.apiKeyStamper = undefined;
|
|
28
|
-
if (typeof (this === null || this === void 0 ? void 0 : this.removeSessionKeysFunction) === 'function') {
|
|
29
|
-
this.removeSessionKeysFunction();
|
|
30
|
-
}
|
|
31
28
|
});
|
|
32
29
|
if (!props.appName) {
|
|
33
30
|
throw new Error('appName not set');
|
|
@@ -21,9 +21,6 @@ class TurnkeyWalletConnectorBase extends WalletConnectorBase {
|
|
|
21
21
|
TurnkeyWalletConnectorBase.sessionKeys = undefined;
|
|
22
22
|
TurnkeyWalletConnectorBase.apiKeyStamper = undefined;
|
|
23
23
|
ExportHandler.apiKeyStamper = undefined;
|
|
24
|
-
if (typeof (this === null || this === void 0 ? void 0 : this.removeSessionKeysFunction) === 'function') {
|
|
25
|
-
this.removeSessionKeysFunction();
|
|
26
|
-
}
|
|
27
24
|
});
|
|
28
25
|
if (!props.appName) {
|
|
29
26
|
throw new Error('appName not set');
|