mod curve_ops; mod ecrecover; mod exp; mod rlp; mod transaction_parsing; use std::str::FromStr; use anyhow::Result; use ethereum_types::U256; pub(crate) fn u256ify<'a>(hexes: impl IntoIterator) -> Result> { Ok(hexes .into_iter() .map(U256::from_str) .collect::, _>>()?) }