@exodus/ethereum-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 +22 -0
- package/package.json +3 -3
- package/src/staking/polygon/service.js +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
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/ethereum-plugin@2.10.0...@exodus/ethereum-plugin@2.10.1) (2025-06-26)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
* fix: activate `currentTipGasPrice` for bumped transactions in `tx-send` (#5950)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## [2.10.0](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.9.0...@exodus/ethereum-plugin@2.10.0) (2025-06-20)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
* feat: add `isPrivate` flag to `txSend` and export `transactionPrivacy` feature (#5906)
|
|
23
|
+
|
|
24
|
+
* feat: enable evm transaction privacy (#5869)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
## [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
29
|
|
|
8
30
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/ethereum-plugin",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.10.1",
|
|
4
4
|
"description": "Ethereum 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/currency": "^6.0.1",
|
|
24
|
-
"@exodus/ethereum-api": "^8.
|
|
24
|
+
"@exodus/ethereum-api": "^8.40.1",
|
|
25
25
|
"@exodus/ethereum-lib": "^5.12.0",
|
|
26
26
|
"@exodus/ethereum-meta": "^2.0.0",
|
|
27
27
|
"@exodus/ethereumjs": "^1.0.0",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"type": "git",
|
|
46
46
|
"url": "git+https://github.com/ExodusMovement/assets.git"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "48a7c711842748ab188eb6bbbb575d1a13b8a6ab"
|
|
49
49
|
}
|
|
@@ -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,
|
|
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()
|