@exodus/ethereum-plugin 2.24.0 → 2.26.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,7 +3,27 @@
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.24.0](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.23.1...@exodus/ethereum-plugin@2.24.0) (2026-03-03)
6
+ ## [2.26.0](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.24.0...@exodus/ethereum-plugin@2.26.0) (2026-03-09)
7
+
8
+
9
+ ### Features
10
+
11
+
12
+ * feat: add assets-gateway enable for clarity-v2, enable bsc (#7480)
13
+
14
+
15
+
16
+ ## [2.25.0](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.24.0...@exodus/ethereum-plugin@2.25.0) (2026-03-04)
17
+
18
+
19
+ ### Features
20
+
21
+
22
+ * feat: add USDT blacklist status APIs for ETH and TRX and expose TRX raw account (#7444)
23
+
24
+
25
+
26
+ ## [2.24.0](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.23.3...@exodus/ethereum-plugin@2.24.0) (2026-03-03)
7
27
 
8
28
 
9
29
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/ethereum-plugin",
3
- "version": "2.24.0",
3
+ "version": "2.26.0",
4
4
  "description": "Ethereum plugin for Exodus SDK powered wallets",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -21,9 +21,10 @@
21
21
  "lint:fix": "yarn lint --fix"
22
22
  },
23
23
  "dependencies": {
24
+ "@exodus/asset-lib": "^5.8.0",
24
25
  "@exodus/basic-utils": "^3.0.1",
25
26
  "@exodus/currency": "^6.0.1",
26
- "@exodus/ethereum-api": "^8.65.0",
27
+ "@exodus/ethereum-api": "^8.68.0",
27
28
  "@exodus/ethereum-lib": "^5.21.0",
28
29
  "@exodus/ethereum-meta": "^2.9.0",
29
30
  "@exodus/ethereumjs": "^1.0.0",
@@ -36,7 +37,7 @@
36
37
  "@exodus/assets": "^11.4.0",
37
38
  "@exodus/assets-testing": "^1.0.0",
38
39
  "@exodus/crypto": "^1.0.0-rc.13",
39
- "@exodus/evm-fork-testing": "^0.4.0",
40
+ "@exodus/evm-fork-testing": "^0.5.0",
40
41
  "@exodus/models": "^12.13.0",
41
42
  "@exodus/web3-ethereum-utils": "^4.7.2",
42
43
  "delay": "^4.0.1",
@@ -50,5 +51,5 @@
50
51
  "type": "git",
51
52
  "url": "git+https://github.com/ExodusMovement/assets.git"
52
53
  },
53
- "gitHead": "98c4dc4e2cd52781dadc2af4fae2b80ecc276626"
54
+ "gitHead": "7da7b29b3177ad6155d5018c297e795cd4d3bda8"
54
55
  }
@@ -0,0 +1,15 @@
1
+ import { BlacklistCheckTypes } from '@exodus/asset-lib'
2
+ import { createContractBlackListCheck } from '@exodus/ethereum-api'
3
+ import assetsList from '@exodus/ethereum-meta'
4
+
5
+ const tetherusd = assetsList.find(({ name }) => name === 'tetherusd')
6
+ const contractAddress = tetherusd.contract.current
7
+
8
+ export const tetherusdBlackListCheckFactory = ({ server }) =>
9
+ createContractBlackListCheck({
10
+ contractAddress,
11
+ selector: '0xe47d6060',
12
+ server,
13
+ })
14
+
15
+ tetherusdBlackListCheckFactory.type = BlacklistCheckTypes.CONTRACT_CALL
package/src/index.js CHANGED
@@ -2,6 +2,7 @@
2
2
  import { createAssetFactory } from '@exodus/ethereum-api'
3
3
  import assetsList from '@exodus/ethereum-meta'
4
4
 
5
+ import { tetherusdBlackListCheckFactory } from './blacklist-checks.js'
5
6
  import { stakingConfiguration, stakingDependencies } from './staking.js'
6
7
 
7
8
  const createAsset = createAssetFactory({
@@ -41,6 +42,7 @@ const createAsset = createAssetFactory({
41
42
  'shiryoinu_ethereum_ff507c93',
42
43
  'volt_ethereum_9e0778ce',
43
44
  ],
45
+ blacklistChecks: [tetherusdBlackListCheckFactory],
44
46
  supportsCustomFees: true,
45
47
  nfts: true,
46
48
  isMaxFeeAsset: true,