@dynamic-labs/ethereum-aa 4.5.0 → 4.5.2

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,26 @@
1
1
 
2
+ ### [4.5.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.5.1...v4.5.2) (2025-02-08)
3
+
4
+
5
+ ### Features
6
+
7
+ * add getEnabledNetworks method to wallet connectors ([#8000](https://github.com/dynamic-labs/dynamic-auth/issues/8000)) ([450cdcd](https://github.com/dynamic-labs/dynamic-auth/commit/450cdcd98b11c734fb9c9d97bb1813cf5538e85e))
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * add fallback for exchange rate lookup failure ([#7994](https://github.com/dynamic-labs/dynamic-auth/issues/7994)) ([1359724](https://github.com/dynamic-labs/dynamic-auth/commit/1359724ec2931c61324bfe8d73110d862ebc016f))
13
+ * add USDT and USDC as hardcoded to 1 ([#8012](https://github.com/dynamic-labs/dynamic-auth/issues/8012)) ([92dcd2f](https://github.com/dynamic-labs/dynamic-auth/commit/92dcd2f6a90e8eeca034edf1682336896180281e))
14
+ * underflow bigint issue with small sol transfers ([#8006](https://github.com/dynamic-labs/dynamic-auth/issues/8006)) ([3fd00c2](https://github.com/dynamic-labs/dynamic-auth/commit/3fd00c2f0d0e10333f0206cb80197375de836003))
15
+ * view address react 17 compatibility ([#8002](https://github.com/dynamic-labs/dynamic-auth/issues/8002)) ([782e0f3](https://github.com/dynamic-labs/dynamic-auth/commit/782e0f323f388cac1d0773420ae45595aa806c26))
16
+
17
+ ### [4.5.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.5.0...v4.5.1) (2025-02-05)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * improve sdk performance ([#7992](https://github.com/dynamic-labs/dynamic-auth/issues/7992)) ([7c541d4](https://github.com/dynamic-labs/dynamic-auth/commit/7c541d498b3afe708e468327e53c839826029490))
23
+
2
24
  ## [4.5.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.4.4...v4.5.0) (2025-02-04)
3
25
 
4
26
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.5.0";
6
+ var version = "4.5.2";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.5.0";
2
+ var version = "4.5.2";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/ethereum-aa",
3
- "version": "4.5.0",
3
+ "version": "4.5.2",
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,17 +18,17 @@
18
18
  },
19
19
  "homepage": "https://www.dynamic.xyz/",
20
20
  "dependencies": {
21
- "@dynamic-labs/sdk-api-core": "0.0.607",
21
+ "@dynamic-labs/sdk-api-core": "0.0.613",
22
22
  "@zerodev/ecdsa-validator": "5.4.3",
23
23
  "@zerodev/multi-chain-ecdsa-validator": "5.4.2",
24
24
  "@zerodev/sdk": "5.4.17",
25
- "@dynamic-labs/assert-package-version": "4.5.0",
26
- "@dynamic-labs/ethereum-core": "4.5.0",
27
- "@dynamic-labs/logger": "4.5.0",
28
- "@dynamic-labs/types": "4.5.0",
29
- "@dynamic-labs/utils": "4.5.0",
30
- "@dynamic-labs/wallet-book": "4.5.0",
31
- "@dynamic-labs/wallet-connector-core": "4.5.0"
25
+ "@dynamic-labs/assert-package-version": "4.5.2",
26
+ "@dynamic-labs/ethereum-core": "4.5.2",
27
+ "@dynamic-labs/logger": "4.5.2",
28
+ "@dynamic-labs/types": "4.5.2",
29
+ "@dynamic-labs/utils": "4.5.2",
30
+ "@dynamic-labs/wallet-book": "4.5.2",
31
+ "@dynamic-labs/wallet-connector-core": "4.5.2"
32
32
  },
33
33
  "peerDependencies": {
34
34
  "viem": "^2.21.55"
@@ -525,6 +525,15 @@ class ZeroDevConnector extends walletConnectorCore.WalletConnectorBase {
525
525
  });
526
526
  });
527
527
  }
528
+ getBlockExplorerUrlsForCurrentNetwork() {
529
+ return _tslib.__awaiter(this, void 0, void 0, function* () {
530
+ var _a, _b;
531
+ return (_b = (_a = this.eoaConnector) === null || _a === void 0 ? void 0 : _a.getBlockExplorerUrlsForCurrentNetwork()) !== null && _b !== void 0 ? _b : [];
532
+ });
533
+ }
534
+ getEnabledNetworks() {
535
+ return this.evmNetworks;
536
+ }
528
537
  }
529
538
 
530
539
  exports.ZeroDevConnector = ZeroDevConnector;
@@ -7804,5 +7804,7 @@ export declare class ZeroDevConnector extends WalletConnectorBase<typeof Ethereu
7804
7804
  signMessage(messageToSign: string): Promise<string | undefined>;
7805
7805
  createUiTransaction(from: string): Promise<IUITransaction>;
7806
7806
  validateActiveWallet(expectedAddress: string): Promise<void>;
7807
+ getBlockExplorerUrlsForCurrentNetwork(): Promise<string[]>;
7808
+ getEnabledNetworks(): GenericNetwork[];
7807
7809
  }
7808
7810
  export {};
@@ -521,6 +521,15 @@ class ZeroDevConnector extends WalletConnectorBase {
521
521
  });
522
522
  });
523
523
  }
524
+ getBlockExplorerUrlsForCurrentNetwork() {
525
+ return __awaiter(this, void 0, void 0, function* () {
526
+ var _a, _b;
527
+ return (_b = (_a = this.eoaConnector) === null || _a === void 0 ? void 0 : _a.getBlockExplorerUrlsForCurrentNetwork()) !== null && _b !== void 0 ? _b : [];
528
+ });
529
+ }
530
+ getEnabledNetworks() {
531
+ return this.evmNetworks;
532
+ }
524
533
  }
525
534
 
526
535
  export { ZeroDevConnector };