File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 1+ # Example environment configuration for FHEVM
2+
3+ # RPC endpoint for the Ethereum network used by FHEVM contracts.
4+ FHEVM_ETH_RPC_URL = https://your-ethereum-node-url
5+
6+ # Endpoint for the Zama relayer service.
7+ FHEVM_RELAYER_URL = https://your-relayer-url
8+
9+ # TFHE worker URL used by the coprocessor (e.g. coprocessor/fhevm-engine).
10+ TFHE_WORKER_URL = http://localhost:3000
11+
12+ # Private key of the deployer/test account (never commit real keys).
13+ PRIVATE_KEY = 0x...
14+
15+ # Network name: 'local', 'sepolia', 'mainnet', etc.
16+ NETWORK = local
17+
18+ # Path for persistent storage (used by benchmark parser and golden images).
19+ DATABASE_URL = ./data/db.sqlite
20+
21+ # AWS region and credentials used by CI back‑ends (optional).
22+ AWS_REGION = eu-west-3
23+ AWS_ACCESS_KEY_ID = YOUR_AWS_KEY
24+ AWS_SECRET_ACCESS_KEY = YOUR_AWS_SECRET
25+
26+ # Copy this file to `.env` or `.env.local` and adjust the values as needed.
You can’t perform that action at this time.
0 commit comments