Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Example environment configuration for FHEVM

# RPC endpoint for the Ethereum network used by FHEVM contracts.
FHEVM_ETH_RPC_URL=https://your-ethereum-node-url

# Endpoint for the Zama relayer service.
FHEVM_RELAYER_URL=https://your-relayer-url

# TFHE worker URL used by the coprocessor (e.g. coprocessor/fhevm-engine).
TFHE_WORKER_URL=http://localhost:3000

# Private key of the deployer/test account (never commit real keys).
PRIVATE_KEY=0x...

# Network name: 'local', 'sepolia', 'mainnet', etc.
NETWORK=local

# Path for persistent storage (used by benchmark parser and golden images).
DATABASE_URL=./data/db.sqlite

# AWS region and credentials used by CI back‑ends (optional).
AWS_REGION=eu-west-3
AWS_ACCESS_KEY_ID=YOUR_AWS_KEY
AWS_SECRET_ACCESS_KEY=YOUR_AWS_SECRET

# Copy this file to `.env` or `.env.local` and adjust the values as needed.
6 changes: 3 additions & 3 deletions library-solidity/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@
"@nomicfoundation/hardhat-network-helpers": "^1.0.6",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.10",
"@openzeppelin/contracts": "^5.0.1",
"@openzeppelin/contracts-upgradeable": "5.0.2",
"@openzeppelin/hardhat-upgrades": "3.3.0",
"@openzeppelin/contracts": "^5.5.0",
"@openzeppelin/contracts-upgradeable": "5.5.0",
"@openzeppelin/hardhat-upgrades": "3.4.0",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.1.0",
Expand Down