2021-03-22 18:37:00 +01:00
""" Set identifier value on contract registry
. . moduleauthor : : Louis Holbrook < dev @holbrook.no >
. . pgp : : 0826 EDA1702D1E87C6E2875121D2E7BB88C2A746
"""
# 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
# local imports
2021-03-24 09:14:18 +01:00
from eth_contract_registry import Registry
2021-03-22 18:37:00 +01:00
logging . basicConfig ( level = logging . WARNING )
logg = logging . getLogger ( )
script_dir = os . path . dirname ( __file__ )
data_dir = os . path . join ( script_dir , ' .. ' , ' data ' )
argparser = argparse . ArgumentParser ( )
argparser . add_argument ( ' -p ' , ' --provider ' , dest = ' p ' , default = ' http://localhost:8545 ' , type = str , help = ' Web3 provider url (http only) ' )
argparser . add_argument ( ' -w ' , action = ' store_true ' , help = ' Wait for the last transaction to be confirmed ' )
argparser . add_argument ( ' -ww ' , action = ' store_true ' , help = ' Wait for every transaction to be confirmed ' )
2021-04-04 14:38:55 +02:00
argparser . add_argument ( ' -i ' , ' --chain-spec ' , dest = ' i ' , type = str , default = ' evm:ethereum:1 ' , help = ' Chain specification string ' )
2021-03-22 18:37:00 +01:00
argparser . add_argument ( ' -y ' , ' --key-file ' , dest = ' y ' , type = str , help = ' Ethereum keystore file to use for signing ' )
argparser . add_argument ( ' -r ' , ' --registry ' , dest = ' r ' , type = str , help = ' Contract registry address ' )
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 , help = ' Contract registry identifier ' )
argparser . add_argument ( ' address ' , type = str , help = ' Address to set for identifier ' )
args = argparser . parse_args ( )
if args . vv :
logg . setLevel ( logging . DEBUG )
elif args . v :
logg . setLevel ( logging . INFO )
block_last = args . w
block_all = args . ww
passphrase_env = ' ETH_PASSPHRASE '
if args . env_prefix != None :
passphrase_env = args . env_prefix + ' _ ' + passphrase_env
passphrase = os . environ . get ( passphrase_env )
if passphrase == None :
logg . warning ( ' no passphrase given ' )
passphrase = ' '
signer_address = None
keystore = DictKeystore ( )
if args . y != None :
logg . debug ( ' loading keystore file {} ' . format ( args . y ) )
signer_address = keystore . import_keystore_file ( args . y , password = passphrase )
logg . debug ( ' now have key for signer address {} ' . format ( signer_address ) )
signer = EIP155Signer ( keystore )
chain_spec = ChainSpec . from_chain_str ( args . i )
rpc = EthHTTPConnection ( args . p )
nonce_oracle = RPCNonceOracle ( signer_address , rpc )
gas_oracle = RPCGasOracle ( rpc , code_callback = Registry . gas )
registry_address = args . r
if registry_address == None :
registry_address = args . a
if registry_address == None :
raise ValueError ( ' Registry address must be set ' )
identifier = args . identifier
address = args . address
def main ( ) :
2021-04-04 14:38:55 +02:00
c = Registry ( chain_spec , signer = signer , gas_oracle = gas_oracle , nonce_oracle = nonce_oracle )
2021-03-22 18:37:00 +01:00
( tx_hash_hex , o ) = c . set ( registry_address , signer_address , identifier , address , chain_spec , ZERO_CONTENT )
rpc . do ( o )
if block_last :
r = rpc . wait ( tx_hash_hex )
if r [ ' status ' ] == 0 :
sys . stderr . write ( ' EVM revert while deploying contract. Wish I had more to tell you ' )
sys . exit ( 1 )
print ( tx_hash_hex )
if __name__ == ' __main__ ' :
main ( )