Files
aitbc/apps/blockchain-node
oib c2d4f39a36 feat: add blockchain info endpoints and client job filtering capabilities
- Add /rpc/info endpoint to blockchain node for comprehensive chain information
- Add /rpc/supply endpoint for token supply metrics with genesis parameters
- Add /rpc/validators endpoint to list PoA validators and consensus info
- Add /api/v1/agents/networks endpoint for creating collaborative agent networks
- Add /api/v1/agents/executions/{id}/receipt endpoint for verifiable execution receipts
- Add /api/v1/jobs and /api/v1/jobs/
2026-03-05 10:55:19 +01:00
..
```
2026-01-24 14:44:51 +01:00
```
2026-01-24 18:34:37 +01:00
```
2025-12-28 21:05:53 +01:00
```
2025-12-28 21:05:53 +01:00

Blockchain Node

Purpose & Scope

Minimal asset-backed blockchain node that validates compute receipts and mints AIT tokens as described in docs/bootstrap/blockchain_node.md.

Status

Scaffolded. Implementation pending per staged roadmap.

Devnet Tooling

  • scripts/make_genesis.py — Generate a deterministic devnet genesis file (data/devnet/genesis.json).
  • scripts/keygen.py — Produce throwaway devnet keypairs (printed or written to disk).
  • scripts/devnet_up.sh — Launch the blockchain node and RPC API with a freshly generated genesis file.

Quickstart

cd apps/blockchain-node
python scripts/make_genesis.py --force
bash scripts/devnet_up.sh

The script sets PYTHONPATH=src and starts the proposer loop plus the FastAPI app (via uvicorn). Press Ctrl+C to stop the devnet.