Skip to content
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
8 changes: 7 additions & 1 deletion .env.sample.hoodi
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,13 @@ CHARON_P2P_RELAYS=https://0.relay.obol.tech,https://1.relay.obol.tech/,https://c
VE_LOCATOR_ADDRESS=0x3C20EA1Bd0A838a7E4bE7CE47917DEF0c2E190FD

# validator-ejector oracles list.
VE_ORACLE_ADDRESSES_ALLOWLIST=["0xcA80ee7313A315879f326105134F938676Cfd7a9","0xf03B8DC8762B97F13Ac82e6F94bE3Ed002FF7459","0x1932f53B1457a5987791a40Ba91f71c5Efd5788F","0x99B2B75F490fFC9A29E4E1f5987BE8e30E690aDF","0x219743f1911d84B32599BdC2Df21fC8Dba6F81a2","0xD3b1e36A372Ca250eefF61f90E833Ca070559970","0xf7aE520e99ed3C41180B5E12681d31Aa7302E4e5","0x4c75FA734a39f3a21C57e583c1c29942F021C6B7","0xB1cC91878c1831893D39C2Bb0988404ca5Fa7918","0xfe43A8B0b481Ae9fB1862d31826532047d2d538c","0x43C45C2455C49eed320F463fF4f1Ece3D2BF5aE2"]
VE_ORACLE_ADDRESSES_ALLOWLIST=["0xcA80ee7313A315879f326105134F938676Cfd7a9","0xf03B8DC8762B97F13Ac82e6F94bE3Ed002FF7459","0x1932f53B1457a5987791a40Ba91f71c5Efd5788F","0xf7aE520e99ed3C41180B5E12681d31Aa7302E4e5","0x99B2B75F490fFC9A29E4E1f5987BE8e30E690aDF","0x219743f1911d84B32599BdC2Df21fC8Dba6F81a2","0xD3b1e36A372Ca250eefF61f90E833Ca070559970","0x4c75FA734a39f3a21C57e583c1c29942F021C6B7","0x948A62cc0414979dc7aa9364BA5b96ECb29f8736","0xfe43A8B0b481Ae9fB1862d31826532047d2d538c","0x43C45C2455C49eed320F463fF4f1Ece3D2BF5aE2"]
Comment thread
KaloyanTanev marked this conversation as resolved.

# Easy track addresses.
VE_EASY_TRACK_ADDRESS=0x284D91a7D47850d21A6DEaaC6E538AC7E5E6fc2a

# Easy track motion creator addresses - add your node operator reward address.
#VE_EASY_TRACK_MOTION_CREATOR_ADDRESSES_ALLOWLIST=["0xYourNodeOperatorRewardAddress"]

# Lido staking module ID.
#VE_STAKING_MODULE_ID=
Expand Down
4 changes: 3 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ services:
# |__/

validator-ejector:
image: lidofinance/validator-ejector:${VALIDATOR_EJECTOR_VERSION:-1.7.0}
image: lidofinance/validator-ejector:${VALIDATOR_EJECTOR_VERSION:-1.9.0}
user: ":"
networks: [dvnode]
volumes:
Expand All @@ -227,6 +227,8 @@ services:
- STAKING_MODULE_ID=${VE_STAKING_MODULE_ID:-2}
- OPERATOR_ID=${VE_OPERATOR_ID}
- ORACLE_ADDRESSES_ALLOWLIST=${VE_ORACLE_ADDRESSES_ALLOWLIST}
- EASY_TRACK_ADDRESS=${VE_EASY_TRACK_ADDRESS}
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we have default value for this as well?
If not, we should add VE_EASY_TRACK_ADDRESS to .env.sample.mainnet as well. It will be a bit of a hassle communicating with everyone with a running cluster to copy the new variable to their existing .env.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My plan was to add the mainnet setting in a separate PR once VE 1.9.0 is confirmed ready for mainnet. At this point, VE shouldn’t be used on mainnet.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see. I will merge it and include it in rc2, which is intended also only for Hoodi.

- EASY_TRACK_MOTION_CREATOR_ADDRESSES_ALLOWLIST=${VE_EASY_TRACK_MOTION_CREATOR_ADDRESSES_ALLOWLIST:-[]}
- MESSAGES_LOCATION=/exitmessages
- RUN_METRICS=true
- HTTP_PORT=8989
Expand Down