Some checks failed
CI/CD Pipeline / Solidity Contracts (push) Failing after 1m4s
CI/CD Pipeline / Security Scanning (push) Successful in 2m13s
CI/CD Pipeline / Lint and Format (push) Failing after 34s
CI/CD Pipeline / Terraform Validation (push) Failing after 21s
CI/CD Pipeline / Kubernetes Validation (push) Successful in 22s
Validation / validate-genesis (push) Successful in 26s
Validation / validate-terraform (push) Failing after 24s
Validation / validate-kubernetes (push) Failing after 8s
Validation / validate-smart-contracts (push) Failing after 8s
Validation / validate-security (push) Failing after 1m10s
Validation / validate-documentation (push) Failing after 15s
Apply clean archive patches (WETH CREATE2 doc, DeployKeeper script), restore emoney unit tests from .bak, add keeper npm scripts without replacing the Hardhat package.json, untrack relay lane secret env files, and document superseded patch hunks in SIBLING_WIP_IMPORT.md.
102 lines
1.2 KiB
Plaintext
102 lines
1.2 KiB
Plaintext
# Terraform
|
|
.terraform/
|
|
*.tfstate
|
|
*.tfstate.*
|
|
.terraform.lock.hcl
|
|
terraform.tfvars
|
|
*.tfvars.backup
|
|
|
|
# Kubernetes
|
|
kubeconfig
|
|
*.kubeconfig
|
|
|
|
# Keys and Secrets
|
|
*.key
|
|
*.pem
|
|
*.p12
|
|
*.jks
|
|
keystore/
|
|
keys/
|
|
secrets/
|
|
*.env
|
|
.env.local
|
|
|
|
# Besu
|
|
besu-data/
|
|
chaindata/
|
|
datadir/
|
|
|
|
# Foundry
|
|
out/
|
|
artifacts/
|
|
.omnl-poller-state.json
|
|
cache/
|
|
broadcast/
|
|
.cronos-verify/
|
|
.verify-dodo/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# Node modules (if any)
|
|
node_modules/
|
|
|
|
# TypeScript service emit (build in-tree)
|
|
services/btc-intake/dist/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
venv/
|
|
env/
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
*.backup.*
|
|
.env.backup
|
|
*~
|
|
|
|
# Temporary/working files
|
|
.batch_refactor_changed_files.txt
|
|
.safe_pass_changed_files.txt
|
|
.syntax_*.txt
|
|
.to_revert.txt
|
|
|
|
# Assets (icons are tracked, but exclude large files)
|
|
assets/azure-icons/*.zip
|
|
assets/**/*.tmp
|
|
assets/**/.*.swp
|
|
|
|
|
|
# Relay lane secrets (examples stay tracked)
|
|
services/relay/.env.*
|
|
!services/relay/.env.*.example
|
|
!services/relay/.env.local.example
|
|
|
|
# Local DODO vendor trees (use lib/dodo-contractV2 submodule)
|
|
lib/dodo-gassaving-pool/
|
|
lib/dodo-limit-order/
|
|
lib/dodo-v3/
|
|
lib/deploy-starter.txt
|