mirror of
git://holbrook.no/eth-accounts-index
synced 2024-11-05 18:26:45 +01:00
99 lines
3.0 KiB
Python
99 lines
3.0 KiB
Python
"""Query account index state
|
|
|
|
.. 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 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_accounts_index import AccountsIndex
|
|
|
|
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='evm:ethereum:1', help='Chain specification string')
|
|
argparser.add_argument('-a', '--contract-address', dest='a', required=True, type=str, help='Contract 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('address', type=str, nargs='?', help='Address to check registration 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)
|
|
|
|
rpc = EthHTTPConnection(args.p)
|
|
account_registry_address = args.a
|
|
address = args.address
|
|
fmt = args.f
|
|
|
|
|
|
def out_element(e, fmt=default_format, w=sys.stdout):
|
|
logg.debug('format {}'.format(fmt))
|
|
if fmt == 'brief':
|
|
w.write(str(e[1]) + '\n')
|
|
else:
|
|
w.write('{} {}\n'.format(e[0], e[1]))
|
|
|
|
|
|
def element(ifc, address, fmt=default_format, w=sys.stdout):
|
|
o = ifc.have(account_registry_address, address)
|
|
r = rpc.do(o)
|
|
have = ifc.parse_have(r)
|
|
out_element((address, have), fmt, w)
|
|
|
|
|
|
def ls(ifc, fmt=default_format, w=sys.stdout):
|
|
i = 0
|
|
while True:
|
|
o = ifc.entry(account_registry_address, i)
|
|
try:
|
|
r = rpc.do(o)
|
|
account = ifc.parse_account(r)
|
|
out_element((i, account), fmt, w)
|
|
i += 1
|
|
except JSONRPCException as e:
|
|
break
|
|
|
|
|
|
def main():
|
|
c = AccountsIndex(chain_spec)
|
|
if address != None:
|
|
element(c, address, fmt=fmt, w=sys.stdout)
|
|
else:
|
|
ls(c, fmt=fmt, w=sys.stdout)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|