-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.env.example
More file actions
57 lines (52 loc) · 1.54 KB
/
Copy path.env.example
File metadata and controls
57 lines (52 loc) · 1.54 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
49
50
51
52
53
54
55
56
57
# All
RUST_LOG=info
# API
API_DATABASE_URL=postgresql://postgres:postgrespassword@localhost:5432/postgres
API_GRPC_ADDR=127.0.0.1:50051
API_HTTP_ADDR=127.0.0.1:3000
# Coordinator
COORDINATOR_CLUSTER_RPC=http://127.0.0.1:50051
COORDINATOR_METRICS_ADDR=127.0.0.1:9090
COORDINATOR_ADDR=127.0.0.1:50055
# NODE
NODE_COORDINATOR_RPC=http://127.0.0.1:50055
NODE_ARTIFACT_STORE=
NODE_S3_REGION=
NODE_S3_BUCKET=
NODE_REDIS_NODES=
WORKER_TYPE=ALL
WORKER_METRICS_ADDR=127.0.0.1:9091
# Fulfiller
FULFILLER_RPC_GRPC_ADDR=https://rpc.mainnet.succinct.xyz
FULFILLER_CLUSTER_RPC=http://127.0.0.1:50051
FULFILLER_CLUSTER_ARTIFACT_STORE=
FULFILLER_CLUSTER_S3_BUCKET=
FULFILLER_CLUSTER_S3_REGION=
FULFILLER_CLUSTER_REDIS_NODES=
FULFILLER_SP1_PRIVATE_KEY=
FULFILLER_METRICS_ADDR=0.0.0.0:9060
FULFILLER_VERSION=sp1-v6.0.0
FULFILLER_LOG_FORMAT=Pretty
FULFILLER_DOMAIN=SPN_MAINNET_V1_DOMAIN
# Bidder
BIDDER_RPC_GRPC_ADDR=https://rpc.mainnet.succinct.xyz
BIDDER_VERSION=sp1-v6.0.0
BIDDER_METRICS_ADDR=0.0.0.0:9061
BIDDER_SP1_PRIVATE_KEY=
BIDDER_LOG_FORMAT=Pretty
BIDDER_DOMAIN=SPN_MAINNET_V1_DOMAIN
## Core bidding configuration
BIDDER_THROUGHPUT_MGAS=1
BIDDER_MAX_CONCURRENT_PROOFS=1
BIDDER_BID_AMOUNT=500000000
## Time buffers and mode toggles (optional; defaults shown)
BIDDER_BUFFER_SEC=30
BIDDER_GROTH16_BUFFER_SEC=30
BIDDER_PLONK_BUFFER_SEC=80
BIDDER_GROTH16_ENABLED=true
BIDDER_PLONK_ENABLED=true
## USD-denominated dynamic bid (optional; defaults shown)
BIDDER_USD_BID_ENABLED=true
BIDDER_USD_BID_TARGET=120000
BIDDER_USD_BID_REFRESH_INTERVAL_SECS=60
BIDDER_USD_BID_STALENESS_MAX_SECS=7200