contract-registry

Ethereum Smart Contract key-value registry
Log | Files | Refs

commit 8737b94e5467af2ad1d5e1841475f7b1e32fb106
parent 17c2e972712448d47adda29e20cf92da89d3f4ed
Author: nolash <dev@holbrook.no>
Date:   Thu, 25 Mar 2021 09:27:31 +0100

Add list runnable script

Diffstat:
Mpython/eth_contract_registry/registry.py | 10+++++++++-
Apython/eth_contract_registry/runnable/list.py | 100+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Mpython/gmon.out | 0
Mpython/setup.cfg | 2+-
4 files changed, 110 insertions(+), 2 deletions(-)

diff --git a/python/eth_contract_registry/registry.py b/python/eth_contract_registry/registry.py @@ -26,7 +26,10 @@ from hexathon import ( from chainlib.eth.tx import TxFactory # local imports -from .encoding import to_identifier +from .encoding import ( + to_identifier, + from_identifier_hex, + ) logg = logging.getLogger(__name__) @@ -148,3 +151,8 @@ class Registry(TxFactory): tx = self.set_code(tx, data) o['params'].append(self.normalize(tx)) return o + + + @classmethod + def parse_identifier(self, v): + return from_identifier_hex(v) diff --git a/python/eth_contract_registry/runnable/list.py b/python/eth_contract_registry/runnable/list.py @@ -0,0 +1,100 @@ +"""Set identifier value on contract registry + +.. moduleauthor:: Louis Holbrook <dev@holbrook.no> +.. pgp:: 0826EDA1702D1E87C6E2875121D2E7BB88C2A746 + +""" + +# standard imports +import sys +import os +import json +import argparse +import logging + +# third-party imports +from crypto_dev_signer.eth.signer import ReferenceSigner as EIP155Signer +from crypto_dev_signer.keystore.dict import DictKeystore +from crypto_dev_signer.eth.helper import EthTxExecutor +from chainlib.chain import ChainSpec +from chainlib.eth.nonce import RPCNonceOracle +from chainlib.eth.gas import RPCGasOracle +from chainlib.eth.connection import EthHTTPConnection +from chainlib.eth.tx import receipt +from chainlib.eth.constant import ZERO_CONTENT +from chainlib.error import JSONRPCException + +# local imports +from eth_contract_registry import Registry + +logging.basicConfig(level=logging.WARNING) +logg = logging.getLogger() + +script_dir = os.path.dirname(__file__) +data_dir = os.path.join(script_dir, '..', 'data') + +default_format = 'terminal' + +argparser = argparse.ArgumentParser() +argparser.add_argument('-p', '--provider', dest='p', default='http://localhost:8545', type=str, help='RPC provider url (http only)') +argparser.add_argument('-i', '--chain-spec', dest='i', type=str, default='Ethereum:1', help='Chain specification string') +argparser.add_argument('-r', '--registry', dest='r', required=True, type=str, help='Contract registry address') +argparser.add_argument('-f', '--format', dest='f', type=str, default=default_format, help='Output format [human, brief]') +argparser.add_argument('-v', action='store_true', help='Be verbose') +argparser.add_argument('-vv', action='store_true', help='Be more verbose') +argparser.add_argument('--env-prefix', default=os.environ.get('CONFINI_ENV_PREFIX'), dest='env_prefix', type=str, help='environment prefix for variables to overwrite configuration') +argparser.add_argument('identifier', type=str, nargs='?', help='Token symbol to return address for') +args = argparser.parse_args() + +if args.vv: + logg.setLevel(logging.DEBUG) +elif args.v: + logg.setLevel(logging.INFO) + +chain_spec = ChainSpec.from_chain_str(args.i) +chain_id = chain_spec.network_id() + +rpc = EthHTTPConnection(args.p) +registry_address = args.r +identifier = args.identifier +fmt = args.f + + +def out_element(e, fmt=default_format, w=sys.stdout): + logg.debug('format {}'.format(fmt)) + if fmt == 'brief': + w.write(e[1] + '\n') + else: + w.write('{} {}\n'.format(e[0], e[1])) + + +def element(ifc, identifier, fmt=default_format, w=sys.stdout): + o = ifc.address_of(registry_address, identifier) + r = rpc.do(o) + address = ifc.parse_address_of(r) + out_element((identifier, address), fmt, w) + + +def ls(ifc, fmt=default_format, w=sys.stdout): + i = 0 + while True: + o = ifc.identifier(registry_address, i) + try: + r = rpc.do(o) + identifier = ifc.parse_identifier(r) + element(ifc, identifier, fmt, w) + i += 1 + except JSONRPCException: + break + + +def main(): + c = Registry() + if identifier != None: + element(c, identifier, fmt=fmt, w=sys.stdout) + else: + ls(c, fmt=fmt, w=sys.stdout) + + +if __name__ == '__main__': + main() diff --git a/python/gmon.out b/python/gmon.out Binary files differ. diff --git a/python/setup.cfg b/python/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = eth-contract-registry -version = 0.5.4a3 +version = 0.5.4a4 description = Ethereum Smart Contract key-value registry author = Louis Holbrook author_email = dev@holbrook.no