Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aunyks/create-btc-wallet
💰 Create a new (P2PKH) Bitcoin wallet right from the command line!
https://github.com/aunyks/create-btc-wallet
Last synced: 23 days ago
JSON representation
💰 Create a new (P2PKH) Bitcoin wallet right from the command line!
- Host: GitHub
- URL: https://github.com/aunyks/create-btc-wallet
- Owner: aunyks
- License: gpl-3.0
- Created: 2017-09-02T06:46:22.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-02-02T13:01:22.000Z (almost 4 years ago)
- Last Synced: 2024-06-19T00:40:47.425Z (6 months ago)
- Language: Go
- Homepage:
- Size: 19.5 KB
- Stars: 16
- Watchers: 4
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# create-btc-wallet
**Create a new Bitcoin wallet right from the command line!**
*Warning: This project is experimental. Please use at your own risk. The author is not liable for any loss of funds attributed to the use of this software.*
*Note: While development of a pure Go implementation of the secp256k1 elliptic curve digital signature algorithm is underway, CBW will only provide you with a valid private key to import into a wallet client, not a public key.**Dependencies:*
Go**Get Started**
1. Clone this repository
```
git clone https://github.com/aunyks/create-btc-wallet.git
```
2. Enter the newly created directory
```
cd create-btc-wallet
```
3. Build the source code and create and executable
```
go build cbw.go
```
4. (Optional) Copy the newly created executable to your Path5. Create a new Bitcoin wallet!
```
# On macOS / Linux
./cbw
```
```
rem On Windows
start cbw.exe
```