diff --git a/crates/rpc-types-anvil/src/lib.rs b/crates/rpc-types-anvil/src/lib.rs index af0c6c22c85..59c9ed342de 100644 --- a/crates/rpc-types-anvil/src/lib.rs +++ b/crates/rpc-types-anvil/src/lib.rs @@ -85,12 +85,15 @@ pub struct NodeInfo { #[serde(rename_all = "camelCase")] pub struct NodeEnvironment { /// Base fee of the current block + #[serde(with = "alloy_serde::quantity")] pub base_fee: u128, /// Chain id of the node. pub chain_id: ChainId, /// Configured block gas limit + #[serde(with = "alloy_serde::quantity")] pub gas_limit: u64, /// Configured gas price + #[serde(with = "alloy_serde::quantity")] pub gas_price: u128, }