@exodus/ethereum-plugin 2.7.6 → 2.9.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,36 @@
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.9.0](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.8.0...@exodus/ethereum-plugin@2.9.0) (2025-06-12)
7
+
8
+
9
+ ### Features
10
+
11
+
12
+ * feat: remote config feeData.gasLimits (#5830)
13
+
14
+
15
+
16
+ ## [2.8.0](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.7.6...@exodus/ethereum-plugin@2.8.0) (2025-06-11)
17
+
18
+
19
+ ### Features
20
+
21
+
22
+ * feat: ethereum api use balances and nonces data (#5727)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+
28
+ * fix: ethereum api cleaning up (#5832)
29
+
30
+ * fix: improve evm gas estimation when using arbitrary addresses (#5842)
31
+
32
+ * fix: prevent the isSendAll invariant from applying to smart contract to addresses (#5658)
33
+
34
+
35
+
6
36
  ## [2.7.6](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.7.5...@exodus/ethereum-plugin@2.7.6) (2025-05-07)
7
37
 
8
38
  **Note:** Version bump only for package @exodus/ethereum-plugin
@@ -55,7 +85,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
55
85
  ### Bug Fixes
56
86
 
57
87
 
58
- * fix: use gasPriceMultipler when setting up min/max/recommended (#4700)
88
+ * fix: use gasPriceMultiplier when setting up min/max/recommended (#4700)
59
89
 
60
90
 
61
91
  ### License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/ethereum-plugin",
3
- "version": "2.7.6",
3
+ "version": "2.9.0",
4
4
  "description": "Ethereum plugin for Exodus SDK powered wallets",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -21,8 +21,8 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "@exodus/currency": "^6.0.1",
24
- "@exodus/ethereum-api": "^8.34.4",
25
- "@exodus/ethereum-lib": "^5.10.2",
24
+ "@exodus/ethereum-api": "^8.37.0",
25
+ "@exodus/ethereum-lib": "^5.12.0",
26
26
  "@exodus/ethereum-meta": "^2.0.0",
27
27
  "@exodus/ethereumjs": "^1.0.0",
28
28
  "@exodus/simple-retry": "^0.0.6",
@@ -33,8 +33,8 @@
33
33
  "@exodus/assets": "^11.0.0",
34
34
  "@exodus/assets-testing": "^1.0.0",
35
35
  "@exodus/crypto": "^1.0.0-rc.13",
36
- "@exodus/models": "^12.0.1",
37
- "@exodus/web3-ethereum-utils": "^4.3.1",
36
+ "@exodus/models": "^12.13.0",
37
+ "@exodus/web3-ethereum-utils": "^4.4.0",
38
38
  "delay": "^4.0.1"
39
39
  },
40
40
  "bugs": {
@@ -45,5 +45,5 @@
45
45
  "type": "git",
46
46
  "url": "git+https://github.com/ExodusMovement/assets.git"
47
47
  },
48
- "gitHead": "ef3710f80aaff8c5d84bc53026800f9a1c0e029f"
48
+ "gitHead": "128e8400372a6ff900dc5233f6477851fb053629"
49
49
  }
package/src/index.js CHANGED
@@ -18,6 +18,14 @@ const createAsset = createAssetFactory({
18
18
  tipGasPrice: '0.5 Gwei',
19
19
  eip1559Enabled: true,
20
20
  rbfEnabled: true,
21
+ gasLimits: {
22
+ amp: { fixedGasLimit: 151_000 },
23
+ tetherusd: { fixedGasLimit: 70_000 },
24
+ usdcoin: { fixedGasLimit: 70_000 },
25
+ snx: { fixedGasLimit: 220_000 },
26
+ geminidollar: { fixedGasLimit: 75_000 },
27
+ aave: { fixedGasLimit: 250_000 },
28
+ },
21
29
  },
22
30
  supportsCustomFees: true,
23
31
  nfts: true,