@dynamic-labs/wallet-connector-core 4.33.0 → 4.35.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
+ ## [4.35.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.34.0...v4.35.0) (2025-10-02)
3
+
4
+
5
+ ### Features
6
+
7
+ * update Bitget wallet logo with new SVG design ([#9615](https://github.com/dynamic-labs/dynamic-auth/issues/9615)) ([3b84f92](https://github.com/dynamic-labs/dynamic-auth/commit/3b84f9237d9a85ca334576aa9e986c73c7fa5973))
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * connecting global wallets via wallet connect ([#9608](https://github.com/dynamic-labs/dynamic-auth/issues/9608)) ([7b7767d](https://github.com/dynamic-labs/dynamic-auth/commit/7b7767dc322756edfe51f935155b0af2ebc52b6e))
13
+
14
+ ## [4.34.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.33.0...v4.34.0) (2025-09-30)
15
+
16
+
17
+ ### Features
18
+
19
+ * add getMultichainBalances to react-native ([#9593](https://github.com/dynamic-labs/dynamic-auth/issues/9593)) ([2e482c3](https://github.com/dynamic-labs/dynamic-auth/commit/2e482c3a3d17e4570173c3ca6e27d83c9fac7265))
20
+
2
21
  ## [4.33.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.32.1...v4.33.0) (2025-09-26)
3
22
 
4
23
 
package/README.md CHANGED
@@ -6,6 +6,10 @@ This library was generated with [Nx](https://nx.dev).
6
6
 
7
7
  Run `nx build wallet-connector-core` to build the library.
8
8
 
9
+ ## Updating the snapshot
10
+
11
+ Run `npx nx test wallet-connector-core --updateSnapshot` to run the test suite and update the snapshot.
12
+
9
13
  ## Running unit tests
10
14
 
11
15
  Run `nx test wallet-connector-core` to execute the unit tests via [Jest](https://jestjs.io).
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.33.0";
6
+ var version = "4.35.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.33.0";
2
+ var version = "4.35.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": "4.33.0",
3
+ "version": "4.35.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,13 +18,13 @@
18
18
  },
19
19
  "homepage": "https://www.dynamic.xyz/",
20
20
  "dependencies": {
21
- "@dynamic-labs/sdk-api-core": "0.0.762",
22
- "@dynamic-labs/assert-package-version": "4.33.0",
23
- "@dynamic-labs/logger": "4.33.0",
24
- "@dynamic-labs/rpc-providers": "4.33.0",
25
- "@dynamic-labs/types": "4.33.0",
26
- "@dynamic-labs/utils": "4.33.0",
27
- "@dynamic-labs/wallet-book": "4.33.0",
21
+ "@dynamic-labs/sdk-api-core": "0.0.791",
22
+ "@dynamic-labs/assert-package-version": "4.35.0",
23
+ "@dynamic-labs/logger": "4.35.0",
24
+ "@dynamic-labs/rpc-providers": "4.35.0",
25
+ "@dynamic-labs/types": "4.35.0",
26
+ "@dynamic-labs/utils": "4.35.0",
27
+ "@dynamic-labs/wallet-book": "4.35.0",
28
28
  "eventemitter3": "5.0.1"
29
29
  },
30
30
  "peerDependencies": {}
@@ -16,6 +16,7 @@ const Chains = [
16
16
  'ECLIPSE',
17
17
  'SUI',
18
18
  'SPARK',
19
+ 'TRON',
19
20
  ];
20
21
  const socialProviders = [
21
22
  'google',
@@ -1,6 +1,6 @@
1
1
  import EventEmitter from 'eventemitter3';
2
2
  import { WalletConnectorCore } from '../types';
3
- export declare const Chains: readonly ["ETH", "FLOW", "SOL", "EVM", "ALGO", "STARK", "ATOM", "COSMOS", "BTC", "ECLIPSE", "SUI", "SPARK"];
3
+ export declare const Chains: readonly ["ETH", "FLOW", "SOL", "EVM", "ALGO", "STARK", "ATOM", "COSMOS", "BTC", "ECLIPSE", "SUI", "SPARK", "TRON"];
4
4
  export type Chain = typeof Chains[number];
5
5
  export declare const socialProviders: readonly ["google", "facebook", "apple", "github", "bitbucket", "gitlab", "linkedin", "twitter", "discord", "twitch", "microsoft"];
6
6
  export type SocialProvider = typeof socialProviders[number];
@@ -12,6 +12,7 @@ const Chains = [
12
12
  'ECLIPSE',
13
13
  'SUI',
14
14
  'SPARK',
15
+ 'TRON',
15
16
  ];
16
17
  const socialProviders = [
17
18
  'google',
@@ -64,6 +64,12 @@ const chainsInfo = [
64
64
  name: 'spark',
65
65
  symbol: 'SPARK',
66
66
  },
67
+ {
68
+ blockchainName: 'Tron',
69
+ displayName: 'Tron',
70
+ name: 'tron',
71
+ symbol: 'TRON',
72
+ },
67
73
  ];
68
74
  const chainOverrides = {
69
75
  algo: 'algorand',
@@ -1,5 +1,5 @@
1
1
  import { ChainInfo } from '../..';
2
- export type ChainName = 'algorand' | 'eclipse' | 'bitcoin' | 'evm' | 'flow' | 'solana' | 'starknet' | 'cosmos' | 'sui' | 'spark';
2
+ export type ChainName = 'algorand' | 'eclipse' | 'bitcoin' | 'evm' | 'flow' | 'solana' | 'starknet' | 'cosmos' | 'sui' | 'spark' | 'tron';
3
3
  export type ChainDisplayOverrides = Partial<Record<ChainName, {
4
4
  displayName?: string;
5
5
  }>>;
@@ -60,6 +60,12 @@ const chainsInfo = [
60
60
  name: 'spark',
61
61
  symbol: 'SPARK',
62
62
  },
63
+ {
64
+ blockchainName: 'Tron',
65
+ displayName: 'Tron',
66
+ name: 'tron',
67
+ symbol: 'TRON',
68
+ },
63
69
  ];
64
70
  const chainOverrides = {
65
71
  algo: 'algorand',