@dynamic-labs/wallet-connector-core 4.58.0 → 4.59.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,29 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.59.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.59.0...v4.59.1) (2026-01-30)
|
|
3
|
+
|
|
4
|
+
This was a version bump only, there were no code changes.
|
|
5
|
+
|
|
6
|
+
## [4.59.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.58.1...v4.59.0) (2026-01-30)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* add password requirement to auto-create wallet flow ([#10324](https://github.com/dynamic-labs/dynamic-auth/issues/10324)) ([f81162d](https://github.com/dynamic-labs/dynamic-auth/commit/f81162dfb8607580192d0683ed6ecb82481d97fd))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* ensure useReinitialize will load state from local storage ([#10312](https://github.com/dynamic-labs/dynamic-auth/issues/10312)) ([647ac6c](https://github.com/dynamic-labs/dynamic-auth/commit/647ac6c35a7a3a747897943b4667d63e57968227))
|
|
17
|
+
|
|
18
|
+
### [4.58.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.58.0...v4.58.1) (2026-01-29)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* fix ZeroDev multi-wallet switching issue ([#10293](https://github.com/dynamic-labs/dynamic-auth/issues/10293)) ([f3ef7ea](https://github.com/dynamic-labs/dynamic-auth/commit/f3ef7ea5790a70304ef697a04417fdbcc043a620))
|
|
24
|
+
* allow the web-extension to be recreated ([#10318](https://github.com/dynamic-labs/dynamic-auth/issues/10318)) ([3ad3ddb](https://github.com/dynamic-labs/dynamic-auth/commit/3ad3ddbfe80297889679f28679e25bb20d492c22))
|
|
25
|
+
* patch critical vuln for @remix-run/node ([#10322](https://github.com/dynamic-labs/dynamic-auth/issues/10322)) ([a83a102](https://github.com/dynamic-labs/dynamic-auth/commit/a83a1025e992f8d04f0f9e3b3b3878ba6010ceb5))
|
|
26
|
+
|
|
2
27
|
## [4.58.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.57.2...v4.58.0) (2026-01-28)
|
|
3
28
|
|
|
4
29
|
|
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.
|
|
3
|
+
"version": "4.59.1",
|
|
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",
|
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@dynamic-labs/sdk-api-core": "0.0.860",
|
|
22
22
|
"@dynamic-labs-wallet/browser-wallet-client": "0.0.254",
|
|
23
|
-
"@dynamic-labs/assert-package-version": "4.
|
|
24
|
-
"@dynamic-labs/logger": "4.
|
|
25
|
-
"@dynamic-labs/rpc-providers": "4.
|
|
26
|
-
"@dynamic-labs/types": "4.
|
|
27
|
-
"@dynamic-labs/utils": "4.
|
|
28
|
-
"@dynamic-labs/wallet-book": "4.
|
|
23
|
+
"@dynamic-labs/assert-package-version": "4.59.1",
|
|
24
|
+
"@dynamic-labs/logger": "4.59.1",
|
|
25
|
+
"@dynamic-labs/rpc-providers": "4.59.1",
|
|
26
|
+
"@dynamic-labs/types": "4.59.1",
|
|
27
|
+
"@dynamic-labs/utils": "4.59.1",
|
|
28
|
+
"@dynamic-labs/wallet-book": "4.59.1",
|
|
29
29
|
"eventemitter3": "5.0.1"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {}
|
|
@@ -431,6 +431,14 @@ class WalletConnectorBase extends EventEmitter__default["default"] {
|
|
|
431
431
|
});
|
|
432
432
|
});
|
|
433
433
|
}
|
|
434
|
+
/**
|
|
435
|
+
* Hook called after this wallet is selected as primary.
|
|
436
|
+
* Override in subclasses to perform connector-specific setup.
|
|
437
|
+
* By default, does nothing.
|
|
438
|
+
*/
|
|
439
|
+
afterWalletSelectHook(_walletAddress) {
|
|
440
|
+
return;
|
|
441
|
+
}
|
|
434
442
|
/**
|
|
435
443
|
* Validates if the address is connected and active in the wallet app
|
|
436
444
|
*
|
|
@@ -354,6 +354,12 @@ export declare abstract class WalletConnectorBase<C extends WalletConstructor<an
|
|
|
354
354
|
activeAddress?: string;
|
|
355
355
|
reconnectedAddress?: string;
|
|
356
356
|
}): Promise<void>;
|
|
357
|
+
/**
|
|
358
|
+
* Hook called after this wallet is selected as primary.
|
|
359
|
+
* Override in subclasses to perform connector-specific setup.
|
|
360
|
+
* By default, does nothing.
|
|
361
|
+
*/
|
|
362
|
+
afterWalletSelectHook(_walletAddress: string): void | Promise<void>;
|
|
357
363
|
/**
|
|
358
364
|
* Validates if the address is connected and active in the wallet app
|
|
359
365
|
*
|
|
@@ -423,6 +423,14 @@ class WalletConnectorBase extends EventEmitter {
|
|
|
423
423
|
});
|
|
424
424
|
});
|
|
425
425
|
}
|
|
426
|
+
/**
|
|
427
|
+
* Hook called after this wallet is selected as primary.
|
|
428
|
+
* Override in subclasses to perform connector-specific setup.
|
|
429
|
+
* By default, does nothing.
|
|
430
|
+
*/
|
|
431
|
+
afterWalletSelectHook(_walletAddress) {
|
|
432
|
+
return;
|
|
433
|
+
}
|
|
426
434
|
/**
|
|
427
435
|
* Validates if the address is connected and active in the wallet app
|
|
428
436
|
*
|