From 0ff3ccd4796496e3ca69b39d1a4562c72e85450f Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Wed, 30 Aug 2023 21:02:31 -0700 Subject: [PATCH] eth = 0.0000004. everything else to match polygon (0.0000005333) --- web3_proxy/src/compute_units.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web3_proxy/src/compute_units.rs b/web3_proxy/src/compute_units.rs index f15069b1..ef1a64c6 100644 --- a/web3_proxy/src/compute_units.rs +++ b/web3_proxy/src/compute_units.rs @@ -14,8 +14,8 @@ pub fn default_usd_per_cu(chain_id: u64) -> Decimal { match chain_id { // TODO: only include if `cfg(test)`? 999_001_999 => Decimal::from_str("0.10").unwrap(), - 137 => Decimal::from_str("0.000000533333333333333").unwrap(), - _ => Decimal::from_str("0.000000400000000000000").unwrap(), + 1 => Decimal::from_str("0.000000400000000000000").unwrap(), + _ => Decimal::from_str("0.000000533333333333333").unwrap(), } }