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
8fe60808
Commit
8fe60808
authored
Nov 10, 2022
by
Gyanendra Mishra
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nethermind works
parent
0f1381a1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
5 deletions
+7
-5
README.md
README.md
+4
-3
nethermind_launcher.star
...articipant_network/el/nethermind/nethermind_launcher.star
+2
-1
participant_network.star
src/participant_network/participant_network.star
+1
-1
No files found.
README.md
View file @
8fe60808
...
...
@@ -29,7 +29,7 @@ This is the Startosis version of the popular [eth2-merge-kurtosis-module](https:
-
[
x
]
data generation
-
[
x
]
remove services post generation
-
[
]
participant_network/el (requires facts and waits)
-
[
]
besu
-
[
x
]
besu
-
[
x
]
facts and waits + private_ip_address_placeholder
-
[
x
]
framework
-
[
]
facts could use more waiting
...
...
@@ -39,9 +39,10 @@ This is the Startosis version of the popular [eth2-merge-kurtosis-module](https:
-
[
x
]
geth DEMO
-
[
x
]
facts and waits + private_ip_address_placeholder
-
[
x
]
framework TESTED
-
[
]
nethermind
-
[
]
facts and waits + private_ip_address_placeholder
-
[
x
]
nethermind
-
[
x
]
facts and waits + private_ip_address_placeholder
-
[
x
]
framework
-
[
]
facts could use more waiting
-
[
x
]
el_client_context pure POJO NO BLOCKERS
-
[
x
]
el_client_launcher interface not necessary
-
[
x
]
el_availability_waiter - facts and waits - DESCOPED facts and waits will do this
...
...
src/participant_network/el/nethermind/nethermind_launcher.star
View file @
8fe60808
...
...
@@ -48,6 +48,7 @@ NETHERMIND_LOG_LEVELS = {
module_io.GlobalClientLogLevel.trace: "TRACE",
}
ENODE_FACT_NAME = "enode-fact"
def launch(
...
...
@@ -134,7 +135,7 @@ def get_service_config(genesis_data, image, existing_el_clients, log_level, extr
)
def new_nethermind_launcher(
network_id
):
def new_nethermind_launcher(
el_genesis_data
):
return struct(
el_genesis_data = el_genesis_data
)
src/participant_network/participant_network.star
View file @
8fe60808
...
...
@@ -79,7 +79,7 @@ def launch_participant_network(participants, network_params, global_log_level):
module_io.ELClientType.geth : {"launcher": new_geth_launcher(network_params.network_id, el_genesis_data, geth_prefunded_keys_artifact_id, PRE_FUNDED_ACCOUNTS), "launch_method": launch_geth},
module_io.ELClientType.besu : {"launcher": new_besu_launcher(network_params.network_id, el_genesis_data), "launch_method": launch_besu},
module_io.ELClientType.erigon : {"launcher": new_erigon_launcher(network_params.network_id, el_genesis_data), "launch_method": launch_erigon},
module_io.ELClientType.nethermind : {"launcher": new_nethermind_launcher(
network_params.network_id, el_genesis_data)
},
module_io.ELClientType.nethermind : {"launcher": new_nethermind_launcher(
el_genesis_data), "launch_method": launch_nethermind
},
}
all_el_client_contexts = []
...
...
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