Sign inSign up

bauerj/cosignerpool

By bauerj

Updated over 8 years ago

Server code for the Electrum cosignerpool plugin

Image
0

604

bauerj/cosignerpool repository overview

Server Code For The Cosignerpool Plugin

The Electrum cosignerpool plugin facilitates the use of multi-signatures wallets. It sends and receives partially signed transactions from/to your cosigner wallet.

This is the server that stores the encrypted transactions.

How to run

Docker

A Docker file is included in the repository. To run it using docker-compose:

version: '2'
services:
  cosignerpool:
    image: bauerj/cosignerpool:0.1
    ports:
      - "80:80"
    volumes:
      - /var/volumes/cosignerpool:/data
Manually

To run it without Docker, use e.g.

apt install libleveldb-dev
pip install -r requirements.txt
DB_PATH=/db python3 ./cosignerpool.py

Tag summary

Content type

Image

Digest

Size

109.1 MB

Last updated

over 8 years ago

docker pull bauerj/cosignerpool