From 7ea1aa21caca03b6c4a55b2d01e8d6a4b47ba80c Mon Sep 17 00:00:00 2001 From: nolash Date: Tue, 24 Aug 2021 21:37:53 +0200 Subject: [PATCH] Use explicit pre-release signer --- python/eth_erc20/runnable/transfer.py | 13 ------------- python/requirements.txt | 4 ++-- python/setup.cfg | 2 +- 3 files changed, 3 insertions(+), 16 deletions(-) diff --git a/python/eth_erc20/runnable/transfer.py b/python/eth_erc20/runnable/transfer.py index 44cb789..1fecfe0 100644 --- a/python/eth_erc20/runnable/transfer.py +++ b/python/eth_erc20/runnable/transfer.py @@ -17,24 +17,11 @@ import argparse import logging # external imports -from crypto_dev_signer.eth.signer import ReferenceSigner as EIP155Signer -from crypto_dev_signer.keystore.dict import DictKeystore from hexathon import ( add_0x, strip_0x, ) from chainlib.eth.connection import EthHTTPConnection -from chainlib.jsonrpc import ( - IntSequenceGenerator, - ) -from chainlib.eth.nonce import ( - RPCNonceOracle, - OverrideNonceOracle, - ) -from chainlib.eth.gas import ( - RPCGasOracle, - OverrideGasOracle, - ) from chainlib.chain import ChainSpec from chainlib.eth.runnable.util import decode_for_puny_humans from chainlib.eth.address import to_checksum_address diff --git a/python/requirements.txt b/python/requirements.txt index 877bbc4..4853f8d 100644 --- a/python/requirements.txt +++ b/python/requirements.txt @@ -1,4 +1,4 @@ confini>=0.3.6rc3,<0.5.0 -crypto-dev-signer>=0.4.14b7,<=0.4.14 -chainlib-eth>=0.0.7a4,<=0.1.0 +crypto-dev-signer>=0.4.15a1,<=0.4.15 +chainlib-eth>=0.0.9a3,<=0.1.0 potaahto~=0.0.1a2 diff --git a/python/setup.cfg b/python/setup.cfg index 606c807..17ab4a2 100644 --- a/python/setup.cfg +++ b/python/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = eth-erc20 -version = 0.1.1a1 +version = 0.1.2a2 description = ERC20 interface and simple contract with deployment script that lets any address mint and gift itself tokens. author = Louis Holbrook author_email = dev@holbrook.no