Skip to content

Latest commit

 

History

History
48 lines (34 loc) · 1.61 KB

README.md

File metadata and controls

48 lines (34 loc) · 1.61 KB

Gnosis Mutlisig Wallet tutorial and playground with Python and web3.py

For educational purposes.

Used with a local Parity client version 1.11.8

Dependencies

  • Connection to Tobalaba test network. For a tutorial on how to set up a local Parity client and connect to the network, check here
  • Parity UI (Helps a lot)
  • 3 accounts with some test Ethers in it. You can use the Parity UI for this purpose, then navigate to the faucet to get some ethers
  • Python 3.6 with pip, and Jupyter notebook

Setup

You need a Jupyter notebook:

pip install jupyter
(or pip3 install jupyter)

Then

git clone https://github.com/ngyam/tutorial-multisigwallet-py.git
cd tutorial-multisigwallet-py
pip install -r requirements.txt
(or pip3 install -r requirements.txt)

How to use

  1. Make sure your Parity client is running and configured to connect to Tobalaba
  2. Open the Jupyter notebook file and play around.
cd tutorial-multisigwallet-py
jupyter notebook

Resources

Energy Web Foundation

Parity client

Gnosis Multisig Wallet UI

Gnosis Multisig Wallet repo

web3.py documentation