Some checks failed
CI/CD Pipeline / Solidity Contracts (push) Failing after 59s
CI/CD Pipeline / Security Scanning (push) Successful in 2m34s
CI/CD Pipeline / Lint and Format (push) Failing after 49s
CI/CD Pipeline / Terraform Validation (push) Failing after 22s
CI/CD Pipeline / Kubernetes Validation (push) Successful in 26s
HYBX OMNL TypeScript & anchor / token-aggregation build + reconcile artifact (push) Failing after 19s
Validation / validate-genesis (push) Successful in 31s
Validation / validate-terraform (push) Failing after 27s
Validation / validate-kubernetes (push) Failing after 10s
Validation / validate-smart-contracts (push) Failing after 12s
Validation / validate-security (push) Failing after 1m26s
Validation / validate-documentation (push) Failing after 18s
Wire Business/Platform/Spot adapters with fail-closed live gates, status/probe/dispatch APIs, smoke script, and portal rails UI. Co-authored-by: Cursor <cursoragent@cursor.com>
122 lines
1.6 KiB
Plaintext
122 lines
1.6 KiB
Plaintext
# Terraform
|
|
.terraform/
|
|
*.tfstate
|
|
*.tfstate.*
|
|
.terraform.lock.hcl
|
|
terraform.tfvars
|
|
*.tfvars.backup
|
|
|
|
# Kubernetes
|
|
kubeconfig
|
|
*.kubeconfig
|
|
|
|
# Python virtualenvs
|
|
.venv/
|
|
|
|
# OMNL terminal connection secrets / CIS source PDFs
|
|
config/omnl-terminal-connections/**/source/
|
|
config/omnl-terminal-connections/**/.env
|
|
|
|
# Keys and Secrets
|
|
*.key
|
|
*.pem
|
|
*.p12
|
|
*.jks
|
|
keystore/
|
|
keys/
|
|
secrets/
|
|
*.env
|
|
.env.local
|
|
|
|
# Besu
|
|
besu-data/
|
|
chaindata/
|
|
datadir/
|
|
data/bitcoind-regtest/
|
|
data/btc-intake/
|
|
data/settlement-store/
|
|
|
|
# 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/
|
|
|
|
# Local settlement store / runtime data (do not commit)
|
|
services/data/
|
|
logs/
|
|
dist/go-live/
|
|
|
|
# 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
|
|
|
|
# External rail credentials (keep *.example tracked if forced)
|
|
secrets/**/credentials.env
|
|
!secrets/**/credentials.env.example
|
|
|