Base classes for signers
Go to file
nolash e28ab1b082
Add metadata license, url
2020-08-08 12:07:39 +02:00
crypto_dev_signer Fix setup.py to include all modules 2020-08-08 11:33:15 +02:00
scripts Fix setup.py to include all modules 2020-08-08 11:33:15 +02:00
test Fix setup.py to include all modules 2020-08-08 11:33:15 +02:00
.gitignore Add keystore interface previously omitted, middleware req 2020-08-06 14:11:43 +02:00
CHANGELOG Add metadata license, url 2020-08-08 12:07:39 +02:00
LICENSE.txt Add metadata license, url 2020-08-08 12:07:39 +02:00
README.md Add readme, changelog... 2020-08-06 11:08:12 +02:00
middleware_requirements.txt Add keystore interface previously omitted, middleware req 2020-08-06 14:11:43 +02:00
requirements.txt Update requirements 2020-08-05 20:00:47 +02:00
setup.py Add metadata license, url 2020-08-08 12:07:39 +02:00

README.md

CIC PLATFORM SIGNER

This package is written because at the time no good solution seemed to exist for solving the following combined requirements and issues:

  • A service has custody of its users' private keys.
  • The are a large number of private keys involved (tens of thousands minimum).
  • Need to sign transactions conforming to EIP-155, with the ability to arbitrarily specify the "chain id".
  • Do not want to store the keys inside an ethereum node, especially not the one connected to the network.
  • Want to use the "standard" web3 JSON-RPC interface, so that the component can be easily replaced later.
  • Multiple providers don't work on either web3.js and/or web3.py.
  • As a bonus, provide a practical keystore solution for testing in general for web3 projects.

TECHNICAL OVERVIEW

Scripts

Two scripts are currently available:

server.py

An Unix socket IPC server implementing the web3.eth.personal namespace of the web3 json-rpc "standard."

web3_middleware.py

Demonstrates use of the IPC server as middleware for handling calls to the personal_* methods.

Classes

The classes and packages provided are:

keystore

  • Keystore: Interface definition
  • ReferenceKeystore: Implements the Keystore interface, with a postgresql backend expecting sql schema as defined in ReferenceKeystore.schema

transaction

  • Transaction: Interface definition.
  • EIP155Transaction: Creates transaction serializations appropriate for EIP155 replay protected signatures. Accepts a web3 format transaction dict as constructor argument together with nonce and optional chainId.

signer

  • Signer: Interface definition. Its signTransaction method expects an object implementing the Transaction interface.
  • ReferenceSigner Implements Signer, accepting a single argument of type Keystore interface.

VERSION

This software is 0.0.1 alpha state and very brittle.

LICENSE

GPLv3

No responsibility assumed for any use of this software. You're on your own, as usual.