|
pub type Int = ethereum_types::U256; |
Can this be replaced with something like an ethereum_types::I256?
It seems like that is valid. In ethers-rs there is a I256 type that this would be handy to interface with directly. Upon parsing some events in revm, the fact that Int is really a U256 under the hood is not optimal.
ethabi/ethabi/src/lib.rs
Line 94 in a148a4a
Can this be replaced with something like an
ethereum_types::I256?It seems like that is valid. In
ethers-rsthere is aI256type that this would be handy to interface with directly. Upon parsing some events inrevm, the fact thatIntis really aU256under the hood is not optimal.