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
05240578
Commit
05240578
authored
Nov 10, 2022
by
Gyanendra Mishra
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ERIGON wroks
parent
fcdc0291
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
README.md
README.md
+3
-2
erigon_launcher.star
src/participant_network/el/erigon/erigon_launcher.star
+3
-4
No files found.
README.md
View file @
05240578
...
...
@@ -32,8 +32,9 @@ This is the Startosis version of the popular [eth2-merge-kurtosis-module](https:
-
[
]
besu
-
[
x
]
facts and waits + private_ip_address_placeholder
-
[
x
]
framework
-
[
]
erigon
-
[
]
facts and waits + private_ip_address_placeholder
-
[
]
facts could use more waiting
-
[
x
]
erigon
-
[
x
]
facts and waits + private_ip_address_placeholder
-
[
x
]
framework
-
[
x
]
geth DEMO
-
[
x
]
facts and waits + private_ip_address_placeholder
...
...
src/participant_network/el/erigon/erigon_launcher.star
View file @
05240578
...
...
@@ -34,12 +34,12 @@ PRIVATE_IP_ADDRESS_PLACEHOLDER = "KURTOSIS_IP_ADDR_PLACEHOLDER"
TCP_PROTOCOL = "TCP"
UDP_PROTOCOL = "UDP"
## Engine port was removed from here
USED_PORTS = {
RPC_PORT_ID: new_port_spec(RPC_PORT_NUM, TCP_PROTOCOL),
WS_PORT_ID: new_port_spec(WS_PORT_NUM, TCP_PROTOCOL),
TCP_DISCOVERY_PORT_ID: new_port_spec(DISCOVERY_PORT_NUM, TCP_PROTOCOL),
UDP_DISCOVERY_PORT_ID: new_port_spec(DISCOVERY_PORT_NUM, UDP_PROTOCOL),
ENGINE_RPC_PORT_ID: new_port_spec(ENGINE_RPC_PORT_NUM, TCP_PROTOCOL)
}
ENTRYPOINT_ARGS = ["sh", "-c"]
...
...
@@ -109,7 +109,7 @@ def get_service_config(network_id, genesis_data, image, existing_el_clients, ver
launch_node_cmd_args = [
"erigon",
"--verbosity=" + verbosity_level,
"--
log.console.
verbosity=" + verbosity_level,
"--datadir=" + EXECUTION_DATA_DIRPATH_ON_CLIENT_CONTAINER,
"--networkid=" + network_id,
"--http",
...
...
@@ -121,9 +121,8 @@ def get_service_config(network_id, genesis_data, image, existing_el_clients, ver
"--ws",
"--allow-insecure-unlock",
"--nat=extip:" + PRIVATE_IP_ADDRESS_PLACEHOLDER,
"--engine.port={0}".format(ENGINE_RPC_PORT_NUM),
"--engine.addr=0.0.0.0",
"--authrpc.jwtsecret={0}".format(jwt_secret_json_filepath_on_client),
## TODO engine port was removed from here
"--nodiscover",
"--staticpeers={0}".format(boot_node.enode),
]
...
...
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