def jsonrpc_services( proxy_manager: ProxyManager, private_keys: List[PrivateKey], secret_registry_address: SecretRegistryAddress, service_registry_address: ServiceRegistryAddress, token_network_registry_address: TokenNetworkRegistryAddress, web3: Web3, contract_manager: ContractManager, ) -> BlockchainServices: secret_registry = proxy_manager.secret_registry(secret_registry_address) service_registry = None if service_registry_address: service_registry = proxy_manager.service_registry(service_registry_address) deploy_registry = proxy_manager.token_network_registry(token_network_registry_address) blockchain_services = list() for privkey in private_keys: rpc_client = JSONRPCClient(web3, privkey) proxy_manager = ProxyManager( rpc_client=rpc_client, contract_manager=contract_manager, metadata=ProxyManagerMetadata( token_network_registry_deployed_at=GENESIS_BLOCK_NUMBER, filters_start_at=GENESIS_BLOCK_NUMBER, ), ) blockchain_services.append(proxy_manager) return BlockchainServices( deploy_registry=deploy_registry, secret_registry=secret_registry, service_registry=service_registry, proxy_manager=proxy_manager, blockchain_services=blockchain_services, )
def deploy_secret_registry(deploy_client: JSONRPCClient, contract_manager: ContractManager, proxy_manager: ProxyManager) -> SecretRegistry: contract, receipt = deploy_client.deploy_single_contract( contract_name=CONTRACT_SECRET_REGISTRY, contract=contract_manager.get_contract(CONTRACT_SECRET_REGISTRY), constructor_parameters=None, ) return proxy_manager.secret_registry( SecretRegistryAddress(to_canonical_address(contract.address)), BlockNumber(receipt["blockNumber"]), )
def setup_proxies_or_exit( config: Dict[str, Any], tokennetwork_registry_contract_address: TokenNetworkRegistryAddress, secret_registry_contract_address: Address, user_deposit_contract_address: Address, service_registry_contract_address: Address, proxy_manager: ProxyManager, contracts: Dict[str, Any], routing_mode: RoutingMode, pathfinding_service_address: str, ) -> Proxies: """ Initialize and setup the contract proxies. Depending on the provided contract addresses via the CLI, the routing mode, the environment type and the network id try to initialize the proxies. Returns the initialized proxies or exits the application with an error if there is a problem. Also depending on the given arguments populate config with PFS related settings """ node_network_id = config["chain_id"] environment_type = config["environment_type"] check_smart_contract_addresses( environment_type=environment_type, node_network_id=node_network_id, tokennetwork_registry_contract_address= tokennetwork_registry_contract_address, secret_registry_contract_address=secret_registry_contract_address, contracts=contracts, ) token_network_registry = None try: if tokennetwork_registry_contract_address is not None: registered_address = tokennetwork_registry_contract_address else: registered_address = to_canonical_address( contracts[CONTRACT_TOKEN_NETWORK_REGISTRY]["address"]) token_network_registry = proxy_manager.token_network_registry( registered_address) except ContractCodeMismatch as e: handle_contract_code_mismatch(e) except AddressWithoutCode: handle_contract_no_code( "token network registry", Address(tokennetwork_registry_contract_address)) except AddressWrongContract: handle_contract_wrong_address( "token network registry", Address(tokennetwork_registry_contract_address)) secret_registry = None try: secret_registry = proxy_manager.secret_registry( secret_registry_contract_address or to_canonical_address( contracts[CONTRACT_SECRET_REGISTRY]["address"])) except ContractCodeMismatch as e: handle_contract_code_mismatch(e) except AddressWithoutCode: handle_contract_no_code("secret registry", secret_registry_contract_address) except AddressWrongContract: handle_contract_wrong_address("secret registry", secret_registry_contract_address) # If services contracts are provided via the CLI use them instead if user_deposit_contract_address is not None: contracts[CONTRACT_USER_DEPOSIT] = user_deposit_contract_address if service_registry_contract_address is not None: contracts[ CONTRACT_SERVICE_REGISTRY] = service_registry_contract_address user_deposit = None should_use_user_deposit = ( environment_type == Environment.DEVELOPMENT and ID_TO_NETWORKNAME.get(node_network_id) != "smoketest" and CONTRACT_USER_DEPOSIT in contracts) if should_use_user_deposit: try: user_deposit = proxy_manager.user_deposit( user_deposit_contract_address or to_canonical_address( contracts[CONTRACT_USER_DEPOSIT]["address"])) except ContractCodeMismatch as e: handle_contract_code_mismatch(e) except AddressWithoutCode: handle_contract_no_code("user deposit", user_deposit_contract_address) except AddressWrongContract: handle_contract_wrong_address("user_deposit", user_deposit_contract_address) service_registry = None if CONTRACT_SERVICE_REGISTRY in contracts or service_registry_contract_address: try: service_registry = proxy_manager.service_registry( service_registry_contract_address or to_canonical_address( contracts[CONTRACT_SERVICE_REGISTRY]["address"])) except ContractCodeMismatch as e: handle_contract_code_mismatch(e) except AddressWithoutCode: handle_contract_no_code("service registry", service_registry_contract_address) except AddressWrongContract: handle_contract_wrong_address("secret registry", service_registry_contract_address) # By now these should be set or Raiden aborted assert token_network_registry, "TokenNetworkRegistry needs to be set" assert secret_registry, "SecretRegistry needs to be set" if routing_mode == RoutingMode.PFS: check_pfs_configuration( service_registry=service_registry, pathfinding_service_address=pathfinding_service_address, ) pfs_info = configure_pfs_or_exit( pfs_url=pathfinding_service_address, routing_mode=routing_mode, service_registry=service_registry, node_network_id=node_network_id, token_network_registry_address=token_network_registry.address, pathfinding_max_fee=config["services"]["pathfinding_max_fee"], ) msg = "Eth address of selected pathfinding service is unknown." assert pfs_info.payment_address is not None, msg # Only check that PFS is registered in production mode if environment_type == Environment.PRODUCTION: check_pfs_for_production(service_registry=service_registry, pfs_info=pfs_info) config["pfs_config"] = PFSConfig( info=pfs_info, maximum_fee=config["services"]["pathfinding_max_fee"], iou_timeout=config["services"]["pathfinding_iou_timeout"], max_paths=config["services"]["pathfinding_max_paths"], ) else: config["pfs_config"] = None proxies = Proxies( token_network_registry=token_network_registry, secret_registry=secret_registry, user_deposit=user_deposit, service_registry=service_registry, ) return proxies