oib
421191ccaf
feat: add transaction hash search to blockchain explorer and cleanup settlement storage
...
Blockchain Explorer:
- Add transaction hash search support (64-char hex pattern validation)
- Fetch and display transaction details in modal (hash, type, from/to, amount, fee, block)
- Fix regex escape sequence in block height validation
- Update search placeholder text to mention both search types
- Add blank lines between function definitions for PEP 8 compliance
Settlement Storage:
- Add timedelta import for future
2026-02-17 14:34:12 +01:00
oib
3b4cc69179
refactor: organize scripts/, remove stale root dirs, clean up structure
...
scripts/ reorganization:
- Sort 14 loose root scripts into subfolders:
blockchain/ (genesis, proposer, mock chain, testnet BTC)
dev/ (CLI wrapper, dev services, OpenAPI gen, systemd setup, domain proxy)
ops/ (coordinator proxy, remote tunnel)
gpu/ (miner workflow)
- Merge scripts/testing/ into scripts/test/ (eliminate duplicate folder)
- Create scripts/examples/ for usage demos and simulations
Root-level cleanup:
- Move home/ (12 simulation scripts) → scripts/examples/
- Move dev-utils/ (2 files) → scripts/dev/
- Move protocols/receipts/sample → tests/fixtures/
- Delete stale src/ (duplicate of apps/blockchain-node/src/)
- Remove empty home/, dev-utils/, protocols/ directories
Documentation updates:
- Update docs/6_architecture/8_codebase-structure.md tree and table
- Update root README.md tree to reflect new structure
2026-02-13 23:26:53 +01:00
oib
06e48ef34b
chore: standardize configuration, logging, and error handling across blockchain node and coordinator API
...
- Add infrastructure.md and workflow files to .gitignore to prevent sensitive info leaks
- Change blockchain node mempool backend default from memory to database for persistence
- Refactor blockchain node logger with StructuredLogFormatter and AuditLogger (consistent with coordinator)
- Add structured logging fields: service, module, function, line number
- Unify coordinator config with Database
2026-02-13 22:39:43 +01:00