Files
bal-server/docs/INDEX.md
svatantrya 69d877a360 docs: add comprehensive knowledge base and security audit
- Add docs/INDEX.md with navigable index and quick reference guides
- Add 9 knowledge base files covering project overview, Bitcoin domain,
  architecture, modules, API reference, database schema, deployment/security
- Update AGENTS.md with knowledge base reference and update policy
- Add tests/sql_injection_tests.rs with regression tests for SQL injection
- Fix SQL injection vulnerabilities in bal-pusher.rs:
  * Replace string-formatted UPDATE IN with loop + parameterized queries
  * Replace string-formatted UPDATE push_err with parameterized query
  * Add chain name validation in calculate_stats to prevent env var tampering
- Update .gitignore to exclude bal-pusher.env and bal-pusher.sh
2026-07-16 14:11:18 -04:00

2.5 KiB

docs/ Knowledge Base

Quick Guide for Contributors

Files Overview

# File Purpose
1 01_project_overview.md Vision, goals, components, and mapping to existing docs
2 02_glossary_and_bitcoin_domain.md Bitcoin domain knowledge: BIP-84, locktime, P2WPKH, ZMQ, block headers
3 03_architecture_and_data_flow.md High-level architecture, data flow, state machine, error handling
4 04_modules_detail.md Deep dive into each Rust module and binary
5 05_api_reference.md Complete API docs: HTTP, ZMQ, RPC with examples
6 06_database_schema.md Full SQL schema, tables, queries, data lifecycle
7 07_deployment_and_ops.md Environment variables, systemd, nginx, scripts, Tor, installation
8 08_security_audit.md Threat model, vulnerability assessment, hardening recommendations
9 09_references_and_links.md Source code links, Cargo dependencies, existing file mapping

Note: This knowledge base is maintained in parallel to the codebase. After any significant change to the code (new features, API changes, schema changes, or security fixes), update the corresponding file in this directory to keep documentation synchronized.