Given a (case insensitive) hex encoded (base 16) string, return the corresponding bytes.
https://github.com/input-output-hk/plutus/blob/1.16.0.0/plutus-ledger-api/src/PlutusLedgerApi/V1/Bytes.hs#L39-L68
HexError is thrown if there is an odd number of hex digits or there is an invalid hex digit (i.e., a hex digit that is not [0-9a-fA-F])
[0-9a-fA-F]
Generated using TypeDoc
Given a (case insensitive) hex encoded (base 16) string, return the corresponding bytes.