📐Technical Edge

The Math Behind It

Randomness Meets Determinism

  1. VRF Call → Seed S A verifiable random function (VRF) generates a tamper-proof seed.

  2. 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.

  3. 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