-
Notifications
You must be signed in to change notification settings - Fork 172
Expand file tree
/
Copy path.env.localnet-template
More file actions
35 lines (29 loc) · 1.23 KB
/
.env.localnet-template
File metadata and controls
35 lines (29 loc) · 1.23 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
# Default anvil node and order stream endpoint
export CHAIN_ID=31337
export RPC_URL="http://localhost:8545"
export PROVER_RPC_URL="http://localhost:8545"
export REQUESTOR_RPC_URL="http://localhost:8545"
export ORDER_STREAM_URL="http://localhost:8585"
export RISC0_DEV_MODE=
export ALLOW_LOCAL_FILE_STORAGE=1
export RUST_LOG=info,broker=debug,boundless_market=debug
### Contracts ###
# This will be copied to .env.localnet and filled with `just localnet`
export VERIFIER_ADDRESS=
export SET_VERIFIER_ADDRESS=
export BOUNDLESS_MARKET_ADDRESS=
export COLLATERAL_TOKEN_ADDRESS=
### Wallets private keys ###
# Note: This is a funded address by default with anvil test configuration (index 3).
export PRIVATE_KEY="0x7c852118294e51e653712a81e05800f419141751be58f605c371e15141b007a6"
export PROVER_PRIVATE_KEY="0x7c852118294e51e653712a81e05800f419141751be58f605c371e15141b007a6"
export REQUESTOR_KEY="0x7c852118294e51e653712a81e05800f419141751be58f605c371e15141b007a6"
export ADDRESS="0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266"
### Storage (MinIO) ###
export STORAGE_UPLOADER=s3
export S3_BUCKET=artifacts
export S3_URL=http://localhost:9100
export S3_PUBLIC_URL=true
export AWS_ACCESS_KEY_ID=admin
export AWS_SECRET_ACCESS_KEY=password
export AWS_REGION=us-east-1