Function revm::primitives::alloy_primitives::hex::encode_prefixed

source ·
pub fn encode_prefixed<T>(data: T) -> String
where T: AsRef<[u8]>,
Expand description

Encodes data as a prefixed hex string using lowercase characters.

See encode() for more details.

§Examples

assert_eq!(const_hex::encode_prefixed("Hello world!"), "0x48656c6c6f20776f726c6421");
assert_eq!(const_hex::encode_prefixed([1, 2, 3, 15, 16]), "0x0102030f10");