From 4297716834e028c9ef1abaf0d7155c4a245c2409 Mon Sep 17 00:00:00 2001 From: pitmutt Date: Wed, 14 Jun 2023 16:32:58 +0000 Subject: [PATCH] Update 'Haskell Functions' --- Haskell-Functions.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Haskell-Functions.md b/Haskell-Functions.md index 918f5d6..e249790 100644 --- a/Haskell-Functions.md +++ b/Haskell-Functions.md @@ -2,18 +2,18 @@ ## Utils -## `decodeHexText :: String -> ByteString` +### `decodeHexText :: String -> ByteString` Decodes a hex-encoded string into bytes. -## `decodeBech32 :: ByteString -> RawData` +### `decodeBech32 :: ByteString -> RawData` Takes the bytestring representation of the encoded string and produces `RawData`. -## `f4Jumble :: ByteString -> ByteString` +### `f4Jumble :: ByteString -> ByteString` Takes the input bytes and applies the [F4Jumble](https://zips.z.cash/zip-0316#jumbling) transformation. -## `f4UnJumble :: ByteString -> ByteString` +### `f4UnJumble :: ByteString -> ByteString` Takes the input bytes and applies the [inverse F4Jumble](https://zips.z.cash/zip-0316#jumbling) transformation. \ No newline at end of file