⚛️

Sovereign Node Mesh

TM3QSC · REPLIT CLOUD ⊕ ZION001 · λ₀ = 1.00237×10⁻³¹
LOADING
Total Nodes
Online
Cloud QKAI
TOROIDAL
Topology
Live Node Status
Loading node mesh…
Connect ZION001 to Mesh
📡 Register ZION001 as a Live Node
1
Set NODE_SYNC_KEY in your ZION001 .env — must match the Replit secret.
echo 'NODE_SYNC_KEY=your_key_here' >> ~/TM3QSC-TM3-Quantum-Sovereign-Core/.env
2
Run the sovereign seeder (brings QKAI to 100/SOVEREIGN and auto-checks in):
bash scripts/seed_qkai_zion001.sh
Add --pull to sync BFT/Ma'at data from Replit cloud first.
3
Or check in manually via curl:
curl -X POST "https://tm3quantumsovereigncore.net/api/sync/node-checkin?key=$NODE_SYNC_KEY" \
  -H "Content-Type: application/json" \
  -d '{"node_id":"ZION001","node_name":"TM3 ZION001 State Node","type":"local","os":"Ubuntu","qkai_score":100,"qkai_level":"SOVEREIGN","ollama":true,"postgres":true,"key":"'$NODE_SYNC_KEY'"}'
4
For periodic auto-checkin add to cron on ZION001:
*/5 * * * * curl -sf -X POST "https://tm3quantumsovereigncore.net/api/sync/node-checkin?key=$NODE_SYNC_KEY" -H "Content-Type: application/json" -d '{"node_id":"ZION001","qkai_score":100,"qkai_level":"SOVEREIGN","key":"'$NODE_SYNC_KEY'"}' > /dev/null
5
Pull cloud QKAI data to ZION001 any time:
curl "https://tm3quantumsovereigncore.net/api/sync/export?key=$NODE_SYNC_KEY" | python3 -c "import sys,json; d=json.load(sys.stdin); print('Score:', d['qkai_score'], d['qkai_level'])"