bech32 v1.1.0 Release Notes

Release Date: 2020-07-08 // about 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.