Post
Topic
Board Gambling
Re: Blockchain gambling is booming
by
eskider
on 10/07/2020, 03:34:34 UTC
So this game is using a random number generator as its fairness mechanism?

Do you have any information that shows how your RNG and verifier system works? That would be helpful—players want to know they're playing something fair, and providers want to know they can keep their players happy and avoid suggestions of foul play.

The industry is booming, and white label solutions are an inevitability, but only if they're good.

sir, Here we take the ByteDice game as an example. In each bet, the player will get a random number, which consists of two parts: the hash of transaction when betting, a server seed managed by game manager. ByteDice gets a random seed by making a SHA256 calculation with these two numbers, then make a MersenneTwister with the random seed to get the random number of the game. Players can verify the fairness through Tx Hash of the game in the block browser. The specific game and verification process is as follows:
Step01: The user creates a ByteTrade account and deposit
Step02: The user selects a certain difficulty to play the game, corresponding to different winning probability and odds.
Step03: The user bets, transfers the bet amount to the game address, and the backend service starts to calculate the user’s random number
Step04: Compare the random number of the user with the BET value of the current difficulty. If the BET value is lower, the user wins, and the bonus can be transferred in 1 second.
Step05: ByteDice announced yesterday’s Sever Seed plaintext. Users can verify fairness by comparing Hash

You can learn more here:
Quote