Skip to content

Commit

Permalink
feat: added support for Optimistic Ecotone Mainnet Release (4844)
Browse files Browse the repository at this point in the history
  • Loading branch information
melenxyz committed Mar 13, 2024
1 parent 73e7860 commit 7aba32c
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dappnode_package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "op-node.dnp.dappnode.eth",
"version": "0.1.1",
"upstreamVersion": "v1.4.2",
"upstreamVersion": "v1.7.1",
"upstreamRepo": "ethereum-optimism/optimism",
"upstreamArg": "UPSTREAM_VERSION",
"shortDescription": "Optimism Rollup node",
Expand Down Expand Up @@ -36,7 +36,7 @@
},
"globalEnvs": [
{
"envs": ["EXECUTION_CLIENT_MAINNET", "OP_EXECUTION_CLIENT"],
"envs": ["EXECUTION_CLIENT_MAINNET", "CONSENSUS_CLIENT_MAINNET","OP_EXECUTION_CLIENT"],
"services": ["op-node"]
}
]
Expand Down
3 changes: 2 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ services:
build:
context: op-node
args:
UPSTREAM_VERSION: v1.4.2
UPSTREAM_VERSION: v1.7.1
environment:
- CUSTOM_L1_RPC
- CUSTOM_L1_BEACON_API
restart: unless-stopped
image: "op-node.op-node.dnp.dappnode.eth:0.1.1"
34 changes: 34 additions & 0 deletions op-node/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,39 @@ else
exit 1
fi

# If CUSTOM_L1_BEACON_API is set, use it. Otherwise, use the proper value depending on the _DAPPNODE_GLOBAL_CONSENSUS_CLIENT_MAINNET variable

if [ ! -z "$CUSTOM_L1_BEACON_API" ]; then
L1_BEACON_API=$CUSTOM_L1_BEACON_API
elif [ ! -z "$_DAPPNODE_GLOBAL_CONSENSUS_CLIENT_MAINNET" ]; then
case $_DAPPNODE_GLOBAL_CONSENSUS_CLIENT_MAINNET in
"lodestar.dnp.dappnode.eth")
L1_BEACON_API="http://beacon-chain.lodestar.dappnode:3500"
;;
"lighthouse.dnp.dappnode.eth")
L1_BEACON_API="http://beacon-chain.lighthouse.dappnode:3500"
;;
"prysm.dnp.dappnode.eth")
L1_BEACON_API="http://beacon-chain.prysm.dappnode:3500"
;;
"teku.dnp.dappnode.eth")
L1_BEACON_API="http://beacon-chain.teku.dappnode:3500"
;;
"nimbus.dnp.dappnode.eth")
L1_BEACON_API="http://nimbus.dappnode:4500"
;;
*)
echo "Unknown value for _DAPPNODE_GLOBAL_CONSENSUS_CLIENT_MAINNET: $_DAPPNODE_GLOBAL_CONSENSUS_CLIENT_MAINNET"
sleep 60
exit 1
;;
esac
else
echo "No L1_BEACON_API value set"
sleep 60
exit 1
fi

case $_DAPPNODE_GLOBAL_OP_EXECUTION_CLIENT in
"op-geth.dnp.dappnode.eth")
L2_ENGINE="http://op-geth.dappnode:8551"
Expand All @@ -48,6 +81,7 @@ esac
while true; do
op-node --network=op-mainnet \
--l1="$L1_RPC" \
--l1.beacon="$L1_BEACON_API" \
--l2="$L2_ENGINE" \
--l2.jwt-secret="$JWT_PATH" \
--rpc.addr=0.0.0.0 \
Expand Down

0 comments on commit 7aba32c

Please sign in to comment.