Bitcoin Forum
April 27, 2024, 09:20:12 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Funarcade.io Baccarat & Crash seeding event  (Read 121 times)
Funarcade (OP)
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
October 01, 2023, 04:57:23 AM
 #1

Hello everyone and welcome to Funarcade’s seeding event for Multiplayer Baccarat and Crash games. Props to everyone who came before and propagated this method. 




We have generated a chain of 10,000,000 SHA256 hashes for each game. Each hash is the hash of the hexadecimal representation of the previous hash.
The last hash for each chain is:



Baccarat: ecda5ee831114c94c3f3502a8e4486839865ac17a19d4852cb25a37436ea77cd

Crash: 4cbac65f734bc42707bdd7a8a58aabd3ce16e27b26914cb5c0a1e1842dc4cc78

formula for generating game results:

Baccarat:
Code:
A hash is generated for each round of play, by combining the client and server seeds with the game and round numbers. The first 48 digits of the hash are taken and separated into 6 parts of 8 digits each. Each part represents a card on the table, from a minimum of 4 cards to a maximum of 6.

Example:
ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad
Card 1: ba7816bf
Card 2: 8f01cfea
Card 3: 414140de
Card 4: 5dae2223
Card 5: b00361a3
Card 6: 96177a9c

The digits of each part are then randomized, and this formula: floor(result* 52) is then used to arrive at a result from 0 - 51.
// Index of 0 to 51: ♥A to ♠K
const CARDS = [
0 - 12: ♥A, ♥2, ♥3 ♥4, ♥5, ♥6, ♥7 ♥8, ♥9, ♥10, ♥J ♥Q, ♥K,
13 - 25: ♦A, ♦2, ♦3, ♦4, ♦5, ♦6, ♦7, ♦8, ♦9, ♦10, ♦J, ♦Q, ♦K,
26 - 39: ♣A, ♣2, ♣3, ♣4, ♣5, ♣6, ♣7, ♣8, ♣9, ♣10, ♣J, ♣Q, ♣K,
39 - 51: ♠A, ♠2, ♠3, ♠4, ♠5, ♠6, ♠7, ♠8, ♠9, ♠10, ♠J, ♠Q, ♠K
];
// Game event translation
const card = CARDS[Math.floor(float * 52)];

Card Order:
Player's first two cards are Cards 1 and 2.
Banker's first two cards are Cards 3 and 4.
If only the Player or Banker draws a third card, it will be Card 5.
If both Player and Banker draw a third card, they will be Cards 5 and 6 respectively.
Card 6 is always the Banker's third card (if drawn).


Crash:
Code:
const gameHash = hashChain.pop()

const hmac = createHmac('sha256', gameHash);

// blockHash is the hash of bitcoin block insert chosen block here, and also the resulting hash.

hmac.update(blockHash);

const hex = hmac.digest('hex').substr(0, 8);
const int = parseInt(hex, 16);

// 0.01 will result in 1% house edge with a lowest crashpoint of 1

const crashpoint = Math.max(1, (2 ** 32 / (int + 1)) * (1 - 0.01))



Blockhash to be used as client seed will be Bitcoin Block 810108, which has not yet been mined at the time of posting. Following the established method, we are using the hash of a future bitcoin block as a client seed so players can be certain that we did not pick one in the house's favor.
If someone could quote this post so it is all set in stone, i'd appreciate it. thank you.
1714252812
Hero Member
*
Offline Offline

Posts: 1714252812

View Profile Personal Message (Offline)

Ignore
1714252812
Reply with quote  #2

1714252812
Report to moderator
1714252812
Hero Member
*
Offline Offline

Posts: 1714252812

View Profile Personal Message (Offline)

Ignore
1714252812
Reply with quote  #2

1714252812
Report to moderator
1714252812
Hero Member
*
Offline Offline

Posts: 1714252812

View Profile Personal Message (Offline)

Ignore
1714252812
Reply with quote  #2

1714252812
Report to moderator
There are several different types of Bitcoin clients. The most secure are full nodes like Bitcoin Core, which will follow the rules of the network no matter what miners do. Even if every miner decided to create 1000 bitcoins per block, full nodes would stick to the rules and reject those blocks.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714252812
Hero Member
*
Offline Offline

Posts: 1714252812

View Profile Personal Message (Offline)

Ignore
1714252812
Reply with quote  #2

