@dynamic-labs/wallet-connector-core 5.2.0 → 5.3.0

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,23 @@
1
1
 
2
+ ## [5.3.0](https://github.com/dynamic-labs/dynamic-auth/compare/v5.2.0...v5.3.0) (2026-08-12)
3
+
4
+
5
+ ### Features
6
+
7
+ * **screening:** add transaction-screening service, types, and connector wiring (DYNT-1663) ([#12160](https://github.com/dynamic-labs/dynamic-auth/issues/12160)) ([d8df6a1](https://github.com/dynamic-labs/dynamic-auth/commit/d8df6a1fccbb6370c140454d9297eabd97699e35)), closes [#12172](https://github.com/dynamic-labs/dynamic-auth/issues/12172) [#12167](https://github.com/dynamic-labs/dynamic-auth/issues/12167) [#12168](https://github.com/dynamic-labs/dynamic-auth/issues/12168) [#12169](https://github.com/dynamic-labs/dynamic-auth/issues/12169)
8
+ * **screening:** screen Bitcoin connected-wallet transactions (DYNT-1663) ([#12169](https://github.com/dynamic-labs/dynamic-auth/issues/12169)) ([f34d1c3](https://github.com/dynamic-labs/dynamic-auth/commit/f34d1c31fe10d0cb02b4f7462dd4900d0256604a))
9
+ * **screening:** screen EVM connected-wallet sends (DYNT-1663) ([#12167](https://github.com/dynamic-labs/dynamic-auth/issues/12167)) ([1b72b24](https://github.com/dynamic-labs/dynamic-auth/commit/1b72b24393a49153d74ce715a44d262e8e48ddc7))
10
+ * **screening:** screen Solana connected-wallet transactions (DYNT-1663) ([#12168](https://github.com/dynamic-labs/dynamic-auth/issues/12168)) ([000eb18](https://github.com/dynamic-labs/dynamic-auth/commit/000eb180aca8349804953ff7738c0ba984a2fa21))
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * add PhoneNumberAlreadyLinkedError and map duplicate-phone backend code ([#12145](https://github.com/dynamic-labs/dynamic-auth/issues/12145)) ([9d13b5f](https://github.com/dynamic-labs/dynamic-auth/commit/9d13b5f8b22716b4c9ce206ee870aab5bd745b8b))
16
+ * **react-native-extension:** throw clear error when react-native-keychain native module is missing ([#12197](https://github.com/dynamic-labs/dynamic-auth/issues/12197)) ([b9983e1](https://github.com/dynamic-labs/dynamic-auth/commit/b9983e1f1aefa9a9bbdc1435f706a05e64f34f1c))
17
+ * security updates ([#12187](https://github.com/dynamic-labs/dynamic-auth/issues/12187)) ([d3a31e2](https://github.com/dynamic-labs/dynamic-auth/commit/d3a31e23533b6b7739851a3b747d62ba13d318b2))
18
+ * security updates ([#12208](https://github.com/dynamic-labs/dynamic-auth/issues/12208)) ([9e9472a](https://github.com/dynamic-labs/dynamic-auth/commit/9e9472acfbe01f7ac9e160829cc10e53c65f91e7))
19
+ * **sdk-react-core:** avoid spurious WaaS client rebuild on transient user sessionId churn ([#12182](https://github.com/dynamic-labs/dynamic-auth/issues/12182)) ([480b2ec](https://github.com/dynamic-labs/dynamic-auth/commit/480b2ecc87486a852e75e8814a76fb59ffe40c5d))
20
+
2
21
  ## [5.2.0](https://github.com/dynamic-labs/dynamic-auth/compare/v5.1.0...v5.2.0) (2026-08-06)
3
22
 
4
23
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "5.2.0";
6
+ var version = "5.3.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "5.2.0";
2
+ var version = "5.3.0";
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": "5.2.0",
3
+ "version": "5.3.0",
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,16 +18,16 @@
18
18
  },
19
19
  "homepage": "https://www.dynamic.xyz/",
20
20
  "dependencies": {
21
- "@dynamic-labs-sdk/client": "1.25.0",
22
- "@dynamic-labs/sdk-api-core": "0.0.1093",
21
+ "@dynamic-labs-sdk/client": "1.27.1",
22
+ "@dynamic-labs/sdk-api-core": "0.0.1118",
23
23
  "@dynamic-labs-wallet/browser-wallet-client": "1.0.92",
24
24
  "@dynamic-labs-wallet/forward-mpc-client": "1.0.1",
25
- "@dynamic-labs/assert-package-version": "5.2.0",
26
- "@dynamic-labs/logger": "5.2.0",
27
- "@dynamic-labs/rpc-providers": "5.2.0",
28
- "@dynamic-labs/types": "5.2.0",
29
- "@dynamic-labs/utils": "5.2.0",
30
- "@dynamic-labs/wallet-book": "5.2.0",
25
+ "@dynamic-labs/assert-package-version": "5.3.0",
26
+ "@dynamic-labs/logger": "5.3.0",
27
+ "@dynamic-labs/rpc-providers": "5.3.0",
28
+ "@dynamic-labs/types": "5.3.0",
29
+ "@dynamic-labs/utils": "5.3.0",
30
+ "@dynamic-labs/wallet-book": "5.3.0",
31
31
  "eventemitter3": "5.0.1"
32
32
  },
33
33
  "peerDependencies": {}
@@ -306,6 +306,16 @@ class WalletConnectorBase extends EventEmitter__default["default"] {
306
306
  get hasNativeToken() {
307
307
  return true;
308
308
  }
309
+ /**
310
+ * Best-effort pre-signing sanctions screening injected by the SDK layer.
311
+ * Undefined when the host app does not provide one, and for embedded
312
+ * wallets, which are screened server-side at signing instead.
313
+ */
314
+ get transactionScreening() {
315
+ if (this.isEmbeddedWallet)
316
+ return undefined;
317
+ return this.constructorProps.transactionScreening;
318
+ }
309
319
  /**
310
320
  * Check if the wallet is installed on the browser
311
321
  *
@@ -2,7 +2,7 @@ import EventEmitter from 'eventemitter3';
2
2
  import type { LogoutReason } from '@dynamic-labs-sdk/client';
3
3
  import { IChainRpcProviders } from '@dynamic-labs/rpc-providers';
4
4
  import type { JwtVerifiedCredential, WalletAdditionalAddress } from '@dynamic-labs/sdk-api-core';
5
- import { GenericNetwork, MobileExperience } from '@dynamic-labs/types';
5
+ import { GenericNetwork, MobileExperience, TransactionScreeningService } from '@dynamic-labs/types';
6
6
  import { WalletBookSchema, WalletSchema } from '@dynamic-labs/wallet-book';
7
7
  import { WalletConnectorEventEmitter } from '../events';
8
8
  import { WalletMetadata } from '../types';
@@ -241,6 +241,12 @@ export declare abstract class WalletConnectorBase<C extends WalletConstructor<an
241
241
  * @default false
242
242
  */
243
243
  isEmbeddedWallet: boolean;
244
+ /**
245
+ * Best-effort pre-signing sanctions screening injected by the SDK layer.
246
+ * Undefined when the host app does not provide one, and for embedded
247
+ * wallets, which are screened server-side at signing instead.
248
+ */
249
+ get transactionScreening(): TransactionScreeningService | undefined;
244
250
  /**
245
251
  * Check if the wallet is installed on the browser
246
252
  *
@@ -298,6 +298,16 @@ class WalletConnectorBase extends EventEmitter {
298
298
  get hasNativeToken() {
299
299
  return true;
300
300
  }
301
+ /**
302
+ * Best-effort pre-signing sanctions screening injected by the SDK layer.
303
+ * Undefined when the host app does not provide one, and for embedded
304
+ * wallets, which are screened server-side at signing instead.
305
+ */
306
+ get transactionScreening() {
307
+ if (this.isEmbeddedWallet)
308
+ return undefined;
309
+ return this.constructorProps.transactionScreening;
310
+ }
301
311
  /**
302
312
  * Check if the wallet is installed on the browser
303
313
  *