BC.Game Plinko Verifier

Verify the fairness of BC.Game Plinko ball paths and landing positions.

Bet Information

Verification Results

Enter your bet data and click verify to see results

How BC.Game Plinko Works

Ball Path

The ball drops and bounces left (L) or right (R) at each peg. The path is determined by HMAC-SHA512 hash using a special byte-to-float conversion.

Verification Algorithm

  1. Generate HMAC-SHA512(serverSeed, clientSeed:nonce)
  2. For each pin (row), take 4 consecutive bytes from the hash
  3. Convert 4 bytes to float: byte[0]/256 + byte[1]/256² + byte[2]/256³ + byte[3]/256⁴
  4. If float ≤ 0.5, ball goes LEFT; if > 0.5, ball goes RIGHT
  5. Final position = count of RIGHT moves