- CCIP/trustless bridge contracts, GRU tokens, DEX/PMM tests, reserve vault. - Token-aggregation service routes, planner, chain config, relay env templates. - Config snapshots and multi-chain deployment markdown updates. - gitignore services/btc-intake/dist/ (tsc output); do not track dist. Run forge build && forge test before deploy (large solc graph). Made-with: Cursor
90 lines
915 B
Plaintext
90 lines
915 B
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/
|
|
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
|
|
|