chainlib-eth

Ethereum implementation of the chainlib interface
Log | Files | Refs | README | LICENSE

commit 4c9b449a67412c8dd284357ae9ea3894a3347b2f
parent 23c1a40734db21f51a3e58e9b0612a476ad3937b
Author: lash <dev@holbrook.no>
Date:   Fri, 10 Feb 2023 19:33:54 +0000

Fix remaining cli tool bugs

Diffstat:
MCHANGELOG | 4++++
Mchainlib/eth/runnable/encode.py | 1-
Mrequirements.txt | 2+-
Msetup.cfg | 2+-
4 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG @@ -1,3 +1,7 @@ +- 0.4.12 + * Fix remaining flag bugs in cli tools +- 0.4.11 + * Add literal type definition support for contract argument building - 0.4.10 * Remove rpc lookup when using arg-mode in eth-encode regardless of fee arguments - 0.4.9 diff --git a/chainlib/eth/runnable/encode.py b/chainlib/eth/runnable/encode.py @@ -70,7 +70,6 @@ def process_config_local(config, arg, args, flags): arg_flags = ArgFlag() arg = Arg(arg_flags) flags = arg_flags.STD_WRITE | arg_flags.EXEC | arg_flags.FEE | arg_flags.FMT_HUMAN | arg_flags.FMT_WIRE | arg_flags.FMT_RPC -flags |= arg_flags.CREATE argparser = chainlib.eth.cli.ArgumentParser() argparser = process_args(argparser, arg, flags) diff --git a/requirements.txt b/requirements.txt @@ -3,4 +3,4 @@ pysha3==1.0.2 hexathon~=0.1.7 websocket-client==0.57.0 potaahto~=0.1.1 -chainlib~=0.4.0 +chainlib~=0.4.5 diff --git a/setup.cfg b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = chainlib-eth -version = 0.4.11 +version = 0.4.12 description = Ethereum implementation of the chainlib interface author = Louis Holbrook author_email = dev@holbrook.no