bech32 v1.1.0 Release Notes

Release Date: 2020-07-08 // almost 4 years ago
  • ๐Ÿš€ This release provides a new command line interface for conversion to and from bech32 strings in the console.

    โž• Added

    โž• Added bech32 command-line interface (CLI) for easy conversions in the console.

    Usage: bech32 [PREFIX] Convert to and from bech32 strings. Data are read from standard input.Available options: -h,--help Show this help text PREFIX An optional human-readable prefix (e.g. 'addr'). - When provided, the input text is decoded from various encoding formats and re-encoded to bech32 using the given prefix. - When omitted, the input text is decoded from bech32 to base16.Supported encoding formats: Base16, Bech32 & Base58.Examples: To Bech32: $ bech32 base16\_ \<\<\< 706174617465 base16\_1wpshgct5v5r5mxh0 $ bech32 base58\_ \<\<\< Ae2tdPwUPEYy base58\_1p58rejhd9592uusa8pzj2 $ bech32 new\_prefix \<\<\< old\_prefix1wpshgcg2s33x3 new\_prefix1wpshgcgeak9mv From Bech32: $ bech32 \<\<\< base16\_1wpshgct5v5r5mxh0 706174617465
    

    ๐Ÿ“š Documentation

    ๐Ÿ‘€ See README

    ๐Ÿ‘Œ Supported Operating Systems

    • ๐Ÿง Linux 64 bit

    Signatures

    Name Role Approval
    Matthias Benkort @KtorZ Technical Team Lead โœ”๏ธ
    Piotr Stachyra @piotr-iohk QA Engineer โœ”๏ธ
    Tatyana Valkevych @tatyanavych Release Manager โœ”๏ธ

Previous changes from v1.0.2

    • โž• Added companion Template Haskell library bech32-th. Includes quasi-quoters for parsing and validating string literals at compile time.