2021-10-18 10:47:48 +02:00
|
|
|
# external imports
|
|
|
|
from cic_eth_registry import CICRegistry
|
|
|
|
from chainlib.eth.connection import RPCConnection
|
|
|
|
|
|
|
|
|
|
|
|
def extension_start(network, *args, **kwargs):
|
2021-11-29 15:05:09 +01:00
|
|
|
"""Called by the "export" cli tool subcommand for initialization of the eth extension.
|
|
|
|
|
|
|
|
:param network: Network object to read and write settings from
|
|
|
|
:type network: cic.network.Network
|
|
|
|
"""
|
2021-10-18 10:47:48 +02:00
|
|
|
CICRegistry.address = kwargs['registry_address']
|
|
|
|
|
|
|
|
RPCConnection.register_location(kwargs['rpc_provider'], kwargs['chain_spec'])
|
|
|
|
conn = RPCConnection.connect(kwargs['chain_spec'])
|
|
|
|
|
|
|
|
registry = CICRegistry(kwargs['chain_spec'], conn)
|
|
|
|
|
|
|
|
address_declarator = registry.by_name('AddressDeclarator')
|
|
|
|
network.resource_set('eth', 'address_declarator', address_declarator)
|
|
|
|
|
|
|
|
token_index = registry.by_name('TokenRegistry')
|
|
|
|
network.resource_set('eth', 'token_index', token_index)
|
|
|
|
|
|
|
|
network.set('eth', kwargs['chain_spec'])
|
|
|
|
network.save()
|