Search content
Sort by

Showing 3 of 3 results by Pho3niX90
Post
Topic
Board Gambling
Re: NASCRASH - Risk free opportunity
by
Pho3niX90
on 22/08/2021, 21:47:19 UTC
So after testing the withdrawal fees,
on $700, the fees were
under $0.01 for network fees, and $0.22 for processing fees.

Those seem to be the total fees for any amount ($0.23)
Post
Topic
Board Gambling
Re: NASCRASH - Grand Opening 50 Nitro Signup Bonus no deposit required
by
Pho3niX90
on 21/08/2021, 08:05:06 UTC

Unfortunately, we had to lower the signup bonus to 50 Nitros temporarily.  Someone felt the need to open 50 plus accounts to ruin the fun for everyone.  We will be implementing an email verification for an additional bonus.  Until then, hopefully, you can still at least try the site out with the small signup bonus.

Thanks for signing up for a bonus of 50 nitros.
so far so good, we have 3 option bets at the same time. I just tried and won at all.
minimum of withdrawing is 20000 photons, right? or 0.02 LTC, cmiww.
unfortunately, the website can't hide the chatbox because it's quite annoying of concentration. maybe the next development, they can improve it and adding some FAQ and term service where the new user can read how to play.

Withdrawal is 20000 nitros, which is 0.02LTC as you said, or 3.65USD
Post
Topic
Board Gambling
Re: NASCRASH - Litecoin Race Simulation Crash Game
by
Pho3niX90
on 18/08/2021, 17:57:45 UTC

Going live August 19
Introduction
I am pleased to announce the release of my new game, NASCRASH.  NASCRASH is a race simulation-style variant of the traditional crash gambling game.  Each round has 2 multipliers that are each represented by red and blue race cars.  We have 4 total bet options available per round of play (Crash bet Blue Car 1, Crash bet Red Car 2, 1st place Blue Car 1, and 1st place Red Car 2).

House Edge
Each of the 4 bet selections has a 1% house edge using provably fair technology.

Cashier
NASCRASH currently accepts Litecoin deposits and withdrawals.
1 LTC = 1,000,000 Nitros
BTC deposits coming soon

Bankroll Investing
We offer bankroll investing for all users.  Simply deposit LTC and transfer your Nitros into your bankroll balance.  Select what percent of your bankroll you would like to risk per round, per bet type with no dilution fee for early investors.
NASCRASH takes 50% of all profit that exceeds the previous all-time high profit, with the remaining 50% going to the investors.

NASCRASH will officially launch on Thursday, August 19, at 1 PM EST.

Provably fair seeding event
Seed
b8d4105eb74a537bbe869baf73e9392cef96e74990cd72e3dad0c0ce72997274 (Last hash from a chain of 10,000,000 SHA256 hashes, Game 1)
Salt Blue Car 1
Hash from Litecoin block 2,107,448
Salt Red Car 2
Hash from Litecoin block 2,107,449
The code used to convert the seed and salt to the result
multiplierFromHash(seed, salt) {
        const nBits = 52 // number of most significant bits to use

        // 1. HMAC_SHA256(key=salt, message=seed)

        const hmac = hmacSHA256(Hex.parse(seed), salt);
        seed = hmac.toString(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);
    }

Can confirm the blocks aren't mined yet.