@dynamic-labs/wallet-connector-core 4.20.12 → 4.20.13
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,16 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.20.13](https://github.com/dynamic-labs/dynamic-auth/compare/v4.20.12...v4.20.13) (2025-07-02)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add createWalletClient method to ZeroDevExtension ([#9036](https://github.com/dynamic-labs/dynamic-auth/issues/9036)) ([674df45](https://github.com/dynamic-labs/dynamic-auth/commit/674df45f21e76070594963c2e3b7c19ba94e3004))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* allow to retry metamask deeplink ([#9066](https://github.com/dynamic-labs/dynamic-auth/issues/9066)) ([308c0d2](https://github.com/dynamic-labs/dynamic-auth/commit/308c0d2ddd7a5c7460f31d25365687b315b0a0f4))
|
|
13
|
+
|
|
2
14
|
### [4.20.12](https://github.com/dynamic-labs/dynamic-auth/compare/v4.20.11...v4.20.12) (2025-07-01)
|
|
3
15
|
|
|
4
16
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/wallet-connector-core",
|
|
3
|
-
"version": "4.20.
|
|
3
|
+
"version": "4.20.13",
|
|
4
4
|
"description": "Core package for utilities and types for handling multiple wallet/chain support Dynamic SDK",
|
|
5
5
|
"author": "Dynamic Labs, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -19,12 +19,12 @@
|
|
|
19
19
|
"homepage": "https://www.dynamic.xyz/",
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@dynamic-labs/sdk-api-core": "0.0.699",
|
|
22
|
-
"@dynamic-labs/assert-package-version": "4.20.
|
|
23
|
-
"@dynamic-labs/logger": "4.20.
|
|
24
|
-
"@dynamic-labs/rpc-providers": "4.20.
|
|
25
|
-
"@dynamic-labs/types": "4.20.
|
|
26
|
-
"@dynamic-labs/utils": "4.20.
|
|
27
|
-
"@dynamic-labs/wallet-book": "4.20.
|
|
22
|
+
"@dynamic-labs/assert-package-version": "4.20.13",
|
|
23
|
+
"@dynamic-labs/logger": "4.20.13",
|
|
24
|
+
"@dynamic-labs/rpc-providers": "4.20.13",
|
|
25
|
+
"@dynamic-labs/types": "4.20.13",
|
|
26
|
+
"@dynamic-labs/utils": "4.20.13",
|
|
27
|
+
"@dynamic-labs/wallet-book": "4.20.13",
|
|
28
28
|
"eventemitter3": "5.0.1"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {}
|
|
@@ -477,6 +477,20 @@ class WalletConnectorBase extends EventEmitter__default["default"] {
|
|
|
477
477
|
getEnabledNetworks() {
|
|
478
478
|
return [];
|
|
479
479
|
}
|
|
480
|
+
/**
|
|
481
|
+
* Retry the deeplink connection for mobile wallets
|
|
482
|
+
* @default Promise<void>
|
|
483
|
+
*/
|
|
484
|
+
retryDeeplinkConnection() {
|
|
485
|
+
return;
|
|
486
|
+
}
|
|
487
|
+
/**
|
|
488
|
+
* Check if retryDeeplinkConnection has been implemented by a subclass
|
|
489
|
+
*/
|
|
490
|
+
hasRetryDeeplinkConnection() {
|
|
491
|
+
return (this.retryDeeplinkConnection !==
|
|
492
|
+
WalletConnectorBase.prototype.retryDeeplinkConnection);
|
|
493
|
+
}
|
|
480
494
|
}
|
|
481
495
|
_WalletConnectorBase_registeredExtensions = new WeakMap();
|
|
482
496
|
|
|
@@ -359,4 +359,13 @@ export declare abstract class WalletConnectorBase<C extends WalletConstructor<an
|
|
|
359
359
|
* @returns {GenericNetwork[]} The enabled networks
|
|
360
360
|
*/
|
|
361
361
|
getEnabledNetworks(): GenericNetwork[];
|
|
362
|
+
/**
|
|
363
|
+
* Retry the deeplink connection for mobile wallets
|
|
364
|
+
* @default Promise<void>
|
|
365
|
+
*/
|
|
366
|
+
retryDeeplinkConnection(): void;
|
|
367
|
+
/**
|
|
368
|
+
* Check if retryDeeplinkConnection has been implemented by a subclass
|
|
369
|
+
*/
|
|
370
|
+
hasRetryDeeplinkConnection(): boolean;
|
|
362
371
|
}
|
|
@@ -469,6 +469,20 @@ class WalletConnectorBase extends EventEmitter {
|
|
|
469
469
|
getEnabledNetworks() {
|
|
470
470
|
return [];
|
|
471
471
|
}
|
|
472
|
+
/**
|
|
473
|
+
* Retry the deeplink connection for mobile wallets
|
|
474
|
+
* @default Promise<void>
|
|
475
|
+
*/
|
|
476
|
+
retryDeeplinkConnection() {
|
|
477
|
+
return;
|
|
478
|
+
}
|
|
479
|
+
/**
|
|
480
|
+
* Check if retryDeeplinkConnection has been implemented by a subclass
|
|
481
|
+
*/
|
|
482
|
+
hasRetryDeeplinkConnection() {
|
|
483
|
+
return (this.retryDeeplinkConnection !==
|
|
484
|
+
WalletConnectorBase.prototype.retryDeeplinkConnection);
|
|
485
|
+
}
|
|
472
486
|
}
|
|
473
487
|
_WalletConnectorBase_registeredExtensions = new WeakMap();
|
|
474
488
|
|