Bitcoin Forum
May 02, 2024, 05:21:13 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Blaze.com Double migration seeding event  (Read 49 times)
blazecom (OP)
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
December 28, 2023, 07:25:27 PM
 #1

We've to migrate Double into a dedicate service, for that reason we have to generate a new seeding event.

As part of our fairness we generated a chain of 10,000,000 SHA256 hashes where each hash is the hash of the hexadecimal representation of the previous hash. Being the last hash in the chain: b24f784dc4371781e85bf089ddb99ce56de899d8a6e8a09e652f92a40baada85


Script to calculate Double tail:
Code:
const ROULETTE_TILES = [
  { number: 0, color: 'white' },
  { number: 11, color: 'black' },
  { number: 5, color: 'red' },
  { number: 10, color: 'black' },
  { number: 6, color: 'red' },
  { number: 9, color: 'black' },
  { number: 7, color: 'red' },
  { number: 8, color: 'black' },
  { number: 1, color: 'red' },
  { number: 14, color: 'black' },
  { number: 2, color: 'red' },
  { number: 13, color: 'black' },
  { number: 3, color: 'red' },
  { number: 12, color: 'black' },
  { number: 4, color: 'red' },
];

getRollFromHash = (hash) => {
  // roulette number from 0-15
  const integ = parseInt(hash, 16);
  const MAX_RANGE = Math.pow(2, 256);
  const randval = integ / MAX_RANGE;
  const n = Math.floor(randval * 15);
  const tile = ROULETTE_TILES.find((t) => t.number === n);

  let color;
  switch (tile.color) {
    case 'white':
      color = 0;
      break;

    case 'black':
      color = 2;
      break;

    case 'red':
      color = 1;
      break;
  }

  return {
    n,
    color: color,
  };
};


We’re gonna be using a BlockHash that hasn’t been mined at the time of this post, we’re expecting to use Bitcoin block 823307, this to prove we have no influence over the outcome of the game. Please guys feel free to quote this post so this will be all set in stone.

Looking forward to show you guys Double migration very soon!
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714670473
Hero Member
*
Offline Offline

Posts: 1714670473

View Profile Personal Message (Offline)

Ignore
1714670473
Reply with quote  #2

1714670473
Report to moderator
1714670473
Hero Member
*
Offline Offline

Posts: 1714670473

View Profile Personal Message (Offline)

Ignore
1714670473
Reply with quote  #2

1714670473
Report to moderator
blazecom (OP)
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
December 28, 2023, 07:46:55 PM
 #2

Archived post: https://archive.ph/wStDU

Client seed has been mined!

Code:
0000000000000000000292453e3be843129d4a0fb13f6249935524225b545c7b

https://www.blockchain.com/explorer/blocks/btc/823307 

https://blaze-4.com/en/games/double-v2

SEE YOU THERE!
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!