mirror of
git://holbrook.no/eth-contract-registry
synced 2024-11-16 14:36:46 +01:00
104 lines
2.9 KiB
Python
104 lines
2.9 KiB
Python
"""Deploys contract registry
|
|
|
|
.. moduleauthor:: Louis Holbrook <dev@holbrook.no>
|
|
.. pgp:: 0826EDA1702D1E87C6E2875121D2E7BB88C2A746
|
|
|
|
"""
|
|
|
|
# standard imports
|
|
import sys
|
|
import os
|
|
import logging
|
|
|
|
# external imports
|
|
import chainlib.eth.cli
|
|
from chainlib.chain import ChainSpec
|
|
from chainlib.eth.connection import EthHTTPConnection
|
|
from chainlib.eth.tx import receipt
|
|
from chainlib.eth.cli.arg import (
|
|
Arg,
|
|
ArgFlag,
|
|
process_args,
|
|
)
|
|
from chainlib.eth.cli.config import (
|
|
Config,
|
|
process_config,
|
|
)
|
|
from chainlib.eth.cli.log import process_log
|
|
from chainlib.eth.settings import process_settings
|
|
from chainlib.settings import ChainSettings
|
|
from chainlib.eth.constant import ZERO_CONTENT
|
|
|
|
# local imports
|
|
from eth_contract_registry.registry import ContractRegistry
|
|
|
|
logging.basicConfig(level=logging.WARNING)
|
|
logg = logging.getLogger()
|
|
|
|
|
|
def process_config_local(config, arg, args, flags):
|
|
identifiers = args.identifier
|
|
if len(identifiers) == 0:
|
|
raise ValueError('at least one identifier must be defined')
|
|
for idntfr in identifiers:
|
|
if len(idntfr) > 32:
|
|
raise ValueError('identifier must be max 32 characters')
|
|
config.add(identifiers, '_IDENTIFIER')
|
|
return config
|
|
|
|
|
|
arg_flags = ArgFlag()
|
|
arg = Arg(arg_flags)
|
|
flags = arg_flags.STD_WRITE
|
|
|
|
argparser = chainlib.eth.cli.ArgumentParser()
|
|
argparser = process_args(argparser, arg, flags)
|
|
argparser.add_argument('--identifier', type=str, action='append', help='SHA256 of description metadata of contract deployer')
|
|
args = argparser.parse_args()
|
|
|
|
logg = process_log(args, logg)
|
|
|
|
config = Config()
|
|
config = process_config(config, arg, args, flags)
|
|
config = process_config_local(config, arg, args, flags)
|
|
logg.debug('config loaded:\n{}'.format(config))
|
|
|
|
settings = ChainSettings()
|
|
settings = process_settings(settings, config)
|
|
logg.debug('settings loaded:\n{}'.format(settings))
|
|
|
|
|
|
def main():
|
|
conn = settings.get('CONN')
|
|
c = ContractRegistry(
|
|
settings.get('CHAIN_SPEC'),
|
|
signer=settings.get('SIGNER'),
|
|
gas_oracle=settings.get('FEE_ORACLE'),
|
|
nonce_oracle=settings.get('NONCE_ORACLE'),
|
|
)
|
|
|
|
(tx_hash_hex, o) = c.constructor(
|
|
settings.get('SENDER_ADDRESS'),
|
|
identifier_strings=config.get('_IDENTIFIER'),
|
|
)
|
|
|
|
if settings.get('RPC_SEND'):
|
|
conn.do(o)
|
|
if config.true('_WAIT'):
|
|
r = conn.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)
|
|
# TODO: pass through translator for keys (evm tester uses underscore instead of camelcase)
|
|
address = r['contractAddress']
|
|
|
|
print(address)
|
|
else:
|
|
print(tx_hash_hex)
|
|
else:
|
|
print(o)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|