Keno is now LIVE
Keno Fairness
Provably Fair is a system allowing players to verify that the site operates legitimately and doesn't tamper game results. It leverages cryptography and third party input to generate random values. At the end of the game, players can verify that the outcome was indeed determined by the original seed and inputs, thus proving that the game was fair.
import seedrandom from "seedrandom";
const serverSeed = "REVEALED_SERVER_SEED";
const clientSeed = "REVEALED_CLIENT_SEED";
const nonce = "1";
const mode = "CLASSIC"; // CLASSIC | LOW | MEDIUM | HIGH | EXTREME
const boardByMode = {
CLASSIC: { tileCount: 40, drawCount: 10 },
LOW: { tileCount: 40, drawCount: 10 },
MEDIUM: { tileCount: 40, drawCount: 10 },
HIGH: { tileCount: 40, drawCount: 10 },
EXTREME: { tileCount: 56, drawCount: 10 },
};
const { tileCount, drawCount } = boardByMode[mode];
const rng = seedrandom(`${serverSeed}:${clientSeed}:${nonce}`);
const numbers = Array.from({ length: tileCount }, (_, i) => i + 1);
const drawnTiles = [];
for (let i = 0; i < drawCount; i++) {
const index = Math.floor(rng() * numbers.length);
drawnTiles.push(numbers[index]);
numbers.splice(index, 1);
}
console.log("Drawn Tiles:", drawnTiles);Recent Rounds
ID
Server Seed
Client Seed
Hits
Solpump is owned and operated by 3-102-932956 Ltd located at Calle 37 bis, Los Yoses, Montes, de Oca, San Jose, Costa Rica. Solpump is licensed and regulated by the Tuvalu Gaming Authority under license number GLN - 9301.




