Skip to content

Commit

Permalink
Add more 1559 support for more chains (#4264)
Browse files Browse the repository at this point in the history
* Add more 1559 support for more chains

* Enable 1559 support for EWC and Volta
  • Loading branch information
FrederikBolding committed Jan 20, 2022
1 parent bb54a93 commit 0ca2ade
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions src/database/data/networks.ts
Expand Up @@ -847,7 +847,8 @@ export const NETWORKS_CONFIG: NetworkConfig = {
max: 10,
initial: 1
},
shouldEstimateGasPrice: false
shouldEstimateGasPrice: false,
supportsEIP1559: true
},
EnergyWebChain: {
id: 'EnergyWebChain',
Expand Down Expand Up @@ -876,7 +877,8 @@ export const NETWORKS_CONFIG: NetworkConfig = {
min: 0.01,
max: 10,
initial: 0.01
}
},
supportsEIP1559: true
},
MATIC: {
id: 'MATIC',
Expand Down Expand Up @@ -904,7 +906,8 @@ export const NETWORKS_CONFIG: NetworkConfig = {
max: 100,
initial: 30
},
shouldEstimateGasPrice: false
shouldEstimateGasPrice: false,
supportsEIP1559: true
},
xDAI: {
id: 'xDAI',
Expand Down Expand Up @@ -1021,7 +1024,8 @@ export const NETWORKS_CONFIG: NetworkConfig = {
min: 10,
max: 470,
initial: 470
}
},
supportsEIP1559: true
},
AvalancheTestnet: {
id: 'AvalancheTestnet',
Expand Down Expand Up @@ -1052,7 +1056,8 @@ export const NETWORKS_CONFIG: NetworkConfig = {
min: 10,
max: 470,
initial: 470
}
},
supportsEIP1559: true
},
EVRICE: {
id: 'EVRICE',
Expand Down Expand Up @@ -1133,6 +1138,7 @@ export const NETWORKS_CONFIG: NetworkConfig = {
min: 1,
max: 60,
initial: 1
}
},
supportsEIP1559: true
}
};

0 comments on commit 0ca2ade

Please sign in to comment.