pub type evmc_uint256be = evmc_bytes32;
The alias for evmc_bytes32 to represent a big-endian 256-bit integer.
#[repr(C)]pub struct evmc_uint256be { pub bytes: [u8; 32], }
bytes: [u8; 32]
The 32 bytes.