Metadata-Version: 2.1
Name: multiwallet
Version: 0.3.5
Summary: Stateless multisig bitcoin wallet
Home-page: https://github.com/mflaxman/multiwallet
Author: Michael Flaxman
Author-email: multiwallet@michaelflaxman.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: buidl (==0.2.1)
Requires-Dist: PyQt5 (==5.15.1)

# THIS REPOSITORY COMES WITH ZERO GUARANTEES! USE AT YOUR OWN RISK!

GUI version of CLI [multiwallet](https://twitter.com/mflaxman/status/1321503036724989952).

#### Seedpicker
![](https://raw.githubusercontent.com/mflaxman/multiwallet/main/images/seedpicker.png)

#### Recieve
![](https://raw.githubusercontent.com/mflaxman/multiwallet/main/images/receive.png)

#### Send
![](https://raw.githubusercontent.com/mflaxman/multiwallet/main/images/send.png)

## Install

#### Easy
Downloadable binary link here (MacOS only):  
<https://github.com/mflaxman/multiwallet/releases>

#### Medium
```bash
$ pip3 install multiwallet
$ multiwallet_gui
```

#### Advanced
```bash
git clone https://github.com/mflaxman/multiwallet.git
cd multiwallet
python3 -m virtualenv .venv3
source .venv3/bin/activate
python3 setup.py develop
python multiwallet_gui/app.py 
```

## Roadmap:
* Mainnet/testnet toggle on sending
* Add QR code generation on send/receive
* Support arbitrary paths
* Test/release on multiple OS
* Better form handling/validation
* Add libsec
* Add webcam on receive/send
* Sign binaries
* Dark mode
* Reproducible build

## Maintainer Notes - Make a Release

Downloadable MacOS binary:
```
$ ./make_macos_release.sh 
```

Update PyPI:
```
$ ./update_pypi.sh
```


