- Add onchain/deployments-local.json to .gitignore so it is no longer tracked - Remove the stale committed file from git - Update fitness.sh to read LM address from forge broadcast JSON (DeployLocal.sol's run-latest.json) instead of the potentially stale deployments-local.json, matching the approach deploy-optimizer.sh already uses Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
44 lines
628 B
Text
44 lines
628 B
Text
# Compiler files
|
|
cache/
|
|
out/
|
|
|
|
# Ignores development broadcast logs
|
|
/broadcast
|
|
/broadcast/*/31337/
|
|
/broadcast/**/dry-run/
|
|
|
|
# Dotenv file
|
|
.env
|
|
.secret
|
|
.secret*
|
|
!onchain/.secret.local
|
|
.infura
|
|
.DS_Store
|
|
|
|
**/node_modules/
|
|
|
|
# Ignore vim files:
|
|
*~
|
|
*.swp
|
|
*.swo
|
|
.playwright-mcp/
|
|
ponder-repo
|
|
tmp
|
|
foundry.lock
|
|
services/ponder/.env.local
|
|
|
|
# Test artifacts
|
|
test-results/
|
|
tests/.stack.log
|
|
playwright-report/
|
|
services/ponder/.ponder/
|
|
|
|
# Temporary files
|
|
/tmp/
|
|
logs/
|
|
|
|
# Holdout scenarios (cloned at runtime by evaluate.sh)
|
|
.holdout-scenarios/
|
|
|
|
# Local deployment addresses (generated per-run by bootstrap scripts)
|
|
onchain/deployments-local.json
|