Skip to content

Commit 45192ba

Browse files
authored
Add proposal timeout, bump versions (#167)
* Add proposal timeout, bump versions * Add ejector instructions and fix bracket * Change version * Remove default proposal timeout featureset
1 parent 8f37055 commit 45192ba

6 files changed

Lines changed: 14 additions & 4 deletions

File tree

.env.sample.holesky

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,9 @@ CHARON_P2P_RELAYS=https://0.relay.obol.tech,https://1.relay.obol.tech/,https://c
149149
# The address of the execution engine JSON-RPC API.
150150
#CHARON_EXECUTION_CLIENT_RPC_ENDPOINT=
151151

152+
# Enable opt-in charon features
153+
#CHARON_FEATURE_SET_ENABLE=
154+
152155
# Override the charon logging level; debug, info, warning, error.
153156
#CHARON_LOG_LEVEL=
154157

.env.sample.hoodi

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,9 @@ CHARON_P2P_RELAYS=https://0.relay.obol.tech,https://1.relay.obol.tech/,https://c
149149
# The address of the execution engine JSON-RPC API.
150150
#CHARON_EXECUTION_CLIENT_RPC_ENDPOINT=
151151

152+
# Enable opt-in charon features
153+
#CHARON_FEATURE_SET_ENABLE=
154+
152155
# Override the charon logging level; debug, info, warning, error.
153156
#CHARON_LOG_LEVEL=
154157

.env.sample.mainnet

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,9 @@ CHARON_P2P_RELAYS=https://0.relay.obol.tech,https://1.relay.obol.tech/,https://c
149149
# The address of the execution engine JSON-RPC API.
150150
#CHARON_EXECUTION_CLIENT_RPC_ENDPOINT=
151151

152+
# Enable opt-in charon features
153+
#CHARON_FEATURE_SET_ENABLE=
154+
152155
# Override the charon logging level; debug, info, warning, error.
153156
#CHARON_LOG_LEVEL=
154157

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ To configure this repo for a particular network, follow these instructions. If y
5252

5353
2. Grab your operator ID from the lido [mainnet dashboard](https://operators.lido.fi/) or [testnet dashboard](https://operators-holesky.testnet.fi/).
5454
3. Find `VE_OPERATOR_ID` in `.env` and set it to your operator ID.
55-
4. Save and close `.env`.
55+
4. Find `VE_EASY_TRACK_MOTION_CREATOR_ADDRESSES_ALLOWLIST=["0xYourNodeOperatorRewardAddress"]`, uncomment it, and change `0xYourNodeOperatorRewardAddress` to your Lido Operator SAFE manager address for your cluster.
56+
5. Save and close `.env`.
5657

5758
You will need a `.charon/` folder from a completed DKG present to complete the setup of this repo.
5859

compose-el.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ services:
1111

1212
el-nethermind:
1313
profiles: [el-nethermind]
14-
image: nethermind/nethermind:${EL_NETHERMIND_VERSION:-1.32.2}
14+
image: nethermind/nethermind:${EL_NETHERMIND_VERSION:-1.33.0}
1515
restart: unless-stopped
1616
ports:
1717
- ${EL_PORT_P2P:-30303}:30303/tcp # P2P TCP

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,11 @@ services:
100100
- CHARON_VALIDATOR_API_ADDRESS=0.0.0.0:3600
101101
- CHARON_MONITORING_ADDRESS=0.0.0.0:3620
102102
- CHARON_BUILDER_API=${BUILDER_API_ENABLED:-true}
103-
- CHARON_FEATURE_SET_ENABLE=eager_double_linear,consensus_participate
103+
- CHARON_FEATURE_SET_ENABLE=${CHARON_FEATURE_SET_ENABLE:-}
104104
- CHARON_LOKI_ADDRESSES=${CHARON_LOKI_ADDRESSES:-http://loki:3100/loki/api/v1/push}
105105
- CHARON_LOKI_SERVICE=charon
106106
- CHARON_NICKNAME=${CHARON_NICKNAME:-}
107-
- CHARON_EXECUTION_CLIENT_RPC_ENDPOINT=${CHARON_EXECUTION_CLIENT_RPC_ENDPOINT:-http://nethermind:8545}
107+
- CHARON_EXECUTION_CLIENT_RPC_ENDPOINT=${CHARON_EXECUTION_CLIENT_RPC_ENDPOINT:-http://${EL:-nethermind}:8545}
108108
ports:
109109
- ${CHARON_PORT_P2P_TCP:-3610}:${CHARON_PORT_P2P_TCP:-3610}/tcp # P2P TCP libp2p
110110
networks: [dvnode]

0 commit comments

Comments
 (0)