@exodus/ethereum-plugin 2.10.0 → 2.11.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,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.11.0](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.10.1...@exodus/ethereum-plugin@2.11.0) (2025-07-01)
7
+
8
+
9
+ ### Features
10
+
11
+
12
+ * feat: transaction bundles and private server gas estimation (#5953)
13
+
14
+
15
+
16
+ ## [2.10.1](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.10.0...@exodus/ethereum-plugin@2.10.1) (2025-06-26)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+
22
+ * fix: activate `currentTipGasPrice` for bumped transactions in `tx-send` (#5950)
23
+
24
+
25
+
6
26
  ## [2.10.0](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.9.0...@exodus/ethereum-plugin@2.10.0) (2025-06-20)
7
27
 
8
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/ethereum-plugin",
3
- "version": "2.10.0",
3
+ "version": "2.11.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.39.0",
25
- "@exodus/ethereum-lib": "^5.12.0",
24
+ "@exodus/ethereum-api": "^8.41.0",
25
+ "@exodus/ethereum-lib": "^5.15.1",
26
26
  "@exodus/ethereum-meta": "^2.0.0",
27
27
  "@exodus/ethereumjs": "^1.0.0",
28
28
  "@exodus/simple-retry": "^0.0.6",
@@ -45,5 +45,5 @@
45
45
  "type": "git",
46
46
  "url": "git+https://github.com/ExodusMovement/assets.git"
47
47
  },
48
- "gitHead": "e895de1e4218beb1b718f7a6a4407c41686ddb79"
48
+ "gitHead": "1077a752b60e0b25961613fd007596ab3368188e"
49
49
  }
package/src/index.js CHANGED
@@ -27,6 +27,18 @@ const createAsset = createAssetFactory({
27
27
  aave: { fixedGasLimit: 250_000 },
28
28
  },
29
29
  },
30
+ rpcBalanceAssetNames: [
31
+ 'ousd_ethereum_48fcf72d',
32
+ 'steth',
33
+ 'weth',
34
+ 'ampl_ethereum_48428467',
35
+ 'feg_ethereum_ef42acf0',
36
+ 'floki_ethereum_4a3891a6',
37
+ 'mark_ethereum_0d0c07dd',
38
+ 'saitama_ethereum_5547ffb6',
39
+ 'shiryoinu_ethereum_ff507c93',
40
+ 'volt_ethereum_9e0778ce',
41
+ ],
30
42
  supportsCustomFees: true,
31
43
  nfts: true,
32
44
  isMaxFeeAsset: true,
@@ -258,14 +258,14 @@ export function stakingServiceFactory({ assetClientInterface, server, stakingSer
258
258
  const { feeAsset } = await getStakeAssets()
259
259
 
260
260
  const amount = feeAsset.currency.ZERO
261
- const gasLimit = await estimateGasLimit(
262
- feeAsset,
263
- from,
264
- to,
265
- amount, // staking contracts does not require ETH amount to interact with
266
- txInput,
267
- gasPrice
268
- )
261
+ const gasLimit = await estimateGasLimit({
262
+ asset: feeAsset,
263
+ fromAddress: from,
264
+ toAddress: to,
265
+ amount,
266
+ data: txInput,
267
+ gasPrice,
268
+ })
269
269
 
270
270
  if (gasPrice === '0x0') {
271
271
  gasPrice = await server.gasPrice()