📐Technical Edge
The Math Behind It
Randomness Meets Determinism
VRF Call → Seed S A verifiable random function (VRF) generates a tamper-proof seed.
Parameter Vector P[150] = f(S, Team A Rating, Team B Rating) A deterministic function combines the seed with team ratings to produce a 150-parameter vector.
Deterministic Engine Result = g(P) A physics-based simulation consumes P to generate the final match result. This process is fully deterministic and platform-agnostic—run it anywhere, and the result is always the same.
This separation enables a scalable hybrid model:
Off-chain: The heavy physics sim runs client-side or server-side for performance.
On-chain: The initial VRF and param vector P provide cryptographic proof of fairness and reproducibility.
Last updated