all
PrimeDrop

Verify your games

Provably fair

Provable Fairness — Boxes

Case openings on the platform use a Provable Fairness system that allows any user to independently verify the fairness of each opening.

The result is generated deterministically based on predefined input values and cannot be changed after the case opening begins.

Client Seed and Server Seed

Case openings use a pair of values that users can interact with directly:

  • Client Seed — a client-side value that can be manually changed. Changing the Client Seed generates a new sequence of opening results.

  • Server Seed — a server-generated value. Before opening a case, only the hashed Server Seed is shown, and it can also be manually refreshed.

Using a hashed Server Seed ensures that the platform cannot change it after the opening starts and that users cannot predict results in advance.

After changing the Server Seed, the previous seed pair is stored and can be used to verify completed openings.

Result Generation (Box Opening)

  • The Client Seed and Server Seed are combined into a single string.

  • The resulting value is processed using the crc32 function.

  • The random number generator is initialized.

  • A value between 1 and 100,000,000 is generated.

  • The value is normalized and used as the case opening ticket.

With identical Client Seed and Server Seed values, the result will always be the same.

Fairness Verification

Users can independently verify results by inserting the applicable Client Seed and Server Seed values into the PHP code below and comparing the generated result with the case opening shown on the website.

PHP Verification Code

<?php
// Provably Fair verification for case openings (Boxes)
// This script reproduces the platform's result
// Replace Client Seed and Server Seed with actual values
 
$client_seed = 'Client Seed';
$server_seed = 'Server Seed';
 
$seed = $client_seed . $server_seed;
mt_srand(crc32($seed));
 
$ticket = mt_rand(1, 100000000) / 1000000;
var_dump($ticket);
?>

Where to run the code

This PHP script can be executed in any convenient way:

  • Locally — using PHP installed on your computer or server;

  • Online — via public PHP runners.

Recommended services:

To verify the result:

  • Copy the full code.

  • Insert the actual Client Seed and Server Seed values.

  • Run the script.

  • Compare the result with the case opening result on the website.

all
PrimeDrop
icon

This website is protected by SSL encryption, ensuring your data remains secure. Certified for safety and compliance with international web standards.

Features

AffiliateRewards
imgimgimgimg

Send us an email

[email protected]

© 2026PrimeDrop. All rights reserved.
PRIMEDROP is owned and operated by Celsius Holdings N.V., registration number: 157856, registered address: Zuikertuintjeweg Z/N (Zuikertuin Tower), Willemstad, Curaçao. Contact: [email protected]

Active currency
information

Language