@exodus/ethereum-plugin 2.19.3 → 2.20.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 +20 -0
- package/package.json +7 -6
- package/src/index.js +1 -1
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.20.1](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.20.0...@exodus/ethereum-plugin@2.20.1) (2025-12-17)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
* fix: prevent acceleration of replaced evm transactions (#6964)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## [2.20.0](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.19.3...@exodus/ethereum-plugin@2.20.0) (2025-12-15)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
* feat: update exodus servo proxy for mev protected swaps on ethereum and introduce ability to disable kurtosis tests (#7112)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
6
26
|
## [2.19.3](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.19.2...@exodus/ethereum-plugin@2.19.3) (2025-12-15)
|
|
7
27
|
|
|
8
28
|
**Note:** Version bump only for package @exodus/ethereum-plugin
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/ethereum-plugin",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.20.1",
|
|
4
4
|
"description": "Ethereum plugin for Exodus SDK powered wallets",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@exodus/currency": "^6.0.1",
|
|
25
|
-
"@exodus/ethereum-api": "^8.61.
|
|
26
|
-
"@exodus/ethereum-lib": "^5.20.
|
|
25
|
+
"@exodus/ethereum-api": "^8.61.3",
|
|
26
|
+
"@exodus/ethereum-lib": "^5.20.2",
|
|
27
27
|
"@exodus/ethereum-meta": "^2.9.0",
|
|
28
28
|
"@exodus/ethereumjs": "^1.0.0",
|
|
29
29
|
"@exodus/simple-retry": "^0.0.6",
|
|
@@ -35,10 +35,11 @@
|
|
|
35
35
|
"@exodus/assets-testing": "^1.0.0",
|
|
36
36
|
"@exodus/basic-utils": "^3.0.1",
|
|
37
37
|
"@exodus/crypto": "^1.0.0-rc.13",
|
|
38
|
-
"@exodus/evm-fork-testing": "^0.
|
|
38
|
+
"@exodus/evm-fork-testing": "^0.3.1",
|
|
39
39
|
"@exodus/models": "^12.13.0",
|
|
40
40
|
"@exodus/web3-ethereum-utils": "^4.7.0",
|
|
41
|
-
"delay": "^4.0.1"
|
|
41
|
+
"delay": "^4.0.1",
|
|
42
|
+
"ms": "^2.1.1"
|
|
42
43
|
},
|
|
43
44
|
"bugs": {
|
|
44
45
|
"url": "https://github.com/ExodusMovement/assets/issues?q=is%3Aissue+is%3Aopen+label%3Aethereum-plugin"
|
|
@@ -48,5 +49,5 @@
|
|
|
48
49
|
"type": "git",
|
|
49
50
|
"url": "git+https://github.com/ExodusMovement/assets.git"
|
|
50
51
|
},
|
|
51
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "8c3e94c96818b1ce8ce10cb75da29db2c9fe9ab9"
|
|
52
53
|
}
|
package/src/index.js
CHANGED
|
@@ -50,7 +50,7 @@ const createAsset = createAssetFactory({
|
|
|
50
50
|
serverUrl: 'https://eth-clarity.a.exodus.io',
|
|
51
51
|
monitorInterval: '1m',
|
|
52
52
|
confirmationsNumber: 30,
|
|
53
|
-
privacyRpcUrl: 'https://
|
|
53
|
+
privacyRpcUrl: 'https://servo.a.exodus.io',
|
|
54
54
|
})
|
|
55
55
|
|
|
56
56
|
const assetPlugin = { createAsset }
|