chainlib

Generic blockchain access library and tooling
Log | Files | Refs | README | LICENSE

commit d2505f19d2afde25888ca1952f54a53ebae22529
parent e073a3c57aec0a50a0fdb6a4459fc6ac91d3cc1a
Author: nolash <dev@holbrook.no>
Date:   Mon, 18 Oct 2021 14:28:15 +0200

Remove crypto_dev_signer, add funga

Diffstat:
Mchainlib/cli/wallet.py | 5+----
Mrequirements.txt | 2+-
Msetup.cfg | 2+-
3 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/chainlib/cli/wallet.py b/chainlib/cli/wallet.py @@ -1,9 +1,6 @@ # standard imports import logging -# external imports -from crypto_dev_signer.keystore.dict import DictKeystore - logg = logging.getLogger(__name__) @@ -19,7 +16,7 @@ class Wallet: :todo: sign_transaction_to_rlp from chainlib-eth must be renamed to sign_transaction_to_wire, and included as part of signer interface """ - def __init__(self, signer_cls, keystore=DictKeystore(), checksummer=None): + def __init__(self, signer_cls, keystore=None, checksummer=None): self.signer_constructor = signer_cls self.keystore = keystore self.signer = None diff --git a/requirements.txt b/requirements.txt @@ -1,3 +1,3 @@ -crypto-dev-signer>=0.4.15rc2,<=0.4.15 +funga>=0.5.1a1,<0.6.0 pysha3==1.0.2 hexathon~=0.0.1a8 diff --git a/setup.cfg b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = chainlib -version = 0.0.10a1 +version = 0.0.10a3 description = Generic blockchain access library and tooling author = Louis Holbrook author_email = dev@holbrook.no