@exodus/ethereum-lib 2.26.1-alpha1 → 2.26.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/package.json +1 -1
- package/src/fee-data/index.js +1 -0
- package/src/fee-data/rootstock.js +3 -3
- package/src/utils/index.js +2 -1
package/package.json
CHANGED
package/src/fee-data/index.js
CHANGED
|
@@ -3,10 +3,10 @@ import assets from '@exodus/assets'
|
|
|
3
3
|
|
|
4
4
|
export default new FeeData({
|
|
5
5
|
config: {
|
|
6
|
-
gasPrice: '
|
|
7
|
-
max: '
|
|
6
|
+
gasPrice: '5 Gwei',
|
|
7
|
+
max: '25 Gwei',
|
|
8
8
|
min: '1 Gwei',
|
|
9
|
-
fuelThreshold: '
|
|
9
|
+
fuelThreshold: '25 Gwei',
|
|
10
10
|
gasPriceEconomicalRate: 0.8,
|
|
11
11
|
gasPriceMinimumRate: 0.6,
|
|
12
12
|
eip1559Enabled: false,
|
package/src/utils/index.js
CHANGED
|
@@ -109,7 +109,8 @@ export const isRpcBalanceAsset = (asset) =>
|
|
|
109
109
|
'wavax_avalanchec_635505b3',
|
|
110
110
|
'wftm_fantommainnet_7edc4949',
|
|
111
111
|
'fantommainnet',
|
|
112
|
-
|
|
112
|
+
'rootstock',
|
|
113
|
+
].includes(asset.name) || asset.baseAsset.name === 'rootstock'
|
|
113
114
|
|
|
114
115
|
export const getAssetAddresses = (asset) => {
|
|
115
116
|
// It seems to be two schemas of assets. The original and the transformed by the client.
|