Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move ejector messages to .eth #1931

Merged
merged 1 commit into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added .eth/charon/.empty
Empty file.
Empty file added .eth/lido-ejector/.empty
Empty file.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ ext-network.yml.original
ext-network.yml.bak
.eth/*
.eth_backup*
.charon/*
validator-ejector/*
!.eth/README.md
!.eth/validator_keys/.empty
!.eth/exit_messages/.empty
!.eth/dkg_output/.empty
!.eth/charon/.empty
!.eth/lido-ejector/.empty
!.eth/ethdo/README.md
!.eth/ethdo/create-withdrawal-change.sh
*.swp
Expand Down
2 changes: 1 addition & 1 deletion ethd
Original file line number Diff line number Diff line change
Expand Up @@ -3214,7 +3214,7 @@ again or Cancel on the next screen." 10 75


__query_lido_obol_enr() {
${__as_owner} mkdir -p ./.eth
${__as_owner} mkdir -p ./.eth/charon
__outcome__=$(__docompose -f ./lido-obol.yml run -u "$(id -u)":"$(id -g)" --rm charon-create-enr)
if [[ "${__outcome__}" =~ "Created ENR private key:" ]]; then
__lido_obol_operator_enr=$(echo "${__outcome__}" | grep -e 'enr:')
Expand Down
4 changes: 2 additions & 2 deletions lido-obol.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ services:
image: lidofinance/validator-ejector:${VALIDATOR_EJECTOR_VERSION:-1.5.0}
user: ":"
volumes:
- ./validator-ejector:/exitmessages
- .eth/lido-ejector:/exitmessages
restart: unless-stopped
environment:
- EXECUTION_NODE=${OBOL_EL_NODE:-http://execution:8545}
Expand All @@ -88,7 +88,7 @@ services:
image: obolnetwork/lido-dv-exit:${LIDO_DV_EXIT_VERSION:-e8bee1f}
user: ":"
volumes:
- ./validator-ejector:/exitmessages
- .eth/lido-ejector:/exitmessages
- .eth:/charon
environment:
- LIDODVEXIT_BEACON_NODE_URL=${OBOL_CL_NODE:-http://consensus:5052}
Expand Down