Public read-only window into the Strikaris Chain
quick verify - prove the hash offline
# 1. fetch the raw block
curl https://verify.strikaris.com/chain/block/<height-or-hash>
# 2. recompute SHA-256 of the canonical fields
python3 -c "
import json, hashlib, sys
b = json.load(sys.stdin)
entry = {k: b[k] for k in ['id','timestamp','agent','status','action','details']}
print(hashlib.sha256(json.dumps(entry,sort_keys=True).encode()).hexdigest())"
# result must match the root field above