Blockchain audit anchoring: tamper-proof public verification
## Что это
Идея: optional anchoring audit-log hash-chain (E07) на public blockchain (Bitcoin OP_RETURN или Ethereum). Каждые N часов tail-hash audit-log anchored on-chain — это даёт globally-verifiable timestamp и tamper-evidence для compliance.
UI: enterprise settings → «Audit anchoring» → выбор blockchain → frequency (hourly/daily/weekly) → wallet связан. Cost: ~$2 per anchor transaction (Bitcoin). Verifier команда `rox audit verify-anchor` сверяет local chain с on-chain proof.
Use cases: regulated industries (finance, healthcare, legal) где требуется immutable audit trail с external verification.
## Зачем
Local audit-log с hash-chain (E07) даёт tamper-evidence at-rest, но не отвечает на «может admin отредактировать log retroactively?». On-chain anchoring добавляет immutability через third-party witness, который operator не может подделать.
## Источники вдохновения
- [markqvist/Reticulum](https://github.com/markqvist/Reticulum) — crypto-based identity для on-chain proofs
- [databendlabs/databend](https://github.com/databendlabs/databend) — append-only event store patterns
- [agisota/bslog](https://github.com/agisota/bslog) — queryable log CLI patterns