Search content
Sort by

Showing 17 of 17 results by Zaynab
Post
Topic
Board Gambling discussion
Re: NCAA March Madness brackets?
by
Zaynab
on 27/03/2021, 09:27:46 UTC
Post
Topic
Board Lending
Re: Lending Service Started! (BTC/LTC/ETH/DOGE/ETC)!
by
Zaynab
on 27/03/2021, 07:33:59 UTC
I need a $9.9 loan in ltc for the collateral I can tip the BAT tokens worth of the loan amount instantly
Let me know if that's fine with you so I can post the addresses
Post
Topic
Board Games and rounds
Re: 🔥Free 0.00005BTC signup bonus on Tower.bet 🔥 🎲HiLo 🎲Crash 🎲 Roulette 🎲
by
Zaynab
on 10/03/2021, 16:33:32 UTC
Username: Zaynab
Thank you so much
Does Negative trusted accounts will also avail the promo ?

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

anyway just drop by to ask if the bonus is still existing ? if i create an account now will i have your 0.00005 bitcoin bonus?


thanks for the response , looking forward to try your site.

My Account Isn't Negative trusted Tf you talking about dude?
Btw Just to answer your question, Yes the Bonuses are still credited.
I got mine credited today.
Post
Topic
Board Games and rounds
Re: 🔥Free 0.00005BTC signup bonus on Tower.bet 🔥 🎲HiLo 🎲Crash 🎲 Roulette 🎲
by
Zaynab
on 09/03/2021, 06:03:03 UTC
Username: Zaynab
Thank you so much
Post
Topic
Board Games and rounds
Re: █ ★☆★777Coin★☆★ █ ✔ Full Range of Games ✔ Instant Withdraw ✔ Free mBTC!
by
Zaynab
on 08/03/2021, 11:21:46 UTC
I just came to know about this site through an add on forum and signed up.

Username: zaynabshah

Thankyou so much Smiley
Post
Topic
Board Games and rounds
Re: 🐉 CoinDragon's Birthday 🐉 - 🎂 Adventures 🎂-🎁 Special Gifts 🎁-🤑 Rakeback🤑
by
Zaynab
on 11/02/2021, 14:35:47 UTC
Username: Zaynabshah

Yayy Another ADVENTURE! Happy Birthday COindragon❤️
Post
Topic
Board Games and rounds
Re: 🐉 CoinDragon's Birthday 🐉 - Surprise gifts for EVERYONE, win up to 0.0365 BTC
by
Zaynab
on 10/02/2021, 00:20:05 UTC
1) Your CoinDragon Public Display Name: Zaynabshah

One of the fairest gambling site I've played at. Been a part of the project since the early launch days and I must say, CoinDragon knows how to take care of their players. The launch was one of the best, giving all new people to come win free money and play on the site or withdraw it instantly throw all day giveaways with a decent sized prize. Ever since the new games have been remarkable and one of my favorites so far. I'm happy to be a part of CoinDragon and feel honored to be a part of them specially on this really special day which is COINDRAGON CAKE DAY. HAPPY BIRTHDAY DRAGON, May you have many more Happy Birthday Coindragon ❤️
Post
Topic
Board Project Development
Re: ⚡️LightningVoucher—A banknote base on BTC LightningNetwork⚡️
by
Zaynab
on 28/06/2020, 04:11:34 UTC
I have a crazy idea about "Lightning Voucher" (I'd rather call it Lightning Cash)
Thats a paper money build in Lightning Network via LNURL
Its elegant synthesis formula is as follows:
Banknote+LN = LightningVoucher

https://i.imgur.com/fUBsTeo.png

You could scan the QR code from the LightningVoucher to recieve the Sats!
So i could buy a beer with LightningVoucher if the bar accpet bitcoin lightning network!
It will help more muggles(no offense) to know and use the real bitcoin and i'm willing to sponsor a campaign about giving away LightningVouchers!
What do you think about that?
:p

Interesting. Only if that voucher would have some more zeros after 1 it would have beeeen perfect xD
Post
Topic
Board Gambling
Re: Multiplayer Keno seed event - BC.Game
by
Zaynab
on 22/06/2020, 06:49:34 UTC
Get ready for some exciting multiplayer action because at last, Keno is here. You spoke, we listened.
What lucky numbers and patterns will you choose to take the bankroll?
Will you go it alone or will you coordinate a strategy with your friends in chat? There are so many more possibilities with this new and exciting twist on a classic game.

Starting with a secret I've generated a chain of 10,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 54fe30623823224ef8379e00f3d88a02ed3333937862ee0383b9cbb3d1e43763

Every game maps to a hash in the chain: The 10,000,000th element of the chain is the hash of game #1 and the first element in the chain is the hash of game #10,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 CryptoJS = require("crypto-js");

function seedGenerator(hash, salt) {
    const hmac = CryptoJS.HmacSHA256(CryptoJS.enc.Hex.parse(hash), salt);
    return hmac.toString(CryptoJS.enc.Hex);
}
function createNums(allNums, hash) {
    const nums = [];
    let h = CryptoJS.SHA256(hash).toString(CryptoJS.enc.Hex);
    allNums.forEach((c) => {
        nums.push({ num: c, hash: h });
        h = h.substring(1) + h.charAt(0);
    });
    nums.sort(function (o1, o2) {
        if (o1.hash < o2.hash) {
            return -1;
        } else if (o1.hash === o2.hash) {
            return 0;
        } else {
            return 1;
        }
    });
    return nums;
}
function keno(hash) {
    const salt = 'salt waiting to be generated';
    const allNums = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40]
    const seed = seedGenerator(hash, salt);
    let finalNums = createNums(allNums, seed);
    finalNums = createNums(finalNums, seed);
    return finalNums.slice(0, 10).map(m => m.num)
}

