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
cfca6d13
Unverified
Commit
cfca6d13
authored
Oct 02, 2023
by
Gyanendra Mishra
Committed by
GitHub
Oct 02, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci: added bchains mev test (#259)
parent
cf6fbcae
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
44 additions
and
1 deletion
+44
-1
config.yml
.circleci/config.yml
+13
-0
complex-mev.json
.circleci/tests/complex-mev.json
+30
-0
mev_custom_flood_launcher.star
src/mev_custom_flood/mev_custom_flood_launcher.star
+1
-1
No files found.
.circleci/config.yml
View file @
cfca6d13
...
@@ -170,6 +170,13 @@ jobs:
...
@@ -170,6 +170,13 @@ jobs:
-
checkout
-
checkout
-
run
:
kurtosis run ${PWD} "$(cat ./.circleci/tests/mev.json)"
-
run
:
kurtosis run ${PWD} "$(cat ./.circleci/tests/mev.json)"
complex_mev
:
executor
:
ubuntu_vm
steps
:
-
<<
:
*setup_kurtosis
-
checkout
-
run
:
kurtosis run ${PWD} "$(cat ./.circleci/tests/complex-mev.json)"
nimbus_mev
:
nimbus_mev
:
executor
:
ubuntu_vm
executor
:
ubuntu_vm
steps
:
steps
:
...
@@ -234,3 +241,9 @@ workflows:
...
@@ -234,3 +241,9 @@ workflows:
branches
:
branches
:
ignore
:
ignore
:
-
main
-
main
-
complex_mev
:
filters
:
branches
:
ignore
:
-
main
.circleci/tests/complex-mev.json
0 → 100644
View file @
cfca6d13
{
"participants"
:
[
{
"el_client_type"
:
"geth"
,
"el_client_image"
:
"ethereum/client-go:latest"
,
"el_client_log_level"
:
""
,
"el_extra_params"
:
[],
"cl_client_type"
:
"lighthouse"
,
"cl_client_image"
:
""
,
"cl_client_log_level"
:
""
,
"beacon_extra_params"
:
[],
"validator_extra_params"
:
[],
"builder_network_params"
:
null
,
"count"
:
1
}
],
"network_params"
:
{
"seconds_per_slot"
:
12
,
"slots_per_epoch"
:
32
,
"capella_fork_epoch"
:
1
},
"mev_type"
:
"full"
,
"mev_params"
:
{
"mev_relay_image"
:
"public.ecr.aws/t1d5h1w5/pepc-boost-relay:latest"
,
"mev_builder_image"
:
"public.ecr.aws/t1d5h1w5/pepc-boost-builder:latest"
,
"mev_flood_seconds_per_bundle"
:
7
,
"launch_custom_flood"
:
true
}
}
\ No newline at end of file
src/mev_custom_flood/mev_custom_flood_launcher.star
View file @
cfca6d13
...
@@ -3,7 +3,7 @@ CUSTOM_FLOOD_SREVICE_NAME = "mev-custom-flood"
...
@@ -3,7 +3,7 @@ CUSTOM_FLOOD_SREVICE_NAME = "mev-custom-flood"
def spam_in_background(plan, sender_key, receiver_key, el_uri):
def spam_in_background(plan, sender_key, receiver_key, el_uri):
sender_script = plan.upload_files(".
./mev_custom_flood
/sender.py")
sender_script = plan.upload_files("./sender.py")
plan.add_service(
plan.add_service(
name=CUSTOM_FLOOD_SREVICE_NAME,
name=CUSTOM_FLOOD_SREVICE_NAME,
...
...
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