@exodus/ethereum-plugin 2.2.1 → 2.2.3
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 +17 -0
- package/package.json +6 -5
- package/src/index.js +2 -3
- package/src/staking.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,23 @@
|
|
|
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.2.3](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.2.2...@exodus/ethereum-plugin@2.2.3) (2024-08-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @exodus/ethereum-plugin
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [2.2.2](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.2.1...@exodus/ethereum-plugin@2.2.2) (2024-07-26)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* lint for EVM assets ([#2969](https://github.com/ExodusMovement/assets/issues/2969)) ([16ca272](https://github.com/ExodusMovement/assets/commit/16ca272524ab1530800ca84f1df045293c08a3aa))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
6
23
|
## [2.2.1](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.2.0...@exodus/ethereum-plugin@2.2.1) (2024-07-09)
|
|
7
24
|
|
|
8
25
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/ethereum-plugin",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.3",
|
|
4
4
|
"description": "Exodus ethereum-plugin",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"files": [
|
|
@@ -14,13 +14,13 @@
|
|
|
14
14
|
"access": "restricted"
|
|
15
15
|
},
|
|
16
16
|
"scripts": {
|
|
17
|
-
"test": "run -T jest",
|
|
17
|
+
"test": "run -T exodus-test --jest --esbuild",
|
|
18
18
|
"lint": "run -T eslint .",
|
|
19
19
|
"lint:fix": "yarn lint --fix"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@exodus/asset-lib": "^4.
|
|
23
|
-
"@exodus/ethereum-api": "^8.
|
|
22
|
+
"@exodus/asset-lib": "^4.2.2",
|
|
23
|
+
"@exodus/ethereum-api": "^8.13.3",
|
|
24
24
|
"@exodus/ethereum-lib": "^5.0.1",
|
|
25
25
|
"@exodus/ethereum-meta": "^1.5.1",
|
|
26
26
|
"@exodus/web3-ethereum-utils": "^3.27.1"
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
"@exodus/assets-testing": "^1.0.0",
|
|
31
31
|
"@exodus/ethereumjs-util": "^7.1.0-exodus.7",
|
|
32
32
|
"@exodus/fetch": "^1.3.0",
|
|
33
|
+
"@exodus/models": "^11.0.0",
|
|
33
34
|
"lodash": "^4.17.21"
|
|
34
35
|
},
|
|
35
36
|
"bugs": {
|
|
@@ -40,5 +41,5 @@
|
|
|
40
41
|
"type": "git",
|
|
41
42
|
"url": "git+https://github.com/ExodusMovement/assets.git"
|
|
42
43
|
},
|
|
43
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "71031eb3482dd28419a5b53df1ba83c45011095f"
|
|
44
45
|
}
|
package/src/index.js
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
|
+
// Move EthereumFeeMonitor to ethereum-plugin or better replace with serverBasedFeeMonitorFactoryFactory
|
|
2
|
+
import { createAssetFactory } from '@exodus/ethereum-api'
|
|
1
3
|
import assetsList from '@exodus/ethereum-meta'
|
|
2
4
|
|
|
3
5
|
import feeData from './fee-data'
|
|
4
|
-
|
|
5
|
-
// Move EthereumFeeMonitor to ethereum-plugin or better replace with serverBasedFeeMonitorFactoryFactory
|
|
6
|
-
import { createAssetFactory } from '@exodus/ethereum-api'
|
|
7
6
|
import { stakingConfiguration } from './staking'
|
|
8
7
|
|
|
9
8
|
const createAsset = createAssetFactory({
|
package/src/staking.js
CHANGED