The length (in bytes) of the expected hexadecimal string.
Optional
property: stringAn optional property for the layout.
A binary layout structure capable of encoding and decoding hex strings.
0x
hex string for readability.const layout = hexStringLayout(32, "publicKey");
const buffer = Buffer.alloc(32);
layout.encode("0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890", buffer, 0);
const decodedHex = layout.decode(buffer, 0);
console.log(decodedHex); // Outputs: "0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890"
Creates a custom binary layout for encoding and decoding hexadecimal strings.
This function provides a structured way to store and retrieve HexString values within binary data layouts, commonly used for binary serialization in Neon EVM transactions.