Conversions between [ethereum_types] and [alloy_primitives].
use Compat as _;
// from alloy to ethereum_types
let address = address!;
let _: Address = address.compat;
// from ethereum_types to alloy
let hash = H256zero;
let _: B256 = hash.compat;
// integers are supported
let int = U128MAX;
assert_eq!;