2021-03-31 16:07:23 +02:00
""" Adds/removes writers to accounts index
. . moduleauthor : : Louis Holbrook < dev @holbrook.no >
. . pgp : : 0826 EDA1702D1E87C6E2875121D2E7BB88C2A746
"""
# standard imports
import os
import json
import argparse
import logging
import sys
# 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
2021-04-12 16:25:22 +02:00
from chainlib . eth . nonce import (
RPCNonceOracle ,
OverrideNonceOracle ,
)
from chainlib . eth . gas import (
RPCGasOracle ,
OverrideGasOracle ,
)
2021-03-31 16:07:23 +02:00
from chainlib . eth . connection import EthHTTPConnection
from chainlib . eth . tx import receipt
# local imports
from eth_accounts_index import AccountRegistry
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:54:17 +02:00
argparser . add_argument ( ' -i ' , ' --chain-spec ' , dest = ' i ' , type = str , default = ' evm:ethereum:1 ' , help = ' Chain specification string ' )
2021-03-31 16:07:23 +02:00
argparser . add_argument ( ' -y ' , ' --key-file ' , dest = ' y ' , type = str , help = ' Ethereum keystore file to use for signing ' )
argparser . add_argument ( ' -a ' , ' --contract-address ' , dest = ' a ' , required = True , type = str , help = ' Contract address to account index to edit ' )
argparser . add_argument ( ' --delete ' , action = ' store_true ' , help = ' Delete address ' )
argparser . add_argument ( ' -v ' , action = ' store_true ' , help = ' Be verbose ' )
argparser . add_argument ( ' -vv ' , action = ' store_true ' , help = ' Be more verbose ' )
2021-04-12 16:25:22 +02:00
argparser . add_argument ( ' -d ' , action = ' store_true ' , help = ' Dump RPC calls to terminal and do not send ' )
argparser . add_argument ( ' --gas-price ' , type = int , dest = ' gas_price ' , help = ' Override gas price ' )
argparser . add_argument ( ' --nonce ' , type = int , help = ' Override transaction nonce ' )
2021-03-31 16:07:23 +02:00
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 , help = ' Subject address ' )
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 )
2021-04-12 16:25:22 +02:00
nonce_oracle = None
if args . nonce != None :
nonce_oracle = OverrideNonceOracle ( signer_address , args . nonce )
else :
nonce_oracle = RPCNonceOracle ( signer_address , rpc )
gas_oracle = None
if args . gas_price != None :
gas_oracle = OverrideGasOracle ( price = args . gas_price , conn = rpc , code_callback = AccountRegistry . gas )
else :
gas_oracle = RPCGasOracle ( rpc , code_callback = AccountRegistry . gas )
dummy = args . d
2021-03-31 16:07:23 +02:00
contract_address = args . a
address = args . address
delete = False
if args . delete :
delete = True
def main ( ) :
2021-04-04 14:54:17 +02:00
c = AccountRegistry ( chain_spec , signer = signer , gas_oracle = gas_oracle , nonce_oracle = nonce_oracle )
2021-03-31 16:07:23 +02:00
tx_hash_hex = None
o = None
if delete :
( tx_hash_hex , o ) = c . delete_writer ( contract_address , signer_address , address )
else :
( tx_hash_hex , o ) = c . add_writer ( contract_address , signer_address , address )
2021-04-12 16:25:22 +02:00
if dummy :
print ( tx_hash_hex )
print ( o )
else :
rpc . do ( o )
r = rpc . wait ( tx_hash_hex )
if block_last :
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 )
2021-03-31 16:07:23 +02:00
if __name__ == ' __main__ ' :
main ( )