Skip to content

Latest commit

 

History

History
60 lines (45 loc) · 1.59 KB

multiwallet.md

File metadata and controls

60 lines (45 loc) · 1.59 KB

Multiwallet

Multiwallet is a Command Line Interface (CLI) multisig wallet tool built with the buidl python library. Most people looking at the readme for this repository are programmers trying to use buidl in their applications. This page has installation instructions for using the multiwallet CLI tool.

Telegram Community Chat Group

Ask Qs here: https://t.me/multiwallet

Install

Online Computer

Easy, but not as secure. Great for testing.

$ pip3 install buidl --upgrade

You can test your installation worked by running the following:

$ multiwallet.py
Welcome to multiwallet...

Offline (Airgap) Computer

buidl has no dependencies, so this is relatively easy.

Download this repo with git (while online):

$ git clone https://github.com/buidl-bitcoin/buidl-python.git

(you can also download a .zip file from github and then decompress it)

Disconnect your computer from the internet, or copy this folder onto your offline computer. Go to the buidl-python directory:

$ cd buidl-python

Start multiwallet without having to install anything:

$ python3 multiwallet.py
Welcome to multiwallet...

If you get a permission denied error, you may need to run:

$ sudo python3 multiwallet.py

On TAILs, you need to setup an Administration Password in order to sudo.

Product Roadmap

  • Show change addresses (not just receiving addresses)
  • Save outputs to a file?
  • Dispay QR codes?