Use explicit pre-release signeR

This commit is contained in:
nolash 2021-08-24 21:43:06 +02:00
parent 9cbd168524
commit 9545e8862d
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
4 changed files with 9 additions and 5 deletions

View File

@ -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

View File

@ -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):

View File

@ -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

View File

@ -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