Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/moncho/warpwallet
A deterministic Bitcoin wallet generator for the command line
https://github.com/moncho/warpwallet
bitcoin bitcoin-wallet brainwallet golang warpwallet
Last synced: 2 months ago
JSON representation
A deterministic Bitcoin wallet generator for the command line
- Host: GitHub
- URL: https://github.com/moncho/warpwallet
- Owner: moncho
- License: mit
- Created: 2017-08-29T22:42:11.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-05-20T07:49:09.000Z (over 2 years ago)
- Last Synced: 2024-09-29T04:05:01.921Z (3 months ago)
- Topics: bitcoin, bitcoin-wallet, brainwallet, golang, warpwallet
- Language: Go
- Homepage:
- Size: 1.11 MB
- Stars: 22
- Watchers: 5
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![GitHub license](https://img.shields.io/badge/license-MIT-green.svg)](https://raw.githubusercontent.com/moncho/warpwallet/master/LICENSE)
[![Build Status](https://travis-ci.org/moncho/warpwallet.svg?branch=master)](https://travis-ci.org/moncho/warpwallet)
[![codecov](https://codecov.io/gh/moncho/warpwallet/branch/master/graph/badge.svg)](https://codecov.io/gh/moncho/warpwallet)
[![Go Report Card](https://goreportcard.com/badge/github.com/moncho/warpwallet)](https://goreportcard.com/report/github.com/moncho/warpwallet)# Warpwallet
**warpwallet** is a deterministic bitcoin address generator for the command line.
The address-generation algorithm has been implemented as described in [Keybase/warp](https://keybase.io/warp). All credit for the algorithm goes to the original authors.
## Demo
[![asciicast](https://asciinema.org/a/136298.png)](https://asciinema.org/a/136298?autoplay=1)
## Disclaimer
Handle with care, if you intend to use this tool for generating a Bitcoin wallet, make sure you understand the [risks](https://eprint.iacr.org/2016/103.pdf) of using [brain wallets](https://en.bitcoin.it/wiki/Brainwallet).
Said that, I am fairly confident that the implementation faithfully matches the original implementation (all tests created for the original tool have been added and are passing). So, if you think that the original tool is a safe way to generate a Bitcoin wallet address, this tool should be safe for usage as well.
## Installation
Precompiled binaries can be found on the [releases page](https://github.com/moncho/warpwallet/releases). Select the one for your OS and arch.
**Warpwallet** may also be compiled from source wherever there is a Go compiler. Just clone the project and `make build`.
## Usage
Run `warpwallet` on a terminal, it will ask for a passphrase and a salt, then it will generate a private key on [WIF](https://en.bitcoin.it/wiki/Wallet_import_format) format and the corresponding [version 1 Bitcoin public address](https://en.bitcoin.it/wiki/Technical_background_of_version_1_Bitcoin_addresses).
## Why
I thought it would be cool to run **warpwallet** on a terminal.