Search content
Sort by

Showing 7 of 7 results by BetaBit
Post
Topic
Board Gambling
Re: Betabit.org - PvP 2 Minute Jackpot & 30Max - Coinflip - Roulette - 0% Fees
by
BetaBit
on 18/03/2019, 06:27:32 UTC
You have worked for this project for 3 years but you forget to make FAQ, ToS, Support page? Those three are must have information for any services.

Edit: Ah got it, so users must have an account to see the ToS, Support, etc. It should be accessible publicly without having an account imo. Usually users who want to register should be asked to to accept the terms, by your way it is like that you are forcing users to accept the terms as it is only accessible once we have account on your site.

Hey thanks for your input. I'm not sure what you mean by saying users must have an account to see the ToS? It is possible to view ToS and privacy policy publicly without creating an account in the login page at the bottom left corner. I have changed the color as it was probably hard to see.
Post
Topic
Board Gambling
Merits 1 from 1 user
Re: Betabit.org - PvP 2 Minute Jackpot & 30Max - Coinflip - Roulette - 0% Fees
by
BetaBit
on 18/03/2019, 00:27:18 UTC
⭐ Merited by DarkStar_ (1)
If you are offering "0% Fees" how are you planning on making money?

If your casino is offering PvP games, it would make sense to have lower fees than "traditional" bitcoin casinos because players are not playing against you, but some fees would still be appropriate because you are providing a service and venue.

0% Fees is short term to attract players and money isn't the biggest concern, if it was it wouldn't have taken almost 3 years to develop if it makes money it makes money, I am going to try and keep this project running for a really long time. The goal is to build reputation and trust between the players as this popped out of no where and people have suspicion. I will be doing giveaways quests and puzzles over time to hopefully attract players :^)
Post
Topic
Board Gambling
Re: Betabit.org - PvP 2 Minute Jackpot & 30Max - Coinflip - Roulette - 0% Fees
by
BetaBit
on 17/03/2019, 22:08:58 UTC
It seems like you cannot acces and try the website without having an account created there. You should think about creating a demo version of your games where people can test it and see how it looks and how it works before actually playing with real money. And this demo should be available for everyone, without needing to create an account to try it.

Thank you for the feedback. This is something that was actually considered but didn't make it in before launching, we will look into it and possibly start implementing it over the following weeks.
Also my complain too where i do need to register first before you would able to have a glimpse of the site.When i do see that email verification i do already lost
my interest to proceed on.Just as been suggested you should atleast have that kind of demo so that people will directly find on whats the thing being offered on your site.
First impressions do last.

Thanks for the feedback. As a temporary solution I have provided screenshot demos on the thread. This feature will be moved to the top of our priorities.
Post
Topic
Board Gambling
Re: Betabit.org - PvP 2 Minute Jackpot & 30Max - Coinflip - Roulette - 0% Fees
by
BetaBit
on 17/03/2019, 21:24:21 UTC
It seems like you cannot acces and try the website without having an account created there. You should think about creating a demo version of your games where people can test it and see how it looks and how it works before actually playing with real money. And this demo should be available for everyone, without needing to create an account to try it.

Thank you for the feedback. This is something that was actually considered but didn't make it in before launching, we will look into it and possibly start implementing it over the following weeks.
Post
Topic
Board Gambling
Re: Betabit.org | PvP 2 Minute Jackpot & 30Max | Coinflip | Roulette
by
BetaBit
on 17/03/2019, 20:42:46 UTC
I suppose it would be appropriate to remove fees for now to gain new players  Smiley
Post
Topic
Board Gambling
Topic OP
Betabit.org - PvP 2 Minute Jackpot & 30Max - Coinflip - Roulette - 0% Fees
by
BetaBit
on 17/03/2019, 20:27:54 UTC

As a side project that has been worked on for almost 3 years, it is finally released!



Temporary Demos while guest feature is being worked on

Jackpot Demo

30Max Demo

Coinflip Demo


Provability Fair:

This seeding event is using the same provably fair as Bustabit

Starting with a secret we've generated a chain of 25,000,000 SHA256 hashes. Each element is the hash of the lowercase, hexadecimal string representation of the previous hash. The hash of the chain's last element is 56982c4f61d8b1c25c9106a6e54d99bf761f368484f89283c6f645db2580e25f.

Every game maps to a hash in the chain: The 25,000,000th element of the chain is the hash of game #1 and the first element in the chain is the hash of game #25,000,000. To verify that a hash belongs to a game #n, simply hash it n times and compare the result with the terminating hash.

To calculate a game's result from its hash:
Code:
const crypto = require("crypto")

function gameResult(seed, salt) {
  const nBits = 52 // number of most significant bits to use

  // 1. HMAC_SHA256(key=salt, message=seed)
  const hmac = crypto.createHmac("sha256", salt)
  hmac.update(seed)
  seed = hmac.digest("hex")

  // 2. r = 52 most significant bits
  seed = seed.slice(0, nBits/4)
  const r = parseInt(seed, 16)

  // 3. X = r / 2^52
  let X = r / Math.pow(2, nBits) // uniformly distributed in [0; 1)

  // 4. X = 99 / (1-X)
  X = 99 / (1 - X)

  // 5. return max(trunc(X), 100)
  const result = Math.floor(X)
  return Math.max(1, result / 100)
}

Before being used to calculate the corresponding result, each game hash is salted with the lowercase, hexadecimal string representation of the hash of bitcoin block 567510. This block has been mined.

As there are no versus house gamemodes currently active there is no need to pick an un-mined block. As soon as Roulette or versus house game mode is introduced we will pick a new block that has not been mined which will look similar to this thread

If you have any questions or concerns we will gladly answer them!
Post
Topic
Board Gambling
Betabit Seeding Event
by
BetaBit
on 19/11/2018, 08:11:09 UTC
This seeding event was scrapped new provability fair: Click Here


Edit: Secret: NvYswejFjNeHd7


This seeding event is using the same provably fair as Bustabit link to thread

Starting with a secret we've generated a chain of 25,000,000 SHA256 hashes. Each element is the hash of the lowercase, hexadecimal string representation of the previous hash. The hash of the chain's last element is 00f34b67b5a86ade6f94f5a3c050d5d8514e9da93ddf3d91694704f3c17f9609.

Every game maps to a hash in the chain: The 25,000,000th element of the chain is the hash of game #1 and the first element in the chain is the hash of game #25,000,000. To verify that a hash belongs to a game #n, simply hash it n times and compare the result with the terminating hash.

To calculate a game's result from its hash:
Code:
const crypto = require("crypto")

function gameResult(seed, salt) {
  const nBits = 52 // number of most significant bits to use

  // 1. HMAC_SHA256(key=salt, message=seed)
  const hmac = crypto.createHmac("sha256", salt)
  hmac.update(seed)
  seed = hmac.digest("hex")

  // 2. r = 52 most significant bits
  seed = seed.slice(0, nBits/4)
  const r = parseInt(seed, 16)

  // 3. X = r / 2^52
  let X = r / Math.pow(2, nBits) // uniformly distributed in [0; 1)

  // 4. X = 99 / (1-X)
  X = 99 / (1 - X)

  // 5. return max(trunc(X), 100)
  const result = Math.floor(X)
  return Math.max(1, result / 100)
}

Before being used to calculate the corresponding result, each game hash is salted with the lowercase, hexadecimal string representation of the hash of bitcoin block 550900. This block has not been mined yet, proving that I have not deliberately picked a chain that is unfavorable for players.

More information about the site will be revealed once the block is mined.