We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c199a5b commit 8b04d0dCopy full SHA for 8b04d0d
crates/cli/src/utils/cmd.rs
@@ -163,6 +163,7 @@ pub fn init_progress(len: u64, label: &str) -> indicatif::ProgressBar {
163
pub fn has_different_gas_calc(chain_id: u64) -> bool {
164
if let Some(chain) = Chain::from(chain_id).named() {
165
return chain.is_arbitrum() ||
166
+ chain.is_elastic() ||
167
matches!(
168
chain,
169
NamedChain::Acala |
@@ -179,10 +180,7 @@ pub fn has_different_gas_calc(chain_id: u64) -> bool {
179
180
NamedChain::Moonbeam |
181
NamedChain::MoonbeamDev |
182
NamedChain::Moonriver |
- NamedChain::Metis |
183
- NamedChain::Abstract |
184
- NamedChain::ZkSync |
185
- NamedChain::ZkSyncTestnet
+ NamedChain::Metis
186
);
187
}
188
false
0 commit comments