@dynamic-labs/wallet-connector-core 4.8.4 → 4.8.5

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,17 @@
1
1
 
2
+ ### [4.8.5](https://github.com/dynamic-labs/dynamic-auth/compare/v4.8.4...v4.8.5) (2025-03-06)
3
+
4
+
5
+ ### Features
6
+
7
+ * evm connector can sign arbitrary transactions ([#8217](https://github.com/dynamic-labs/dynamic-auth/issues/8217)) ([c5b227c](https://github.com/dynamic-labs/dynamic-auth/commit/c5b227c5a5d527f3fc74b8c1c9d0247eaf35a016))
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * optimize shadow dom re-renders ([#8193](https://github.com/dynamic-labs/dynamic-auth/issues/8193)) ([c97310c](https://github.com/dynamic-labs/dynamic-auth/commit/c97310c9f3eb73b9f69b0b48a79e6bbd93d2e94a))
13
+ * show multichain wallets with zerodev ([#8220](https://github.com/dynamic-labs/dynamic-auth/issues/8220)) ([a48689d](https://github.com/dynamic-labs/dynamic-auth/commit/a48689da1303512551bdf8114de45493d33221a3))
14
+
2
15
  ### [4.8.4](https://github.com/dynamic-labs/dynamic-auth/compare/v4.8.3...v4.8.4) (2025-03-05)
3
16
 
4
17
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.8.4";
6
+ var version = "4.8.5";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.8.4";
2
+ var version = "4.8.5";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/wallet-connector-core",
3
- "version": "4.8.4",
3
+ "version": "4.8.5",
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.638",
22
- "@dynamic-labs/assert-package-version": "4.8.4",
23
- "@dynamic-labs/logger": "4.8.4",
24
- "@dynamic-labs/rpc-providers": "4.8.4",
25
- "@dynamic-labs/types": "4.8.4",
26
- "@dynamic-labs/utils": "4.8.4",
27
- "@dynamic-labs/wallet-book": "4.8.4",
22
+ "@dynamic-labs/assert-package-version": "4.8.5",
23
+ "@dynamic-labs/logger": "4.8.5",
24
+ "@dynamic-labs/rpc-providers": "4.8.5",
25
+ "@dynamic-labs/types": "4.8.5",
26
+ "@dynamic-labs/utils": "4.8.5",
27
+ "@dynamic-labs/wallet-book": "4.8.5",
28
28
  "eventemitter3": "5.0.1"
29
29
  },
30
30
  "peerDependencies": {}
@@ -28,6 +28,14 @@ export type WalletConnectorEvents = {
28
28
  * It contains the constructor of the wallet connector that was injected
29
29
  */
30
30
  providerInjected: (props: ProviderInjectedEventProps) => void;
31
+ /**
32
+ * This is emitted when the wallet connector starts to initialize
33
+ */
34
+ connectorInitStarted: (key: string) => void;
35
+ /**
36
+ * This is emitted when the wallet connector has completed initializing
37
+ */
38
+ connectorInitCompleted: (key: string) => void;
31
39
  };
32
40
  export declare const walletConnectorEvents: EventEmitter<WalletConnectorEvents, any>;
33
41
  export type WalletConnectorEventEmitter = typeof walletConnectorEvents;