Skip to content

Commit 93fc3d7

Browse files
authored
docs: add .env.example with placeholders
the file documents necessary environment variables for running and testing FHEVM
1 parent da1eb2f commit 93fc3d7

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.env.example

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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.

0 commit comments

Comments
 (0)