1714252812
Report to moderator
maddy235
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
October 01, 2023, 05:16:38 AM
 #2

Hello everyone and welcome to Funarcade’s seeding event for Multiplayer Baccarat and Crash games. Props to everyone who came before and propagated this method. 




We have generated a chain of 10,000,000 SHA256 hashes for each game. Each hash is the hash of the hexadecimal representation of the previous hash.
The last hash for each chain is:



Baccarat: ecda5ee831114c94c3f3502a8e4486839865ac17a19d4852cb25a37436ea77cd

Crash: 4cbac65f734bc42707bdd7a8a58aabd3ce16e27b26914cb5c0a1e1842dc4cc78

formula for generating game results:

Baccarat:
Code:
A hash is generated for each round of play, by combining the client and server seeds with the game and round numbers. The first 48 digits of the hash are taken and separated into 6 parts of 8 digits each. Each part represents a card on the table, from a minimum of 4 cards to a maximum of 6.

Example:
ba7816bf8f01cfea414140de5dae2223b00361a396177a9cb410ff61f20015ad
Card 1: ba7816bf
Card 2: 8f01cfea
Card 3: 414140de
Card 4: 5dae2223
Card 5: b00361a3
Card 6: 96177a9c

The digits of each part are then randomized, and this formula: floor(result* 52) is then used to arrive at a result from 0 - 51.
// Index of 0 to 51: ♥A to ♠K
const CARDS = [
0 - 12: ♥A, ♥2, ♥3 ♥4, ♥5, ♥6, ♥7 ♥8, ♥9, ♥10, ♥J ♥Q, ♥K,
13 - 25: ♦A, ♦2, ♦3, ♦4, ♦5, ♦6, ♦7, ♦8, ♦9, ♦10, ♦J, ♦Q, ♦K,
26 - 39: ♣A, ♣2, ♣3, ♣4, ♣5, ♣6, ♣7, ♣8, ♣9, ♣10, ♣J, ♣Q, ♣K,
39 - 51: ♠A, ♠2, ♠3, ♠4, ♠5, ♠6, ♠7, ♠8, ♠9, ♠10, ♠J, ♠Q, ♠K
];
// Game event translation
const card = CARDS[Math.floor(float * 52)];

Card Order:
Player's first two cards are Cards 1 and 2.
Banker's first two cards are Cards 3 and 4.
If only the Player or Banker draws a third card, it will be Card 5.
If both Player and Banker draw a third card, they will be Cards 5 and 6 respectively.
Card 6 is always the Banker's third card (if drawn).


Crash:
Code:
const gameHash = hashChain.pop()

const hmac = createHmac('sha256', gameHash);

// blockHash is the hash of bitcoin block insert chosen block here, and also the resulting hash.

hmac.update(blockHash);

const hex = hmac.digest('hex').substr(0, 8);
const int = parseInt(hex, 16);

// 0.01 will result in 1% house edge with a lowest crashpoint of 1

const crashpoint = Math.max(1, (2 ** 32 / (int + 1)) * (1 - 0.01))



Blockhash to be used as client seed will be Bitcoin Block 810108, which has not yet been mined at the time of posting. Following the established method, we are using the hash of a future bitcoin block as a client seed so players can be certain that we did not pick one in the house's favor.
If someone could quote this post so it is all set in stone, i'd appreciate it. thank you.


Quoted for posterity
Funarcade (OP)
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
October 01, 2023, 05:35:57 AM
 #3

Block 810018 has been mined and the hash is:

Code:
00000000000000000004e860dc603f84a829ec6ea020534d2ac1ce7a68a82ea9

https://www.blockchain.com/explorer/blocks/btc/810108
www.Gambler.Casino
Newbie
*
Offline Offline

Activity: 210
Merit: 0


View Profile WWW
October 03, 2023, 05:33:33 PM
 #4

Explain to me - do you offer a baccarat game with fairness control?
Funarcade (OP)
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
October 06, 2023, 04:19:32 AM
 #5

Explain to me - do you offer a baccarat game with fairness control?

Hey, apologies for the late reply.

Yes we do, our Multiplayer Baccarat uses a Provably Fair result generation method - hence the seeding event. Come check it out at funarcade.io/games
decodx
Hero Member
*****
Offline Offline

Activity: 1414
Merit: 915


🇺🇦 Glory to Ukraine!


