Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cmoog/bech32
A tiny CLI for encoding and decoding bech32 strings.
https://github.com/cmoog/bech32
bech32 bitcoin cli cryptography rust
Last synced: 17 days ago
JSON representation
A tiny CLI for encoding and decoding bech32 strings.
- Host: GitHub
- URL: https://github.com/cmoog/bech32
- Owner: cmoog
- License: mit
- Created: 2022-02-27T15:59:29.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-13T15:13:57.000Z (8 months ago)
- Last Synced: 2024-04-13T14:54:49.690Z (7 months ago)
- Topics: bech32, bitcoin, cli, cryptography, rust
- Language: Rust
- Homepage:
- Size: 22.5 KB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bech32 CLI
A small command-line utility for encoding and decoding bech32 strings.
## Installation
**Cargo**
```
cargo install --git https://github.com/cmoog/bech32
```**Nix Flakes**
```
nix shell github:cmoog/bech32
```## Usage
```
bech32 0.1.0USAGE:
bech32 [FLAGS] [OPTIONS] [data]FLAGS:
-d, --decode Decode data. The human-readable prefix is discarded.
-h, --help Prints help information
-V, --version Prints version informationOPTIONS:
-p, --prefix The human-readable part of the encoded bech32 string.
Example) "cm" is the prefix for cm1vfjkx6zlxve97cmvd90ksetvwq0h3xcpARGS:
Data to encode or decode. Leave empty to use stdin.
```