eth-accounts-index/python/eth_accounts_index/runnable/deploy.py

72 lines
1.9 KiB
Python
Raw Normal View History

2020-12-01 13:08:14 +01:00
"""Deploys accounts index, registering arbitrary number of writers
.. moduleauthor:: Louis Holbrook <dev@holbrook.no>
.. pgp:: 0826EDA1702D1E87C6E2875121D2E7BB88C2A746
"""
# standard imports
2021-03-31 16:07:23 +02:00
import sys
2020-12-01 23:51:17 +01:00
import os
2020-12-01 13:08:14 +01:00
import json
import argparse
import logging
2021-07-30 07:27:36 +02:00
# external imports
import chainlib.eth.cli
2021-02-19 20:17:15 +01:00
from chainlib.chain import ChainSpec
2021-03-31 16:07:23 +02:00
from chainlib.eth.connection import EthHTTPConnection
from chainlib.eth.tx import receipt
# local imports
2021-04-30 13:14:48 +02:00
from eth_accounts_index.registry import AccountRegistry
2020-12-01 13:08:14 +01:00
logging.basicConfig(level=logging.WARNING)
logg = logging.getLogger()
2021-07-30 07:27:36 +02:00
arg_flags = chainlib.eth.cli.argflag_std_write
argparser = chainlib.eth.cli.ArgumentParser(arg_flags)
2020-12-01 13:08:14 +01:00
args = argparser.parse_args()
2021-07-30 07:27:36 +02:00
config = chainlib.eth.cli.Config.from_args(args, arg_flags, default_fee_limit=AccountRegistry.gas())
2021-01-10 20:40:29 +01:00
2021-07-30 07:27:36 +02:00
wallet = chainlib.eth.cli.Wallet()
wallet.from_config(config)
2021-01-10 20:40:29 +01:00
2021-07-30 07:27:36 +02:00
rpc = chainlib.eth.cli.Rpc(wallet=wallet)
conn = rpc.connect_by_config(config)
2021-01-10 20:40:29 +01:00
2021-07-30 07:27:36 +02:00
chain_spec = ChainSpec.from_chain_str(config.get('CHAIN_SPEC'))
2021-01-10 20:40:29 +01:00
2021-07-30 07:27:36 +02:00
def main():
signer = rpc.get_signer()
signer_address = rpc.get_sender_address()
2020-12-01 13:08:14 +01:00
2021-07-30 07:27:36 +02:00
gas_oracle = rpc.get_gas_oracle()
nonce_oracle = rpc.get_nonce_oracle()
2020-12-01 13:08:14 +01:00
2021-04-04 14:54:17 +02:00
c = AccountRegistry(chain_spec, signer=signer, gas_oracle=gas_oracle, nonce_oracle=nonce_oracle)
2021-07-30 07:27:36 +02:00
2021-03-31 16:07:23 +02:00
(tx_hash_hex, o) = c.constructor(signer_address)
2021-07-30 07:27:36 +02:00
if config.get('_RPC_SEND'):
conn.do(o)
if config.get('_WAIT'):
r = conn.wait(tx_hash_hex)
2021-04-12 16:25:22 +02:00
if r['status'] == 0:
sys.stderr.write('EVM revert while deploying contract. Wish I had more to tell you')
sys.exit(1)
# TODO: pass through translator for keys (evm tester uses underscore instead of camelcase)
address = r['contractAddress']
print(address)
else:
print(tx_hash_hex)
2021-07-30 07:27:36 +02:00
else:
print(o)
2020-12-01 13:08:14 +01:00
2020-12-01 23:51:17 +01:00
if __name__ == '__main__':
main()