commit 9545e8862d45fbf88963cdc3f1438eb396a7e66d
parent 9cbd1685248a0d57958d7f8537ca84f98e6a5185
Author: nolash <dev@holbrook.no>
Date: Tue, 24 Aug 2021 21:43:06 +0200
Use explicit pre-release signeR
Diffstat:
4 files changed, 9 insertions(+), 5 deletions(-)
diff --git a/python/eth_token_index/runnable/add.py b/python/eth_token_index/runnable/add.py
@@ -19,6 +19,7 @@ from chainlib.chain import ChainSpec
from chainlib.eth.tx import receipt
from eth_erc20 import ERC20
from chainlib.eth.address import to_checksum_address
+from hexathon import add_0x
# local imports
from eth_token_index import TokenUniqueSymbolIndex
diff --git a/python/eth_token_index/runnable/list.py b/python/eth_token_index/runnable/list.py
@@ -49,7 +49,10 @@ chain_spec = ChainSpec.from_chain_str(config.get('CHAIN_SPEC'))
def out_element(e, w=sys.stdout):
- w.write(e[1] + '\t' + e[0] + '\n')
+ if config.get('_RAW'):
+ w.write(e[1] + '\n')
+ else:
+ w.write(e[1] + '\t' + e[0] + '\n')
def element(ifc, conn, contract_address, token_symbol, w=sys.stdout):
diff --git 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.5a2,<=0.1.0
-eth_erc20>=0.0.12a1,<=0.1.0
+crypto-dev-signer>=0.4.15a1,<=0.4.15
+chainlib-eth>=0.0.9a3,<=0.1.0
+eth_erc20>=0.1.2a2,<=0.2.0
diff --git a/python/setup.cfg b/python/setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = eth-address-index
-version = 0.2.1a1
+version = 0.2.3a3
description = Signed metadata declarations for ethereum addresses
author = Louis Holbrook
author_email = dev@holbrook.no