let hash = 'game hash';
console.log('result =>', keno( hash ).map(item => item.num).join(','));


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 635,010
This block has not been mined yet at the time of starting the provably fair seeding event, proving that I have not deliberately picked a chain that is unfavorable for players.

This had to be quoted for the record.
Post
Topic
Board Gambling
Re: Crash Game Reseeding Event @ BC.Game
by
Zaynab
on 19/06/2020, 09:04:02 UTC
Hello world,

Based on community feedback, we're currently in the process of upgrading the Crash game algorithm with salting as requested. The purpose of this post is to describe the new changes within the game result algorithm in addition to publicizing our reseeding event for Crash. Below are the differences in how the game results are generated:

OLD GAME RESULT FORMULA
Code:

  const gameResult = (seed) => {
    const nBits = 52; // number of most significant bits to use
    // 1. r = 52 most significant bits
    seed = seed.slice(0, nBits / 4);
    const r = parseInt(seed, 16);
    // 2. X = r / 2^52
    let X = r / Math.pow(2, nBits); // uniformly distributed in [0; 1)
    X = parseFloat(X.toPrecision(9));
    // 3. X = 99 / (1-X)
    X = 99 / (1 - X);
    // 4. return max(trunc(X), 100)
    const result = Math.floor(X);
    return Math.max(1, result / 100);
  };


NEW GAME RESULT FORMULA
Code:

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

    // 1. HMAC_SHA256(message=seed, key=salt)  
    const hmac = CryptoJS.HmacSHA256(CryptoJS.enc.Hex.parse(seed), salt);
    seed = hmac.toString(CryptoJS.enc.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)
    X = parseFloat(X.toPrecision(9));

    // 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);
  };



Prior to being used for calculation, each game hash is salted with the lowercase + hexadecimal string representation of the hash from pre-selected Bitcoin block 635,380. This block has not been mined yet as of this post, proving that we have not deliberately selected a mined block with a hash that could be favorable to the house. Once block 635,380 has been mined, the results will be posted to this thread as a reply. The game this post is referencing is at https://bc.game/crash.



coco asked me to quote this. So I'm quoting this and fuck coco btw
Post
Topic
Board Games and rounds
Re: $200+ daily Discord giveaways! (Stake.com)
by
Zaynab
on 01/01/2019, 04:28:15 UTC
2019

ZaynabShah#5455
Post
Topic
Board Games and rounds
Re: ✅ $10 BONUS ✅ Truegame - 1st Smart Contract Platform For Lotto & Games of Chance
by
Zaynab
on 16/01/2018, 15:00:53 UTC
Submitted the application waiting for invitation code hopefully  Cheesy

Thanks in advance
Post
Topic
Board Games and rounds
Re: Bitgame.online | Bitcoin and Altcoin Casino | Free 0.00005 BTC Giveaway
by
Zaynab
on 16/01/2018, 14:46:17 UTC
Username Zaynab

Thanks in advance   Cheesy
Post
Topic
Board Bounties (Altcoins)
Re: 0.00030000 Bitcoins give away by Casinolize.com | Come & Grab the Satoshis
by
Zaynab
on 27/12/2017, 19:05:42 UTC
Username Zaynab

Thanks in advance
Post
Topic
Board Games and rounds
Re: █ ★☆★777Coin★☆★ █ ✔ Full Range of Games ✔ Instant Withdraw ✔ Free mBTC!
by
Zaynab
on 27/12/2017, 16:36:33 UTC
Username Zaynab

Thanks in advance   Smiley
Post
Topic
Board Games and rounds
Re: WHEEL99.COM >> NEW GIVEAWAY 500 BITS
by
Zaynab
on 02/10/2017, 20:42:37 UTC
Username: Zaynab