@@ -64,7 +64,7 @@ get_prefunded_accounts = import_module(
6464)
6565spamoor = import_module ("./src/spamoor/spamoor.star" )
6666slashoor = import_module ("./src/slashoor/slashoor_launcher.star" )
67- ews = import_module ("./src/ews/ews_launcher .star" )
67+ zkboost = import_module ("./src/zkboost/zkboost_launcher .star" )
6868
6969GRAFANA_USER = "admin"
7070GRAFANA_PASSWORD = "admin"
@@ -1018,23 +1018,25 @@ def run(plan, args={}):
10181018 args_with_right_defaults .additional_services ,
10191019 )
10201020 plan .print ("Successfully launched slashoor" )
1021- elif additional_service == "ews" :
1022- plan .print ("Launching execution-witness-sentry" )
1023- ews_config_template = read_file (static_files .EWS_CONFIG_TEMPLATE_FILEPATH )
1024- ews .launch_ews (
1021+ elif additional_service == "zkboost" :
1022+ plan .print ("Launching zkboost" )
1023+ zkboost_config_template = read_file (
1024+ static_files .ZKBOOST_CONFIG_TEMPLATE_FILEPATH
1025+ )
1026+ zkboost .launch_zkboost (
10251027 plan ,
1026- ews_config_template ,
1028+ zkboost_config_template ,
10271029 all_participants ,
10281030 args_with_right_defaults .participants ,
1029- network_params ,
1030- args_with_right_defaults .ews_params ,
1031+ args_with_right_defaults .zkboost_params ,
10311032 global_node_selectors ,
10321033 global_tolerations ,
10331034 args_with_right_defaults .port_publisher ,
10341035 index ,
10351036 args_with_right_defaults .docker_cache_params ,
1037+ {},
10361038 )
1037- plan .print ("Successfully launched execution-witness-sentry " )
1039+ plan .print ("Successfully launched zkboost " )
10381040 else :
10391041 fail ("Invalid additional service %s" % (additional_service ))
10401042 if launch_prometheus_grafana :
0 commit comments