@exodus/ethereum-api 8.52.0 → 8.53.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 +10 -0
- package/package.json +2 -2
- package/src/create-asset.js +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
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
|
+
## [8.53.0](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-api@8.52.0...@exodus/ethereum-api@8.53.0) (2025-09-29)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
* feat: support delisted EVM assets (#6558)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
6
16
|
## [8.52.0](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-api@8.51.0...@exodus/ethereum-api@8.52.0) (2025-09-26)
|
|
7
17
|
|
|
8
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/ethereum-api",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.53.0",
|
|
4
4
|
"description": "Transaction monitors, fee monitors, RPC with the blockchain node, and other networking code for Ethereum and EVM-based blockchains",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"type": "git",
|
|
67
67
|
"url": "git+https://github.com/ExodusMovement/assets.git"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "ca44b5450adb1a87f2be955427464fae778a503d"
|
|
70
70
|
}
|
package/src/create-asset.js
CHANGED
|
@@ -68,6 +68,7 @@ export const createAssetFactory = ({
|
|
|
68
68
|
rpcBalanceAssetNames = [],
|
|
69
69
|
supportsCustomFees: defaultSupportsCustomFees = false,
|
|
70
70
|
useAbsoluteBalanceAndNonce = false,
|
|
71
|
+
delisted = false,
|
|
71
72
|
}) => {
|
|
72
73
|
assert(assetsList, 'assetsList is required')
|
|
73
74
|
assert(providedFeeData || feeDataConfig, 'feeData or feeDataConfig is required')
|
|
@@ -189,6 +190,7 @@ export const createAssetFactory = ({
|
|
|
189
190
|
signMessageWithSigner: true,
|
|
190
191
|
supportsCustomFees,
|
|
191
192
|
...(supportsStaking && { staking: {} }),
|
|
193
|
+
...(delisted && { delisted }),
|
|
192
194
|
}
|
|
193
195
|
|
|
194
196
|
const stakingAssetNames = Object.keys(stakingConfiguration)
|