View Profile
October 07, 2023, 05:50:51 PM
 #6

Hey there! Welcome to our little forum, Funarcade.  Wink

I took a peek at your site and really dig the vibe you've got going on.  Lean and clean with a retro-future type of look.  But we need more information about your services. 

I suggest that you create an announcement thread with detailed explanations. This will help the community notice your casino better. Consider upgrading to a copper membership to add pictures and enhance your posts. This will make your threads more visually appealing and attractive.


R


▀▀▀▀▀▀▀██████▄▄
████████████████
▀▀▀▀█████▀▀▀█████
████████▌███▐████
▄▄▄▄█████▄▄▄█████
████████████████
▄▄▄▄▄▄▄██████▀▀
LLBIT|
4,000+ GAMES
███████████████████
██████████▀▄▀▀▀████
████████▀▄▀██░░░███
██████▀▄███▄▀█▄▄▄██
███▀▀▀▀▀▀█▀▀▀▀▀▀███
██░░░░░░░░█░░░░░░██
██▄░░░░░░░█░░░░░▄██
███▄░░░░▄█▄▄▄▄▄████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
█████████
▀████████
░░▀██████
░░░░▀████
░░░░░░███
▄░░░░░███
▀█▄▄▄████
░░▀▀█████
▀▀▀▀▀▀▀▀▀
█████████
░░░▀▀████
██▄▄▀░███
█░░█▄░░██
░████▀▀██
█░░█▀░░██
██▀▀▄░███
░░░▄▄████
▀▀▀▀▀▀▀▀▀
|
██░░░░░░░░░░░░░░░░░░░░░░██
▀█▄░▄▄░░░░░░░░░░░░▄▄░▄█▀
▄▄███░░░░░░░░░░░░░░███▄▄
▀░▀▄▀▄░░░░░▄▄░░░░░▄▀▄▀░▀
▄▄▄▄▄▀▀▄▄▀▀▄▄▄▄▄
█░▄▄▄██████▄▄▄░█
█░▀▀████████▀▀░█
█░█▀▄▄▄▄▄▄▄▄██░█
█░█▀████████░█
█░█░██████░█
▀▄▀▄███▀▄▀
▄▀▄
▀▄▄▄▄▀▄▀▄
██▀░░░░░░░░▀██
||.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
░▀▄░▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄░▄▀
███▀▄▀█████████████████▀▄▀
█████▀▄░▄▄▄▄▄███░▄▄▄▄▄▄▀
███████▀▄▀██████░█▄▄▄▄▄▄▄▄
█████████▀▄▄░███▄▄▄▄▄▄░▄▀
███████████░███████▀▄▀
███████████░██▀▄▄▄▄▀
███████████░▀▄▀
████████████▄▀
███████████
▄▄███████▄▄
▄████▀▀▀▀▀▀▀████▄
▄███▀▄▄███████▄▄▀███▄
▄██▀▄█▀▀▀█████▀▀▀█▄▀██▄
▄██▄██████▀████░███▄██▄
███░████████▀██░████░███
███░████░█▄████▀░████░███
███░████░███▄████████░███
▀██▄▀███░█████▄█████▀▄██▀
▀██▄▀█▄▄▄██████▄██▀▄██▀
▀███▄▀▀███████▀▀▄███▀
▀████▄▄▄▄▄▄▄████▀
▀▀███████▀▀
OFFICIAL PARTNERSHIP
FAZE CLAN
SSC NAPOLI
|
Funarcade (OP)
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
October 10, 2023, 05:26:58 AM
 #7

Hey there! Welcome to our little forum, Funarcade.  Wink

I took a peek at your site and really dig the vibe you've got going on.  Lean and clean with a retro-future type of look.  But we need more information about your services. 

I suggest that you create an announcement thread with detailed explanations. This will help the community notice your casino better. Consider upgrading to a copper membership to add pictures and enhance your posts. This will make your threads more visually appealing and attractive.



Hey Decodx!

That's a good idea, i'll do just that. We are introducing a community-first economic model, where up to 90% of profits get distributed back to everyone involved in the progress of the site - players, token holders, bankroll providers. We do go into that in our docs, but I realise not everyone will want to deep-dive that as it can be quite a read.

Thanks for taking a look at our site, glad to hear you liked it  Smiley. The site is temporarily down for a security overhaul, but i'll make a detailed post in the forum once we are back up.
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!