Verifying Results
1) Verify that the Hash is Part of the Original Committed Chain:
2) Verify the Randomness Hash:
import hashlib
# === Step 1: Input the revealed hash and optional salt ===
chain_hash = "e1f4c3b2a8d1234567890abcdeffedcba9876543210ffeeddccbbaa9988776655"
salt_hash = "" # Leave empty to verify the chain only
# === Step 2: Concatenate and hash ===
combined_text = chain_hash + salt_hash
pmHASH = hashlib.sha512(combined_text.encode()).hexdigest()
print("pmHASH:", pmHASH)
3) Verify the Price Movements from the pmHASH:
Summary
Last updated