@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/ethereum-lib",
3
- "version": "2.26.1-alpha1",
3
+ "version": "2.26.1",
4
4
  "description": "Ethereum Library",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -8,3 +8,4 @@ export { default as matic } from './polygon'
8
8
  export { default as avalanchec } from './avalanchec'
9
9
  export { default as fantommainnet } from './fantom'
10
10
  export { default as harmonymainnet } from './harmony'
11
+ export { default as rootstock } from './rootstock'
@@ -3,10 +3,10 @@ import assets from '@exodus/assets'
3
3
 
4
4
  export default new FeeData({
5
5
  config: {
6
- gasPrice: '65164000 Gwei',
7
- max: '900000000 Gwei',
6
+ gasPrice: '5 Gwei',
7
+ max: '25 Gwei',
8
8
  min: '1 Gwei',
9
- fuelThreshold: '900000000 Gwei',
9
+ fuelThreshold: '25 Gwei',
10
10
  gasPriceEconomicalRate: 0.8,
11
11
  gasPriceMinimumRate: 0.6,
12
12
  eip1559Enabled: false,
@@ -109,7 +109,8 @@ export const isRpcBalanceAsset = (asset) =>
109
109
  'wavax_avalanchec_635505b3',
110
110
  'wftm_fantommainnet_7edc4949',
111
111
  'fantommainnet',
112
- ].includes(asset.name)
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.