Concatenates an array of hexadecimal values into a single hexadecimal value.
function concatHex(values: readonly Array<`0x${string}`>) : Hex
An array of hexadecimal values to concatenate.
let values: readonly Array<`0x${string}`>
let returnType: `0x${string}`;
The concatenated hexadecimal value.