c5977a4 3c60d19 c5977a4 3c60d19 c5977a4 3c60d19
1
2
3
4
5
6
7
8
9
10
import hashlib import json def generate_proof(state): raw = json.dumps(state, sort_keys=True).encode() return { "hash": hashlib.sha256(raw).hexdigest(), "deterministic": True, "enforcement": "simulation-only" }