Yahrona-Locking consensus
Validator behavior is represented as a live score that reflects block cadence, transaction flow, and chain stability.
- Live consensus score surface
- Block production visibility
- Operational readiness for demos
Zeta-Chain is a live blockchain experience that replaces traditional proof-of-work narratives with Yahrona-Locking, Yahrona coherence, and Yahrona validation. Partners can create wallets, inspect balances, submit transactions, and mine test blocks through the public domain.
Instead of miners competing to solve arbitrary puzzles, Zeta-Chain uses Yahrona-Locking and Yahrona coherence to validate block production and transaction ordering. The public API exposes testable outputs while withholding protected implementation detail.
Validator behavior is represented as a live score that reflects block cadence, transaction flow, and chain stability.
Chain consistency is expressed as a coherence metric derived from current state, block history, and confirmed activity.
Transactions are accepted into a live mempool, confirmed during mining, and tracked through publicly readable endpoints.
The backend stores wallets, transactions, and blocks in persistent SQLite storage so partner tests survive service restarts.
Zeta-Chain pairs a studio-aligned public experience with a live Flask API behind the same domain. The backend persists chain state, wallets, transactions, and block metadata while Nginx proxies the testing routes securely.
┌─────────────────────────────────────────────────────────────────────────────┐
│ ZETA-CHAIN BLOCKCHAIN │
├─────────────────────────────────────────────────────────────────────────────┤
│ Public domain: https://zeta.yahrona.co.za │
│ Live proxy: /health and /api/chain/* │
│ │
│ Yahrona mathematical layer │
│ • Yahrona-Locking metrics │
│ • Yahrona coherence metrics │
│ • Yahrona validation scoring │
│ │
│ Persistent backend │
│ • SQLite wallet store │
│ • Live mempool │
│ • Confirmed block ledger │
│ • Mining endpoint for live test blocks │
└─────────────────────────────────────────────────────────────────────────────┘
Create reusable test wallets directly from the public API and inspect balances through the live domain.
Mine a live block to confirm queued transactions and award a miner balance for testing purposes.
Read recent blocks and drill into a specific block with its confirmed transactions and live metrics.
Chain activity survives service restarts because wallets, blocks, and transactions are stored in SQLite.
Expose height, difficulty, latest hash, pending transaction count, and Yahrona-branded metrics.
Partners can test through zeta.yahrona.co.za instead of using a raw VPS port or internal service address.
These routes are exposed through the live Zeta domain so partners can verify the chain state, create a test wallet, submit a transaction, and mine a block without using the raw VPS port directly.
curl https://zeta.yahrona.co.za/health
curl https://zeta.yahrona.co.za/api/chain/info
curl -X POST https://zeta.yahrona.co.za/api/chain/wallet/create
curl -X POST https://zeta.yahrona.co.za/api/chain/mine/start \
-H "Content-Type: application/json" \
-d '{"address":"YOUR_WALLET_ADDRESS"}'