@exodus/basemainnet-plugin 2.9.0 → 2.10.1

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
@@ -3,6 +3,34 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.10.1](https://github.com/ExodusMovement/assets/compare/@exodus/basemainnet-plugin@2.10.0...@exodus/basemainnet-plugin@2.10.1) (2026-05-27)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+
12
+ * fix(ethereum-api): preserve raw value when bumping a self-send (#8113)
13
+
14
+ * fix: stale truncated balances after new transaction (#7897)
15
+
16
+
17
+
18
+ ## [2.10.0](https://github.com/ExodusMovement/assets/compare/@exodus/basemainnet-plugin@2.9.0...@exodus/basemainnet-plugin@2.10.0) (2026-04-30)
19
+
20
+
21
+ ### Features
22
+
23
+
24
+ * feat: start adding truncated history for clarity evm (#7604)
25
+
26
+
27
+ ### Bug Fixes
28
+
29
+
30
+ * fix: enable duplex transaction bumps and serialize tx.data.data to txLog (#7705)
31
+
32
+
33
+
6
34
  ## [2.9.0](https://github.com/ExodusMovement/assets/compare/@exodus/basemainnet-plugin@2.8.0...@exodus/basemainnet-plugin@2.9.0) (2026-03-09)
7
35
 
8
36
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/basemainnet-plugin",
3
- "version": "2.9.0",
3
+ "version": "2.10.1",
4
4
  "description": "Base Mainnet plugin for Exodus SDK powered wallets",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -22,11 +22,12 @@
22
22
  },
23
23
  "dependencies": {
24
24
  "@exodus/basemainnet-meta": "^2.0.3",
25
- "@exodus/ethereum-api": "^8.68.0"
25
+ "@exodus/ethereum-api": "^8.76.2"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@exodus/assets-testing": "^1.0.0",
29
- "@exodus/evm-fork-testing": "^0.5.0"
29
+ "@exodus/ethereum-lib": "^5.24.2",
30
+ "@exodus/evm-fork-testing": "^0.7.0"
30
31
  },
31
32
  "bugs": {
32
33
  "url": "https://github.com/ExodusMovement/assets/issues?q=is%3Aissue+is%3Aopen+label%3Abasemainnet-plugin"
@@ -36,5 +37,5 @@
36
37
  "type": "git",
37
38
  "url": "git+https://github.com/ExodusMovement/assets.git"
38
39
  },
39
- "gitHead": "7da7b29b3177ad6155d5018c297e795cd4d3bda8"
40
+ "gitHead": "6c398eaf7bcaecf41b720833f1dae5b8c56b3d57"
40
41
  }
package/src/index.js CHANGED
@@ -18,7 +18,7 @@ const createAsset = createAssetFactory({
18
18
  erc20FuelBuffer: 1.1, // 10% more than the required fee
19
19
  serverUrl: 'https://base-clarity.a.exodus.io',
20
20
  confirmationsNumber: 30,
21
- monitorType: 'clarity-v2',
21
+ monitorType: 'clarity-truncated-history',
22
22
  nfts: true,
23
23
  l1GasOracleAddress: GAS_ORACLE_ADDRESS,
24
24
  useAbsoluteBalanceAndNonce: true,