Skip to content

Commit

Permalink
feat: return participants, timestamp of genesis and validator root fo…
Browse files Browse the repository at this point in the history
…r consumers (#262)
  • Loading branch information
h4ck3rk3y authored Oct 5, 2023
1 parent 9dfc4de commit 3f2ea88
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions main.star
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def run(plan, args={}):
)
(
all_participants,
cl_genesis_timestamp,
final_genesis_timestamp,
genesis_validators_root,
) = participant_network.launch_participant_network(
plan,
Expand Down Expand Up @@ -245,7 +245,7 @@ def run(plan, args={}):
plan,
cl_forkmon_config_template,
all_cl_client_contexts,
cl_genesis_timestamp,
final_genesis_timestamp,
network_params.seconds_per_slot,
network_params.slots_per_epoch,
)
Expand Down Expand Up @@ -352,6 +352,11 @@ def run(plan, args={}):
user=GRAFANA_USER,
password=GRAFANA_PASSWORD,
)
output = struct(grafana_info=grafana_info)
output = struct(
grafana_info=grafana_info,
all_participants=all_participants,
final_genesis_timestamp=final_genesis_timestamp,
genesis_validators_root=genesis_validators_root,
)

return output

0 comments on commit 3f2ea88

Please sign in to comment.