@dynamic-labs/wallet-connector-core 4.8.2-preview.0 → 4.8.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,19 +1,22 @@
1
1
 
2
- ### [4.8.2-preview.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.8.1...v4.8.2-preview.0) (2025-02-28)
2
+ ### [4.8.3](https://github.com/dynamic-labs/dynamic-auth/compare/v4.8.2...v4.8.3) (2025-03-04)
3
+
4
+
5
+ ### [4.8.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.8.1...v4.8.2) (2025-03-01)
3
6
 
4
7
 
5
8
  ### Features
6
9
 
7
10
  * add disconnect to wallet action in connect only ([#8152](https://github.com/dynamic-labs/dynamic-auth/issues/8152)) ([4f8fa26](https://github.com/dynamic-labs/dynamic-auth/commit/4f8fa26c293aa249e697cc6494463b3bb545251a))
11
+ * add dynamic waas evm connector ([#8167](https://github.com/dynamic-labs/dynamic-auth/issues/8167)) ([b51c0ae](https://github.com/dynamic-labs/dynamic-auth/commit/b51c0ae1822c9676d1923b77eb3e468aebe275e6))
8
12
  * support for onramp options via function, and default support for coinbase ([#8139](https://github.com/dynamic-labs/dynamic-auth/issues/8139)) ([f4dee01](https://github.com/dynamic-labs/dynamic-auth/commit/f4dee0175512de7a15928c577a20cc620863c282))
13
+ * upgrade [@solana](https://github.com/solana) libs ([#8180](https://github.com/dynamic-labs/dynamic-auth/issues/8180)) ([7c7f51e](https://github.com/dynamic-labs/dynamic-auth/commit/7c7f51ec5a29f8d9e4f860eb21d60666f6e6b9a2))
9
14
 
10
15
 
11
16
  ### Bug Fixes
12
17
 
13
- * embedded widget race condition that would show both embedded and non-embedded widgets at the same time ([4cb1686](https://github.com/dynamic-labs/dynamic-auth/commit/4cb16860cc61f6fcc074eb20ce38f848cdda31f1))
14
18
  * filter out networks without a key value when parsing coinbase onramp url ([#8158](https://github.com/dynamic-labs/dynamic-auth/issues/8158)) ([8033299](https://github.com/dynamic-labs/dynamic-auth/commit/80332991551987a29b6ea7c8f66fd373956d875b))
15
19
  * **QNTM-2927:** send users back to login on MM cancel ([#8149](https://github.com/dynamic-labs/dynamic-auth/issues/8149)) ([8e92702](https://github.com/dynamic-labs/dynamic-auth/commit/8e9270270220fc781da9c9235f86b29b9c4d2f28))
16
- * update WC re-connect view on mobile ([45c5241](https://github.com/dynamic-labs/dynamic-auth/commit/45c5241fa8d973b8ad3f8b0e85b5034e429c3c11))
17
20
 
18
21
  ### [4.8.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.8.0...v4.8.1) (2025-02-25)
19
22
 
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.2-preview.0";
6
+ var version = "4.8.3";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.8.2-preview.0";
2
+ var version = "4.8.3";
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.2-preview.0",
3
+ "version": "4.8.3",
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",
@@ -18,13 +18,13 @@
18
18
  },
19
19
  "homepage": "https://www.dynamic.xyz/",
20
20
  "dependencies": {
21
- "@dynamic-labs/sdk-api-core": "0.0.633",
22
- "@dynamic-labs/assert-package-version": "4.8.2-preview.0",
23
- "@dynamic-labs/logger": "4.8.2-preview.0",
24
- "@dynamic-labs/rpc-providers": "4.8.2-preview.0",
25
- "@dynamic-labs/types": "4.8.2-preview.0",
26
- "@dynamic-labs/utils": "4.8.2-preview.0",
27
- "@dynamic-labs/wallet-book": "4.8.2-preview.0",
21
+ "@dynamic-labs/sdk-api-core": "0.0.638",
22
+ "@dynamic-labs/assert-package-version": "4.8.3",
23
+ "@dynamic-labs/logger": "4.8.3",
24
+ "@dynamic-labs/rpc-providers": "4.8.3",
25
+ "@dynamic-labs/types": "4.8.3",
26
+ "@dynamic-labs/utils": "4.8.3",
27
+ "@dynamic-labs/wallet-book": "4.8.3",
28
28
  "eventemitter3": "5.0.1"
29
29
  },
30
30
  "peerDependencies": {}
@@ -28,10 +28,6 @@ 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 is initialized
33
- */
34
- walletConnectInitialized: () => void;
35
31
  };
36
32
  export declare const walletConnectorEvents: EventEmitter<WalletConnectorEvents, any>;
37
33
  export type WalletConnectorEventEmitter = typeof walletConnectorEvents;