Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ethereum-package
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
ethereum-package
Commits
ff81a9a6
Commit
ff81a9a6
authored
Oct 28, 2022
by
Gyanendra Mishra
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more stuff
parent
02532dc7
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
0 deletions
+25
-0
cl_validator_keystore_generator.star
..._validator_keystores/cl_validator_keystore_generator.star
+0
-0
generate_keystores_result.star
...tor/cl_validator_keystores/generate_keystores_result.star
+13
-0
keystore_files.star
...data_generator/cl_validator_keystores/keystore_files.star
+12
-0
No files found.
src/participant_network/prelaunch_data_generator/cl_validator_keystores/cl_validator_keystore_generator.star
0 → 100644
View file @
ff81a9a6
src/participant_network/prelaunch_data_generator/cl_validator_keystores/generate_keystores_result.star
0 → 100644
View file @
ff81a9a6
# Package object containing information about the keystores that were generated for validators
# during genesis creation
def new_generate_keystores_result(prysm_password_artifact_uuid, prysm_password_relative_filepath, per_node_keystores):
return struct(
#Files artifact UUID where the Prysm password is stored
PrysmPasswordArtifactUUid = prysm_password_artifact_uuid,
# Relative to root of files artifact
PrysmPasswordRelativeFilepath = prysm_password_relative_filepath,
# Contains keystores-per-client-type for each node in the network
PerNodeKeystores = per_node_keystores
)
\ No newline at end of file
src/participant_network/prelaunch_data_generator/cl_validator_keystores/keystore_files.star
0 → 100644
View file @
ff81a9a6
# One of these will be created per node we're trying to start
def new_keystore_files(files_artifact_u_ui_d, raw_keys_relative_dirpath, raw_secrets_relative_dirpath, nimbus_keys_relative_dirpath, prysm_relative_dirpath, teku_keys_relative_dirpath, teku_secrets_relative_dirpath):
return struct(
FilesArtifactUUID = files_artifact_uuid,
# ------------ All directories below are relative to the root of the files artifact ----------------
RawKeysRelativeDirpath = raw_keys_relative_dirpath,
RawSecretsRelativeDirpath = raw_secrets_relative_dirpath,
NimbusKeysRelativeDirpath = nimbus_keys_relative_dirpath,
PrysmRelativeDirpath = prysm_relative_dirpath,
TekuKeysRelativeDirpath = teku_keys_relative_dirpath,
TekuSecretsRelativeDirpath = teku_secrets_relative_dirpath
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment