blockscout
.public
Tables
(current)
Columns
Constraints
Relationships
Orphan Tables
Anomalies
Routines
convert(text[])
Parameters
Name
Type
Mode
text[]
IN
Definition
DECLARE s bytea[] := ARRAY[]::bytea[]; x text; BEGIN FOREACH x IN ARRAY $1 LOOP s := array_append(s, decode(replace(x, '0x', ''), 'hex')); END LOOP; RETURN s; END;