@dynamic-labs/tron 4.37.2 → 4.38.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,19 @@
1
1
 
2
+ ## [4.38.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.37.2...v4.38.0) (2025-10-14)
3
+
4
+
5
+ ### Features
6
+
7
+ * add client.ui.updateUser.show method to update user with dynamic ui ([#9702](https://github.com/dynamic-labs/dynamic-auth/issues/9702)) ([9554e98](https://github.com/dynamic-labs/dynamic-auth/commit/9554e98eadf3f801a5ebe8b22493a87cc87b8178))
8
+ * add locale to react-native client ([#9698](https://github.com/dynamic-labs/dynamic-auth/issues/9698)) ([fe577fc](https://github.com/dynamic-labs/dynamic-auth/commit/fe577fccd3cc92e5153f66f401357035bb5baec3))
9
+ * add updateUser to react-native client ([#9701](https://github.com/dynamic-labs/dynamic-auth/issues/9701)) ([124fbf7](https://github.com/dynamic-labs/dynamic-auth/commit/124fbf7a350bfa6404e65def7b436686d38847ed))
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * notes and trigger ([#9697](https://github.com/dynamic-labs/dynamic-auth/issues/9697)) ([5d24a77](https://github.com/dynamic-labs/dynamic-auth/commit/5d24a77faa8030434bc7dd0f35986984bc2576d5))
15
+ * **zerodev-extension:** allow zerodev kernel client to send user operation ([#9706](https://github.com/dynamic-labs/dynamic-auth/issues/9706)) ([b57afc9](https://github.com/dynamic-labs/dynamic-auth/commit/b57afc9f378d6b2423ca46faec5f6b2861d3cbf6))
16
+
2
17
  ### [4.37.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.37.1...v4.37.2) (2025-10-13)
3
18
 
4
19
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.37.2";
6
+ var version = "4.38.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.37.2";
2
+ var version = "4.38.0";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/tron",
3
- "version": "4.37.2",
3
+ "version": "4.38.0",
4
4
  "description": "A React SDK for implementing wallet web3 authentication and authorization to your website.",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -18,12 +18,12 @@
18
18
  },
19
19
  "homepage": "https://www.dynamic.xyz/",
20
20
  "dependencies": {
21
- "@dynamic-labs/assert-package-version": "4.37.2",
21
+ "@dynamic-labs/assert-package-version": "4.38.0",
22
22
  "tronweb": "6.0.4",
23
- "@dynamic-labs/types": "4.37.2",
24
- "@dynamic-labs/utils": "4.37.2",
25
- "@dynamic-labs/wallet-book": "4.37.2",
26
- "@dynamic-labs/wallet-connector-core": "4.37.2"
23
+ "@dynamic-labs/types": "4.38.0",
24
+ "@dynamic-labs/utils": "4.38.0",
25
+ "@dynamic-labs/wallet-book": "4.38.0",
26
+ "@dynamic-labs/wallet-connector-core": "4.38.0"
27
27
  },
28
28
  "peerDependencies": {}
29
29
  }
package/src/index.cjs CHANGED
@@ -6,7 +6,6 @@ Object.defineProperty(exports, '__esModule', { value: true });
6
6
  var assertPackageVersion = require('@dynamic-labs/assert-package-version');
7
7
  var _package = require('../package.cjs');
8
8
  var BitgetTronConnector = require('./connectors/BitgetTronConnector/BitgetTronConnector.cjs');
9
- var BybitTronConnector = require('./connectors/BybitTronConnector/BybitTronConnector.cjs');
10
9
  var OKXTronConnector = require('./connectors/OKXTronConnector/OKXTronConnector.cjs');
11
10
  var TokenPocketTronConnector = require('./connectors/TokenPocketTronConnector/TokenPocketTronConnector.cjs');
12
11
  var TrustTronConnector = require('./connectors/TrustTronConnector/TrustTronConnector.cjs');
@@ -15,8 +14,8 @@ var TronWallet = require('./wallet/TronWallet.cjs');
15
14
 
16
15
  assertPackageVersion.assertPackageVersion('@dynamic-labs/tron', _package.version);
17
16
  const TronWalletConnectors = () => [
17
+ // BybitTronConnector, // Currently Bybit can't sign messages
18
18
  BitgetTronConnector.BitgetTronConnector,
19
- BybitTronConnector.BybitTronConnector,
20
19
  OKXTronConnector.OKXTronConnector,
21
20
  TokenPocketTronConnector.TokenPocketTronConnector,
22
21
  TrustTronConnector.TrustTronConnector,
package/src/index.js CHANGED
@@ -2,7 +2,6 @@
2
2
  import { assertPackageVersion } from '@dynamic-labs/assert-package-version';
3
3
  import { version } from '../package.js';
4
4
  import { BitgetTronConnector } from './connectors/BitgetTronConnector/BitgetTronConnector.js';
5
- import { BybitTronConnector } from './connectors/BybitTronConnector/BybitTronConnector.js';
6
5
  import { OKXTronConnector } from './connectors/OKXTronConnector/OKXTronConnector.js';
7
6
  import { TokenPocketTronConnector } from './connectors/TokenPocketTronConnector/TokenPocketTronConnector.js';
8
7
  import { TrustTronConnector } from './connectors/TrustTronConnector/TrustTronConnector.js';
@@ -11,8 +10,8 @@ export { TronWallet } from './wallet/TronWallet.js';
11
10
 
12
11
  assertPackageVersion('@dynamic-labs/tron', version);
13
12
  const TronWalletConnectors = () => [
13
+ // BybitTronConnector, // Currently Bybit can't sign messages
14
14
  BitgetTronConnector,
15
- BybitTronConnector,
16
15
  OKXTronConnector,
17
16
  TokenPocketTronConnector,
18
17
  TrustTronConnector,
@@ -1,20 +0,0 @@
1
- 'use client'
2
- 'use strict';
3
-
4
- Object.defineProperty(exports, '__esModule', { value: true });
5
-
6
- var TronWalletConnector = require('../TronWalletConnector/TronWalletConnector.cjs');
7
-
8
- class BybitTronConnector extends TronWalletConnector.TronWalletConnector {
9
- constructor() {
10
- super(...arguments);
11
- this.name = 'Bybit Wallet';
12
- this.overrideKey = 'bybittron';
13
- }
14
- getProvider() {
15
- var _a;
16
- return (_a = window.bybitWallet) === null || _a === void 0 ? void 0 : _a.tronLink;
17
- }
18
- }
19
-
20
- exports.BybitTronConnector = BybitTronConnector;
@@ -1,16 +0,0 @@
1
- 'use client'
2
- import { TronWalletConnector } from '../TronWalletConnector/TronWalletConnector.js';
3
-
4
- class BybitTronConnector extends TronWalletConnector {
5
- constructor() {
6
- super(...arguments);
7
- this.name = 'Bybit Wallet';
8
- this.overrideKey = 'bybittron';
9
- }
10
- getProvider() {
11
- var _a;
12
- return (_a = window.bybitWallet) === null || _a === void 0 ? void 0 : _a.tronLink;
13
- }
14
- }
15
-
16
- export { BybitTronConnector };