@exodus/ethereum-lib 5.10.0 → 5.10.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 +10 -0
- package/package.json +2 -2
- package/src/utils/index.js +0 -10
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
|
+
## [5.10.1](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-lib@5.10.0...@exodus/ethereum-lib@5.10.1) (2025-04-15)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
* fix: remove bsc assets from RPC balance list (#5444)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
6
16
|
## [5.10.0](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-lib@5.9.1...@exodus/ethereum-lib@5.10.0) (2025-04-08)
|
|
7
17
|
|
|
8
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/ethereum-lib",
|
|
3
|
-
"version": "5.10.
|
|
3
|
+
"version": "5.10.1",
|
|
4
4
|
"description": "Ethereum utils, such as for cryptography, address encoding/decoding, transaction building, etc.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"type": "git",
|
|
52
52
|
"url": "git+https://github.com/ExodusMovement/assets.git"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "ecb4bcc6088186f382a07550df989646486b1ca6"
|
|
55
55
|
}
|
package/src/utils/index.js
CHANGED
|
@@ -128,30 +128,20 @@ export const isFeePaymentTx = (tx) => tx?.data?.data?.startsWith(FEE_PAYMENT_PRE
|
|
|
128
128
|
|
|
129
129
|
const customTokensWithRpcBalance = [
|
|
130
130
|
'ampl_ethereum_48428467',
|
|
131
|
-
'babydoge_bsc_ee74eb55',
|
|
132
|
-
'drb_bsc_8971f1e2',
|
|
133
|
-
'elephant_bsc_e879afb1',
|
|
134
|
-
'feg_bsc_48812e49',
|
|
135
131
|
'feg_ethereum_ef42acf0',
|
|
136
|
-
'floki_bsc_c4112b36',
|
|
137
132
|
'floki_ethereum_4a3891a6',
|
|
138
133
|
'mark_ethereum_0d0c07dd',
|
|
139
|
-
'move_bsc_4b4012e3',
|
|
140
134
|
'opt2_matic_2bb66719',
|
|
141
|
-
'posi_bsc_9a2aa8c5',
|
|
142
135
|
'saitama_ethereum_5547ffb6',
|
|
143
136
|
'shiryoinu_ethereum_ff507c93',
|
|
144
|
-
'volt_bsc_bea66b91',
|
|
145
137
|
'volt_ethereum_9e0778ce',
|
|
146
138
|
'wavax_avalanchec_635505b3',
|
|
147
|
-
'wbnb_bsc_7329a389',
|
|
148
139
|
'wftm_fantommainnet_7edc4949',
|
|
149
140
|
'wmatic_matic_424fae45',
|
|
150
141
|
]
|
|
151
142
|
|
|
152
143
|
export const isRpcBalanceAsset = (asset) =>
|
|
153
144
|
[
|
|
154
|
-
'bsc',
|
|
155
145
|
'ethereumarbone',
|
|
156
146
|
'fantommainnet',
|
|
157
147
|
'matic',
|