DEMOSTRABLEMENTE JUSTO

RAFFLESJUEGOSRULETACRASHJACKPOT

Cada vez que se registra una apuesta de un usuario en el Jackpot, se guarda la hora a la que se hizo. En caso de realizar varias apuestas, simplemente se sumarán a la apuesta ya creada pero no cambiará la hora de registro. Una vez la cuenta atrás llega a 0, se ordenan las apuestas cronológicamente, se suma el total de monedas apostadas y se genera un número aleatorio entre 1 y el total de monedas.

Por ejemplo, si hubieran 3 apuestas de 500, 700 y 100 monedas respectivamente, el total de monedas sería 1300. En este caso generaríamos un número entre 1 y 1300, ambos incluidos. Si el número aleatorio generado es 1000, el ganador sería el usuario que apostó 700 monedas:

import crypto from "crypto";const serverSeed = "1234";const publicSeed = "abcd";const nonce = 3;const roundBets = [{ user: "Macaco", betAmount: 500, createdAt: "2025-11-23T22:04:02.324Z" },{ user: "Tarifa", betAmount: 700, createdAt: "2025-11-23T22:04:03.324Z" },{ user: "Mono", betAmount: 100, createdAt: "2025-11-23T22:04:05.324Z" }];const seed = `JACKPOT-${serverSeed}-${publicSeed}:${nonce}`;const MACACO_WINS = doesBotMacacoWins(seed);if (MACACO_WINS) {console.log("Ganador: MACACO BOT");return;}const WINNER = calculateWinner(seed, roundBets);console.log("El ganador del Jackpot es", WINNER);function doesBotMacacoWins(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);const roll = Math.floor(h/e * 100);return roll < 7;}function calculateWinner(seed, roundBets) {roundBets.sort((a, b) => new Date(a.createdAt).getTime() - new Date(b.createdAt).getTime());const totalCoins = roundBets.reduce((sum, bet) => sum + bet.betAmount, 0);const hash = crypto.createHmac("sha256", seed).digest("hex");const h = Number.parseInt(hash.slice(0, 52 / 4), 16);const e = Math.pow(2, 52);const WINNER_TICKET = Math.floor(h/e * totalCoins) + 1;let cumulative = 0;for (const bet of roundBets) {const start = cumulative + 1;cumulative += bet.betAmount;if (WINNER_TICKET >= start && WINNER_TICKET <= cumulative) {return bet.user;}}throw new Error("No winner calculated. This should never happen if roundBets is valid.");}