-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy path.env.example
More file actions
48 lines (37 loc) · 2.13 KB
/
Copy path.env.example
File metadata and controls
48 lines (37 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Proof modes are `mock`, `cpu`, `cuda` and `network`.
# `mock` is for generating mock proofs locally.
# `cpu` is for generating proofs locally using the CPU.
# `cuda` is for generating proofs locally using the GPU.
# `network` is for generating proofs using the Succinct Prover Network.
SP1_PROVER=cpu
# To use the Succinct Prover Network, set the private key of the account you want to use for requesting proofs.
# Set up a new account here: https://docs.succinct.xyz/docs/network/developers/key-setup.
NETWORK_PRIVATE_KEY=
# Hyperlane deployer keys for EVM and Cosmosnative chains
HYP_KEY=0x82bfcfadbf1712f6550d8d2c00a39f05b33ec78939d0167be2a737d691f33a6a
HYP_KEY_COSMOSNATIVE=0x6e30efb1d3ebd30d1ba08c8d5fc9b190e08394009dc1dd787a69e60c33288a8c
# Private key which the operator can use to sign evm transactions using the reth service.
PRIVATE_KEY="0x82bfcfadbf1712f6550d8d2c00a39f05b33ec78939d0167be2a737d691f33a6a"
# Default ISM identifier deployed by the docker compose network.
CELESTIA_ISM_ID="0x726f757465725f69736d000000000000000000000000002a0000000000000002"
# The Hyperlane Mailbox Address on Evolve
MAILBOX_ADDRESS="0xa05915fd6e32a1aa7e67d800164cacb12487142d"
# The Hyperlane Mailbox Address on Celestia
CELESTIA_MAILBOX_ADDRESS="0x68797065726c616e650000000000000000000000000000000000000000000000"
# The Hyperlane Merkle Tree Address on Evolve
MERKLE_TREE_ADDRESS="0x6007cE81D2FD7b9b7f22e71cE9896e00d6017ba8"
# Default Namespace used for Celestia data submission.
# NOTE: The DA_HEADER_NAMESPACE and DA_DATA_NAMESPACE env vars in docker-compose.yml are namespace encoded by ev-node.
# This is the non-padded namespace value for ev-node data blobs.
CELESTIA_NAMESPACE="a8045f161bf468bf4d44"
# To submit messages to Celestia we must specify a funded private key.
CELESTIA_PRIVATE_KEY="6e30efb1d3ebd30d1ba08c8d5fc9b190e08394009dc1dd787a69e60c33288a8c"
RETH_RPC_URL="http://127.0.0.1:8545"
RETH_WS_URL="ws://127.0.0.1:8546"
SEQUENCER_RPC_URL="http://127.0.0.1:7331"
# Optional Config parameters
EV_PROVER_GRPC_ADDRESS="127.0.0.1:50051"
PUB_KEY="3964a68700cf76e215626e076e76d23bd1f4c3b31184b5822fd7b4df15d5ce9a"
QUEUE_CAPACITY=256
CONCURRENCY=16
BATCH_SIZE=10