mirror of
git://holbrook.no/eth-contract-registry
synced 2024-11-16 06:26:47 +01:00
96 lines
3.1 KiB
Python
96 lines
3.1 KiB
Python
"""Set identifier value on contract registry
|
|
|
|
.. moduleauthor:: Louis Holbrook <dev@holbrook.no>
|
|
.. pgp:: 0826EDA1702D1E87C6E2875121D2E7BB88C2A746
|
|
|
|
"""
|
|
|
|
# standard imports
|
|
import sys
|
|
import os
|
|
import json
|
|
import argparse
|
|
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.constant import ZERO_CONTENT
|
|
from chainlib.eth.address import to_checksum_address
|
|
from hexathon import (
|
|
add_0x,
|
|
strip_0x,
|
|
)
|
|
|
|
# local imports
|
|
from eth_contract_registry.registry import ContractRegistry
|
|
|
|
logging.basicConfig(level=logging.WARNING)
|
|
logg = logging.getLogger()
|
|
|
|
arg_flags = chainlib.eth.cli.argflag_std_write | chainlib.eth.cli.Flag.EXEC
|
|
argparser = chainlib.eth.cli.ArgumentParser(arg_flags)
|
|
argparser.add_argument('--chain-hash', type=str, dest='chain_hash', default=ZERO_CONTENT, help='Chain config hash to use for entry')
|
|
argparser.add_argument('--identifier', required=True, type=str, help='Contract identifier to set')
|
|
argparser.add_positional('address', type=str, help='Contract address to set for identifier')
|
|
args = argparser.parse_args()
|
|
|
|
extra_args = {
|
|
'chain_hash': None,
|
|
'identifier': None,
|
|
'address': None,
|
|
}
|
|
config = chainlib.eth.cli.Config.from_args(args, arg_flags, extra_args=extra_args, default_fee_limit=ContractRegistry.gas())
|
|
|
|
wallet = chainlib.eth.cli.Wallet()
|
|
wallet.from_config(config)
|
|
|
|
rpc = chainlib.eth.cli.Rpc(wallet=wallet)
|
|
conn = rpc.connect_by_config(config)
|
|
|
|
chain_spec = ChainSpec.from_chain_str(config.get('CHAIN_SPEC'))
|
|
|
|
|
|
def main():
|
|
signer = rpc.get_signer()
|
|
signer_address = rpc.get_sender_address()
|
|
|
|
gas_oracle = rpc.get_gas_oracle()
|
|
nonce_oracle = rpc.get_nonce_oracle()
|
|
|
|
c = ContractRegistry(chain_spec, signer=signer, gas_oracle=gas_oracle, nonce_oracle=nonce_oracle)
|
|
|
|
subject_address = to_checksum_address(config.get('_ADDRESS'))
|
|
if not config.true('_UNSAFE') and subject_address != add_0x(config.get('_ADDRESS')):
|
|
raise ValueError('invalid checksum address for subject_address')
|
|
|
|
registry_address = to_checksum_address(config.get('_EXEC_ADDRESS'))
|
|
if not config.true('_UNSAFE') and registry_address != add_0x(config.get('_EXEC_ADDRESS')):
|
|
raise ValueError('invalid checksum address for contract')
|
|
|
|
chain_config_hash = config.get('_CHAIN_HASH')
|
|
chain_config_hash_bytes = bytes.fromhex(strip_0x(chain_config_hash))
|
|
if len(chain_config_hash_bytes) != 32:
|
|
raise ValueError('chain config hash must be 32 bytes')
|
|
chain_config_hash = add_0x(chain_config_hash)
|
|
|
|
(tx_hash_hex, o) = c.set(registry_address, signer_address, config.get('_IDENTIFIER'), subject_address)
|
|
|
|
if config.get('_RPC_SEND'):
|
|
conn.do(o)
|
|
if config.get('_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)
|
|
|
|
print(tx_hash_hex)
|
|
else:
|
|
print(o)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|