@exodus/ethereum-plugin 2.2.0 → 2.2.2

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,25 @@
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.2](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.2.1...@exodus/ethereum-plugin@2.2.2) (2024-07-26)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * lint for EVM assets ([#2969](https://github.com/ExodusMovement/assets/issues/2969)) ([16ca272](https://github.com/ExodusMovement/assets/commit/16ca272524ab1530800ca84f1df045293c08a3aa))
12
+
13
+
14
+
15
+ ## [2.2.1](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.2.0...@exodus/ethereum-plugin@2.2.1) (2024-07-09)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * **ethereum:** false dropped tx check ([#2707](https://github.com/ExodusMovement/assets/issues/2707)) ([d05a8c8](https://github.com/ExodusMovement/assets/commit/d05a8c895563fb13120956c0081db7ebe86195d6))
21
+ * use proxied balance ([#2637](https://github.com/ExodusMovement/assets/issues/2637)) ([639ee0f](https://github.com/ExodusMovement/assets/commit/639ee0f55bc53a9e31c553865902ca3f0ad0f0b8))
22
+
23
+
24
+
6
25
  ## [2.2.0](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.1.2...@exodus/ethereum-plugin@2.2.0) (2024-06-25)
7
26
 
8
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/ethereum-plugin",
3
- "version": "2.2.0",
3
+ "version": "2.2.2",
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
22
  "@exodus/asset-lib": "^4.1.0",
23
- "@exodus/ethereum-api": "^8.7.1",
23
+ "@exodus/ethereum-api": "^8.11.0",
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": "0ff8ab06fea52301cc926c2b78ab812992cc5692"
44
+ "gitHead": "70583d4d7487eb844193b87a148c4308bf2dcd27"
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
@@ -1,5 +1,5 @@
1
- import { asset, tokens } from '@exodus/ethereum-meta'
2
1
  import { ethStakeAccountState } from '@exodus/ethereum-lib'
2
+ import { asset, tokens } from '@exodus/ethereum-meta'
3
3
 
4
4
  const polygon = tokens.find(({ name: tokenName }) => tokenName === 'polygon')
5
5