@exodus/basemainnet-plugin 2.3.3 → 2.4.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,26 @@
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.4.1](https://github.com/ExodusMovement/assets/compare/@exodus/basemainnet-plugin@2.4.0...@exodus/basemainnet-plugin@2.4.1) (2025-06-19)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+
12
+ * fix: include l1 in fee (#5895)
13
+
14
+
15
+
16
+ ## [2.4.0](https://github.com/ExodusMovement/assets/compare/@exodus/basemainnet-plugin@2.3.3...@exodus/basemainnet-plugin@2.4.0) (2025-06-17)
17
+
18
+
19
+ ### Features
20
+
21
+
22
+ * feat: clarity basemainnet (#5876)
23
+
24
+
25
+
6
26
  ## [2.3.3](https://github.com/ExodusMovement/assets/compare/@exodus/basemainnet-plugin@2.3.2...@exodus/basemainnet-plugin@2.3.3) (2025-04-29)
7
27
 
8
28
 
@@ -11,7 +31,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
11
31
 
12
32
  * fix: ETH pending staking balance (#4816)
13
33
 
14
- * fix: use gasPriceMultipler when setting up min/max/recommended (#4700)
34
+ * fix: use gasPriceMultiplier when setting up min/max/recommended (#4700)
15
35
 
16
36
 
17
37
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/basemainnet-plugin",
3
- "version": "2.3.3",
3
+ "version": "2.4.1",
4
4
  "description": "Base Mainnet plugin for Exodus SDK powered wallets",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -21,7 +21,7 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "@exodus/basemainnet-meta": "^2.0.3",
24
- "@exodus/ethereum-api": "^8.34.3"
24
+ "@exodus/ethereum-api": "^8.38.1"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@exodus/assets-testing": "^1.0.0"
@@ -34,5 +34,5 @@
34
34
  "type": "git",
35
35
  "url": "git+https://github.com/ExodusMovement/assets.git"
36
36
  },
37
- "gitHead": "63620ef41b7f48c835371ee03ca6443193460fe7"
37
+ "gitHead": "29460910f5183b5f2c5298f806e837050df0ecdf"
38
38
  }
package/src/index.js CHANGED
@@ -16,9 +16,9 @@ const createAsset = createAssetFactory({
16
16
  eip1559Enabled: true,
17
17
  },
18
18
  erc20FuelBuffer: 1.1, // 10% more than the required fee
19
- serverUrl: 'https://base-qn.a.exodus.io',
19
+ serverUrl: 'https://base-clarity.a.exodus.io',
20
20
  confirmationsNumber: 30,
21
- monitorType: 'no-history',
21
+ monitorType: 'clarity-v2',
22
22
  nfts: true,
23
23
  l1GasOracleAddress: GAS_ORACLE_ADDRESS,
24
24
  })