concatHex

Concatenates an array of hexadecimal values into a single hexadecimal value.

function concatHex(values: readonly Array<`0x${string}`>) : Hex

Parameters

An array of hexadecimal values to concatenate.

Type

let values: readonly Array<`0x${string}`>

Returns

let returnType: `0x${string}`;

The concatenated hexadecimal value.