Skip to content

Commit 97da7ab

Browse files
committed
fmt
1 parent cd25aa2 commit 97da7ab

File tree

2 files changed

+14
-10
lines changed

2 files changed

+14
-10
lines changed

.env.example

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# `cpu` is for generating proofs locally using the CPU.
44
# `cuda` is for generating proofs locally using the GPU.
55
# `network` is for generating proofs using the Succinct Prover Network.
6-
SP1_PROVER=mock
6+
SP1_PROVER=cpu
77

88
# To use the Succinct Prover Network, set the private key of the account you want to use for requesting proofs.
99
# Set up a new account here: https://docs.succinct.xyz/docs/network/developers/key-setup.
@@ -32,13 +32,13 @@ CELESTIA_NAMESPACE="a8045f161bf468bf4d44"
3232
# To submit messages to Celestia we must specify a funded private key.
3333
CELESTIA_PRIVATE_KEY="6e30efb1d3ebd30d1ba08c8d5fc9b190e08394009dc1dd787a69e60c33288a8c"
3434

35-
RETH_RPC_URL="http://51.159.171.247:8545"
36-
RETH_WS_URL="ws://51.159.171.247:8546"
37-
SEQUENCER_RPC_URL="http://51.159.171.247:7331"
38-
CELESTIA_RPC_URL="http://51.159.171.247:26658"
39-
TENDERMINT_RPC_URL="http://51.159.171.247:26657"
40-
CELESTIA_GRPC_ENDPOINT="http://51.159.171.247:9090"
41-
MIDDLEWARE_ENDPOINT="http://51.159.171.247:9091"
35+
RETH_RPC_URL="http://127.0.0.1:8545"
36+
RETH_WS_URL="ws://127.0.0.1:8546"
37+
SEQUENCER_RPC_URL="http://127.0.0.1:7331"
38+
CELESTIA_RPC_URL="http://127.0.0.1:26658"
39+
TENDERMINT_RPC_URL="http://127.0.0.1:26657"
40+
CELESTIA_GRPC_ENDPOINT="http://127.0.0.1:9090"
41+
MIDDLEWARE_ENDPOINT="http://127.0.0.1:9091"
4242
TEE_APP_URL="https://fc87b8918d4489663dfe47b82f48ed4b117dc518-8080.dstack-pha-prod5.phala.network"
4343

4444
# Optional Config parameters

hyperlane/scripts/docker-entrypoint.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
#!/bin/bash
22

3-
# The following docker-entrypoint script performs deployment of Hyperlane infrastructure
3+
# The following docker-entrypoint script performs deployment of Hyperlane infrastructure
44
# on both ev-reth and celestia.
55
# To minimise proving time in the docker env in this repository we first deploy
66
# a noop ism stack on celestia and finally overwrite this with a new zk ism deployment.
7-
# This ensures that the initial trusted root used in the zk ism is the same as the
7+
# This ensures that the initial trusted root used in the zk ism is the same as the
88
# latest block's state root in ev-reth.
99

1010
set -euo pipefail
1111

12+
# Wait for ev-node sequencer to be ready
13+
echo "Waiting for ev-node sequencer to be ready..."
14+
sleep 10
15+
1216
# HYP_KEY is the priv key of the EVM account used for Hyperlane contract deployment
1317
export HYP_KEY=0x82bfcfadbf1712f6550d8d2c00a39f05b33ec78939d0167be2a737d691f33a6a
1418

0 commit comments

Comments
 (0)