Commit 9d4d7ee7 authored by Will Cory's avatar Will Cory

add gateway ui to make devnet-up

parent 585a94a8
...@@ -31,6 +31,7 @@ set -eu ...@@ -31,6 +31,7 @@ set -eu
L1_URL="http://localhost:8545" L1_URL="http://localhost:8545"
L2_URL="http://localhost:9545" L2_URL="http://localhost:9545"
GATEWAY_URL="http://localhost:3000"
OP_NODE="$PWD/op-node" OP_NODE="$PWD/op-node"
CONTRACTS_BEDROCK="$PWD/packages/contracts-bedrock" CONTRACTS_BEDROCK="$PWD/packages/contracts-bedrock"
...@@ -108,6 +109,10 @@ SEQUENCER_BATCH_INBOX_ADDRESS="$(cat $DEVNET/rollup.json | jq -r '.batch_inbox_a ...@@ -108,6 +109,10 @@ SEQUENCER_BATCH_INBOX_ADDRESS="$(cat $DEVNET/rollup.json | jq -r '.batch_inbox_a
echo "Bringing up stateviz webserver..." echo "Bringing up stateviz webserver..."
docker-compose up -d stateviz docker-compose up -d stateviz
echo "Bringing up gateway-ui..."
docker-compose up -d gateway-ui
wait_up $GATEWAY_URL
) )
echo "Devnet ready." echo "Devnet ready."
...@@ -145,3 +145,8 @@ services: ...@@ -145,3 +145,8 @@ services:
- "9090:8080" - "9090:8080"
volumes: volumes:
- op_log:/op_log:ro - op_log:/op_log:ro
gateway-ui:
image: ethereumoptimism/gateway-frontend:6629de552533a53cc4820f19c21ffbacc2deb403@sha256:001f3a7ba43f4351b61df1e864c7ccf8f1c2f195753fdb6e8e98675fcb147b2d
ports:
- "3000:80"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment