DEMOSTRABLEMENTE JUSTO
El funcionamiento de la ruleta es bastante simple, una vez termina la cuenta atrás de 15 segundos, obtenemos un número aleatorio entre 0 y 14 y se envía el resultado. Si el número es 0, corresponde con el color amarillo, si es par con el negro, y si es impar con el rosa:
import crypto from "crypto";const serverSeed = "1234";const publicSeed = "abcd";const nonce = 3;const seed = `ROULETTE-${serverSeed}-${publicSeed}:${nonce}`;const roll = getRollValue(seed);console.log("El resultado de la ruleta es", getRollColor(roll));function getRollValue(seed) {const hash = crypto.createHmac("sha256", seed).digest("hex");const h = Number.parseInt(hash.slice(0, 52 / 4), 16);const e = Math.pow(2, 52);return Math.floor(h / e * 15); }function getRollColor(rollValue) {const position = rollValue % 15;if (position === 0) {return 'YELLOW';}else if (position % 2 === 1) {return 'PINK';}else {return 'BLACK';}}