Blackjack 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 { createHmac } from "crypto";
const AVAILABLE_LABELS = ["2", "3", "4", "5", "6", "7", "8", "9", "10", "J", "Q", "K", "A"];
const AVAILABLE_SUITS = ["hearts", "diamonds", "clubs", "spades"];
const serverSeed = "REVEALED_SERVER_SEED";
const clientSeed = "REVEALED_CLIENT_SEED";
const cardNumber = 1; // 1st card, 2nd card, etc.
const saltedSeed = createHmac("sha256", serverSeed)
.update(clientSeed)
.update(`${cardNumber}`)
.digest("hex");
const h = parseInt(saltedSeed.slice(0, 13), 16);
const label = AVAILABLE_LABELS[h % 13];
const suit = AVAILABLE_SUITS[h % 4];
const card = { label, suit };
console.log("Card:", card);Recent Rounds
Game / Round
Server Seed
Public Seed
Total Card Dealt
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.




