-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
21 lines (19 loc) · 889 Bytes
/
Copy path.env.example
File metadata and controls
21 lines (19 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# SP1 Prover Configuration
# Proof modes: `mock`, `cpu`, `cuda`, `network`
# - `mock`: Generate mock proofs locally (fastest, for development)
# - `cpu`: Generate real proofs using CPU (slower, production-ready)
# - `cuda`: Generate proofs using GPU acceleration (requires CUDA)
# - `network`: Generate proofs via Succinct Prover Network (requires API access)
SP1_PROVER=cpu
# RISC0 Development Mode
# 0 = Disabled (default, generates real proofs)
# 1 = Enabled (bypasses proving, executes code only - DEVELOPMENT ONLY)
#
# Dev-mode creates fake receipts with real public outputs for faster iteration.
# Fake receipts will FAIL standard verification unless verifier also runs in dev-mode.
# Production builds should use `disable-dev-mode` feature flag to prevent this mode.
RISC0_DEV_MODE=0
# RISC0 Info Logging
# 0 = Disabled
# 1 = Enabled (shows additional execution info)
RISC0_INFO=1