@exodus/basemainnet-plugin 2.4.2 → 2.6.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
@@ -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.6.0](https://github.com/ExodusMovement/assets/compare/@exodus/basemainnet-plugin@2.5.0...@exodus/basemainnet-plugin@2.6.0) (2025-07-10)
7
+
8
+
9
+ ### Features
10
+
11
+
12
+ * feat: add supersim optimistic fork testing (#5924)
13
+
14
+ * feat: set ethereum to use clarity v2 monitor (#5836)
15
+
16
+
17
+
18
+ ## [2.5.0](https://github.com/ExodusMovement/assets/compare/@exodus/basemainnet-plugin@2.4.2...@exodus/basemainnet-plugin@2.5.0) (2025-07-01)
19
+
20
+
21
+ ### Features
22
+
23
+
24
+ * feat: enable absolute balance for basemainnet (#5983)
25
+
26
+
27
+ ### Bug Fixes
28
+
29
+
30
+ * fix: include l1 fee in tx log (#5986)
31
+
32
+
33
+
6
34
  ## [2.4.2](https://github.com/ExodusMovement/assets/compare/@exodus/basemainnet-plugin@2.4.1...@exodus/basemainnet-plugin@2.4.2) (2025-06-20)
7
35
 
8
36
  **Note:** Version bump only for package @exodus/basemainnet-plugin
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/basemainnet-plugin",
3
- "version": "2.4.2",
3
+ "version": "2.6.0",
4
4
  "description": "Base Mainnet plugin for Exodus SDK powered wallets",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -24,7 +24,8 @@
24
24
  "@exodus/ethereum-api": "^8.39.0"
25
25
  },
26
26
  "devDependencies": {
27
- "@exodus/assets-testing": "^1.0.0"
27
+ "@exodus/assets-testing": "^1.0.0",
28
+ "@exodus/evm-fork-testing": "^0.0.1"
28
29
  },
29
30
  "bugs": {
30
31
  "url": "https://github.com/ExodusMovement/assets/issues?q=is%3Aissue+is%3Aopen+label%3Abasemainnet-plugin"
@@ -34,5 +35,5 @@
34
35
  "type": "git",
35
36
  "url": "git+https://github.com/ExodusMovement/assets.git"
36
37
  },
37
- "gitHead": "dab2f29bb10eb8486ce39445f451439215d450cd"
38
+ "gitHead": "de047dd756d46667c24f7ec343eb47759cadd15c"
38
39
  }
package/src/index.js CHANGED
@@ -21,6 +21,7 @@ const createAsset = createAssetFactory({
21
21
  monitorType: 'clarity-v2',
22
22
  nfts: true,
23
23
  l1GasOracleAddress: GAS_ORACLE_ADDRESS,
24
+ useAbsoluteBalanceAndNonce: true,
24
25
  })
25
26
 
26
27
  const assetPlugin = { createAsset }