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
18da90bd
Unverified
Commit
18da90bd
authored
Oct 20, 2023
by
Barnabas Busa
Committed by
GitHub
Oct 20, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: use base image instead of pip install (#322)
parent
51a44228
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
12 deletions
+2
-12
eip4788_deployment_launcher.star
src/eip4788_deployment/eip4788_deployment_launcher.star
+1
-6
mev_custom_flood_launcher.star
src/mev_custom_flood/mev_custom_flood_launcher.star
+1
-6
No files found.
src/eip4788_deployment/eip4788_deployment_launcher.star
View file @
18da90bd
PYTHON_IMAGE = "
python:3.11-alpine
"
PYTHON_IMAGE = "
ethpandaops/python-web3
"
EIP4788_DEPLOYMENT_SERVICE_NAME = "eip4788-contract-deployment"
...
...
@@ -18,11 +18,6 @@ def deploy_eip4788_contract_in_background(plan, sender_key, el_uri):
),
)
plan.exec(
service_name=EIP4788_DEPLOYMENT_SERVICE_NAME,
recipe=ExecRecipe(["pip", "install", "web3"]),
)
plan.exec(
service_name=EIP4788_DEPLOYMENT_SERVICE_NAME,
recipe=ExecRecipe(
...
...
src/mev_custom_flood/mev_custom_flood_launcher.star
View file @
18da90bd
PYTHON_IMAGE = "
python:3.11-alpine
"
PYTHON_IMAGE = "
ethpandaops/python-web3
"
CUSTOM_FLOOD_SERVICE_NAME = "mev-custom-flood"
...
...
@@ -19,11 +19,6 @@ def spam_in_background(plan, sender_key, receiver_key, el_uri, params):
),
)
plan.exec(
service_name=CUSTOM_FLOOD_SERVICE_NAME,
recipe=ExecRecipe(["pip", "install", "web3", "click"]),
)
plan.exec(
service_name=CUSTOM_FLOOD_SERVICE_NAME,
recipe=ExecRecipe(
...
...
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