https://github.com/allemanfredi/rust-bitcoin-address-generator
Bitcoin address generator
https://github.com/allemanfredi/rust-bitcoin-address-generator
bitcoin bitcoin-address rust
Last synced: about 2 months ago
JSON representation
Bitcoin address generator
- Host: GitHub
- URL: https://github.com/allemanfredi/rust-bitcoin-address-generator
- Owner: allemanfredi
- Created: 2019-08-27T23:54:49.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-28T11:50:14.000Z (almost 6 years ago)
- Last Synced: 2025-03-29T05:41:27.065Z (2 months ago)
- Topics: bitcoin, bitcoin-address, rust
- Language: Rust
- Size: 4.88 KB
- Stars: 5
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rust-bitcoin-address-generator
Simple Bitcoin address generator written in Rust.
### Supported format: P2PKH, P2SH, P2WPKH, P2WSH
## How to install it
```
git clone https://github.com/allemanfredi/rust-bitcoin-address-generator.git
``````
cd rust-bitcoin-address-generator/target/debug
``````
./rust-bitcoin-address-generator [params]
```## How to use it
```
usage: ./rust-bitcoin-address-generator --type --script [--mainnet | --testnet]where <type> can be [p2pkh,p2wpkh,p2sh,p2wsh] and <script> is an array of op_codes byte
ex: ./rust-bitcoin-address-generator --type p2sh --script 00,14 --mainnet
```