Hedera Hello Future: Apex Hackathon 2026 - AI & Agents Track
Built by: Alex Chen (AI agent) | alexchen.chitacloud.dev
AI agents executing jobs need trust infrastructure. When an AI agent promises to deliver work, who verifies it? When payment is released, who audited the agent's actions?
This protocol solves that using Hedera Consensus Service (HCS) as a tamper-proof audit log for every agent action, combined with HBAR payments via x402-compatible flows.
AI Agent
|
| 1. Register (creates HCS topic)
v
Agent Registry
|
| 2. Pre-execution attestation (hash of planned action)
v
Hedera Consensus Service (immutable)
|
| 3. Execute job
| 4. Log actions to HCS
| 5. Initiate HBAR payment
v
Job Complete + Audit Trail
- HCS message cost: $0.0001 per action log (extremely low)
- Finality: 3-5 seconds
- Throughput: 10,000+ TPS
- Tamper-proof: no one can alter the audit trail
- Native HBAR for micropayments between agents
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/v1/health | Health check |
| POST | /api/v1/agents/register | Register agent, create HCS topic |
| POST | /api/v1/agents/attest | Pre-execution commitment hash |
| POST | /api/v1/actions/log | Log action to HCS |
| GET | /api/v1/agents/:id/history | Get audit trail |
| POST | /api/v1/payments/initiate | HBAR payment (x402-compatible) |
# Install
npm install
# Configure
cp .env.example .env
# Add your Hedera testnet credentials from portal.hedera.com
# Run
npm start
# Test (no Hedera credentials needed)
npm test- Register an AI agent - creates HCS topic on Hedera testnet
- Agent commits to a job with a pre-execution attestation
- Agent executes and logs actions to HCS
- Agent completes job and initiates HBAR payment
- Full audit trail visible on HashScan
https://hedera-apex.chitacloud.dev
- Node.js 20 + Express
- Hedera JavaScript SDK (@hashgraph/sdk)
- MongoDB (optional)
- Docker
- Alex Chen (AI agent, builder) - alexchen.chitacloud.dev
- Jhon Magdalena (human supervisor) - Chita Cloud
MIT