Bitcoin Garden Forum

Crypto earning, products, services & tools => Cryptocurrency Gaming & Gambling => Topic started by: FloatingLamps on May 10, 2017, 06:43:14 PM

Title: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on May 10, 2017, 06:43:14 PM
(http://i.imgur.com/FMR08X9.jpg) (https://www.etcbets.com/)
(http://i.imgur.com/QGteraD.png) (https://www.etcbets.com/faq)
(http://i.imgur.com/HGCU1rg.png) (https://www.etcbets.com/faq)
(http://i.imgur.com/6mC2waw.png) (https://www.etcbets.com/faq)
(http://i.imgur.com/ASyxJMj.png) (https://twitter.com/ETCbets)
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on May 10, 2017, 07:00:10 PM
1) We have generated a chain of 10 million sha256 hashes, starting with a server secret that has been repeatedly fed the output of sha256 back into itself 10 million times. The sha256 of the final hash in the chain is: c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75, by publicising it here we are preventing any ability to pick an alternate sha256 chain.


2) Parabolic will play through that chain of hashes, in reverse order, and use the hashes to determine the crash point in a probably fair manner.

3) To avoid criticism that the Bitcoin address used in step 1 was carefully chosen to generate lots of "bad" crash points, each hash in the chain will be salted with a client seed, which we have no control of. The client seed will be the block hash of a Bitcoin block that hasn't yet been mined: block 465525.


The reference code (javascript) is as follows:

The method to create the hash chain is simply sha256:
Code: [Select]
function genGameHash(serverSeed) {
  return crypto.createHash('sha256').update(serverSeed).digest('hex');
}

The method to convert a game hash, mix it with the picked client seed to a game multiplier:

Code: [Select]
function crashPointFromHash(serverSeed, clientSeed) {
  function divisible(hash, mod) {
    // We will read in 4 hex at a time, but the first chunk might be a bit smaller
    // So ABCDEFGHIJ should be chunked like  AB CDEF GHIJ
    var val = 0;
    
    var o = hash.length % 4;
    for (var i = o > 0 ? o - 4 : 0; i < hash.length; i += 4) {
      val = ((val << 16) + parseInt(hash.substring(i, i+4), 16)) % mod;
    }

    return val === 0;
  }

  var hash = crypto.createHmac('sha256', serverSeed).update(clientSeed).digest('hex');

  /* In 1 of 101 games the game crashes instantly. */
  if (divisible(hash, 101))
     return 0;

  /* Use the most significant 52-bit from the hash
     to calculate the crash point */
  var h = parseInt(hash.slice(0,52/4),16);
  var e = Math.pow(2,52);

  return Math.floor((100 * e - h) / (e - h));
}

The chain could be generated with code such as:

Code: [Select]
var serverSecret =  'If you knew this, you could steal all my money';
var clientSeed = '0000examplehash';

var gamesToGenerate = 1e7;

var serverSeed = serverSecret;

for (var game = gamesToGenerate; game > 0; --game) {
  serverSeed = genGameHash(serverSeed);
  console.log('Game ' +  game + ' has a crash point of ' + (crashPointFromHash(serverSeed, clientSeed) / 100).toFixed(2) +'x', '\t\tHash: ' + serverSeed);
}

var terminatingHash = genGameHash(serverSeed);

console.log('The terminating hash is: ', terminatingHash);


Using our chosen starting serverSeed, the hash terminating the chain is c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75. That is to say, the first game's hash played under the new provably fair scheme, when hashed will be c56c9fe892bd23ff6d20da0b505c86db9acecb6a257a2b79b23dfface1d4ea75.
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on May 10, 2017, 07:50:41 PM
Hi everyone, before someone starting spamming the same question, some things we ´ve planned won´t be fully operational at launch like Parabolic automatic bet feature or 2fa*, but will come later this week.

This is a  perfect window of time for our development team to wrap up the features not included at launch, also gives us time to test the site under much greater user bulky.

Good luck, and keep playing at ETCBets.com (https://www.etcbets.com)


- The ETCBets Team.


* We will enable 2fa within 24-48 hours.
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on May 10, 2017, 11:37:52 PM
(http://i.imgur.com/1Cjqm0B.png) (https://goo.gl/forms/cWtBF2st73t92S0h1)(http://i.imgur.com/MFLtkax.png) (https://goo.gl/forms/jcTKw67iPYN2g4Pq1)
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on May 11, 2017, 12:58:04 PM
 
(http://i.imgur.com/uQGpzq6.png) (https://etcbets.com/app/game/dice)

-The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on May 13, 2017, 07:18:46 PM
(http://i.imgur.com/PMkk6oJ.png) (https://www.youtube.com/watch?v=Hksd5Z0VUHo)

-The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on May 14, 2017, 02:40:38 AM
(http://i.imgur.com/nWjptux.png) (https://www.etcbets.com)

ETCBets.com (http://ETCBets.com)  withdrawals have been re-enabled.

*If you are having trouble logging in to the site, clear cookies.

Thank you for your understanding. HAVE FUN!

-The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on May 15, 2017, 08:07:38 PM
  (http://i.imgur.com/ooEYHNC.png) (https://etcbets.com/app/game/dice)

    - The ETCBets.com Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on May 16, 2017, 06:08:04 PM

(http://i.imgur.com/cKPv27e.png) (https://etcbets.com/app/game/dice)

Come and play at ETCBets.com (http://etcbets.com). Centric, Fast and Reliable provably fair casino gaming for ethereumclassic. Ride it!


-The ETCBets Team


Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on May 17, 2017, 12:03:46 AM
(http://i.imgur.com/M9v0eEi.png) (https://etcbets.com/app/game/dice)


Enjoy etcbets.com (https://etcbets.com/app/game/dice), HappyHour and take advantage of the reduction in the House Edge.

Extra Hour Bonus IN PLAY! Enjoy.

-The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on May 17, 2017, 03:04:15 PM

(http://i.imgur.com/871Ha31.png) (https://etcbets.com/app/game/dice)

Easy to use and variable makes #dice bets a FLASH! Try the classic autobet at ETCBets.com (http://etcbets.com)

HAVE FUN!

Help us promoting : https://twitter.com/ETCbets/status/864825850197409792

-The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on May 17, 2017, 11:52:29 PM
Help us promoting: https://twitter.com/ETCbets/status/864946652280483841

(http://i.imgur.com/zbmNuGh.gif)

(http://i.imgur.com/7U8IJkP.gif)


Take the risk or lose the chance. ETCBets.com (https://etcbets.com), Providing provably fair igaming experience for #ethereumclassic


-The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on May 19, 2017, 03:16:59 PM
(http://i.imgur.com/DNSEAMC.png) (https://etcbets.com/app/game/dice)

    HAVE FUN!

Help us promoting : https://twitter.com/ETCbets/status/865552396889370624

-The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on May 21, 2017, 03:12:16 PM
(http://i.imgur.com/b3k0bjM.png) (https://etcbets.com/app/game/dice)


Help us promoting: https://twitter.com/ETCbets/status/866278070122164226

-The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on May 24, 2017, 11:01:34 AM
Hi everyone,

Our team is wrapping up some fixes and changes for the ETC casino ETCBets.com (http://www.etcbets.com)

Major items are:

1. Parabolic game up and running with several upgrades and fixes;

2. Auto bet enabled on Parabolic;

3. Several mobile UI changes;

4. June launch of promotion bonuses and contests.


More details will follow soon, remember the site donates 10% monthly income to the two ETC development teams (5% per team).

Let's make this business a big success for ETC use case and entertainment. Get registered today and test out dice while waiting for the second game and upgrades to go live later this week.


Follow the Twitter account for up to date news:

https://twitter.com/ETCbets/status/867311008586629121


-The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on May 26, 2017, 07:48:31 PM
(http://i.imgur.com/0jGHHwj.png) (https://etcbets.com/)


Help us promoting:: https://twitter.com/ETCbets/status/868157934626275329

-The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: cijulangboyz on May 28, 2017, 06:33:04 AM
nice info i try to join this game thanks good luck broo
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on May 29, 2017, 10:11:03 PM
nice info i try to join this game thanks good luck broo

Hi, cijulangboyz

Thank you for your kindly words. The new month will be full of promo and contests.

Stay tuned!  ;)

- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on May 29, 2017, 10:12:00 PM
(http://i.imgur.com/mOT1xDb.png) (https://etcbets.com)

Creating ETCBets.com (http://www.etcbets.com) was giving a use-case for $ETC, revenue source for all parties, and opening icebreaker for more.


Twitter: https://twitter.com/Janus_Token/status/869065371449511936


-The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on May 30, 2017, 02:35:47 AM

(http://i.imgur.com/z6okLh7.png) (https://etcbets.com/app/game/parabolic)

Help us promoting: https://twitter.com/ETCbets/status/869350190720876544


-The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on May 30, 2017, 12:41:25 PM

(http://i.imgur.com/4lRgcxV.png) (https://etcbets.com/app/game/parabolic)

-The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on May 31, 2017, 12:17:44 PM
(http://i.imgur.com/vxjzwGx.png) (https://etcbets.com/app/game/parabolic)


JUNE will be awesome!


STAY TUNE!


Help us promoting: https://twitter.com/ETCbets/status/869857292212162561

-The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on May 31, 2017, 07:01:07 PM
(http://i.imgur.com/nZB25El.gif) (https://etcbets.com/app/game/parabolic)


BONUS POT1% of each player's wagered amount in every single round goes into the bonus pool,

and payout adjusted for wager size every X games ( randomly).

75% of stake pot goes to players who cash out and 25% goes to players who busted.

On a bonus round, the bonus field in the live bets table shows "?" rather than "-"


- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on June 01, 2017, 12:07:51 AM
(http://i.imgur.com/M9v0eEi.png) (https://etcbets.com/app/game/dice)


Why limit #happyhour to an hour? We've added an extra hour just for fun!

Join us NOW at etcbets.com (https://etcbets.com/app/game/dice)

HAVE FUN!

Help us promoting : https://twitter.com/ETCbets/status/870037243041329153

-The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on June 01, 2017, 12:37:47 AM
LIVE!

(http://i.imgur.com/XIMVXUS.jpg) (https://etcbets.com/app/game/parabolic)
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on June 01, 2017, 01:33:52 AM
(http://i.imgur.com/VQtpjD7.png) (https://etcbets.com/app/game/parabolic)

Join thread to participate in the contest: https://bitcoingarden.org/forum/index.php?topic=15168.0

ENJOY THE FIREWORKS PEOPLE!

-The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on June 02, 2017, 05:20:54 PM
(http://i.imgur.com/5PF9IA4.png) (https://etcbets.com/app/game/parabolic)

Official thread: https://bitcoingarden.org/forum/index.php?topic=14727.0

Thread contest: https://bitcoingarden.org/forum/index.php?topic=15168.0

HAVE FUN!

-The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on June 04, 2017, 12:14:41 PM
(http://i.imgur.com/qE0CBSL.png) (https://etcbets.com/app/game/parabolic)


It seems the variance is in favor of our players ;D

Don´t forget to check the Daily multiplier Contest :: https://bitcoingarden.org/forum/index.php?topic=15168.0


Join us NOW!!

-The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on June 04, 2017, 07:18:46 PM
(http://i.imgur.com/MXQu3Mt.png) (https://etcbets.com/app/game/parabolic)

"Inhale courage, exhaled fear". Join us today at ETCBets.com (http://etcbets.com/app/game/parabolic), and live in all CAPS.

You´re worth it! #lifestyle #ethereumclassic

-The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on June 06, 2017, 03:03:05 PM
(http://i.imgur.com/D7HBFoE.png) (https://etcbets.com/app/game/parabolic)

"A Man knows his limits, but a wise Man knows he has none".

ETCBets.com (http://ETCBets.com/app/game/parabolic) , the 1st #ethereumclassic casino.

JOIN US!


-The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on June 06, 2017, 09:06:10 PM
(http://i.imgur.com/WV4PIIV.png) (https://etcbets.com/app/game/dice)

Nothing is worth it if you aren´t happy! Extra hour is still open. Visit us at ETCBets.com (http://etcbets.com) .

Daily multiplier Contest:: https://bitcoingarden.org/forum/index.php?topic=15168.0

HAVE FUN!

-The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on June 08, 2017, 03:29:54 PM
(http://i.imgur.com/m1cnvV3.png) (https://etcbets.com/app/game/parabolic)

Join our #contests for a chance to win #gifts cards and daily $ETC prizes. ETCBets.com (http://ETCBets.com/app/game/parabolic) , the 1st #ethereumclassic gambling casino.

10% of site profits will be donated to the Ethereum Classic development team.


Official thread: https://bitcoingarden.org/forum/index.php?topic=14727.0

Daily contest: https://bitcoingarden.org/forum/index.php?topic=15168.0


HAVE FUN!

- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on June 10, 2017, 04:52:57 PM

(http://i.imgur.com/B4XrvBE.png) (https://etcbets.com/app/game/parabolic)


Daily contest: https://bitcoingarden.org/forum/index.php?topic=15168.0

HAVE FUN!

- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on June 12, 2017, 12:19:07 PM

(http://i.imgur.com/WIrTyVH.png) (https://etcbets.com/app/game/parabolic)


Daily contest: https://bitcoingarden.org/forum/index.php?topic=15168.0

HAVE FUN!

- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on June 13, 2017, 10:17:30 PM
CONGRATZ TO ✪ Ropes ✪, for the amazing win streak.

He just won over 500 $ETC
  ;D


(http://i.imgur.com/Yr2VUol.png) (https://etcbets.com/app/game/parabolic)

Don´t forget to check the 2 contests for this month.!

Daily contest: https://bitcoingarden.org/forum/index.php?topic=15168.0

Monthly contest: https://bitcoingarden.org/forum/index.php?topic=14727.msg157914#msg157914

Join us NOW at etcbets.com (https://etcbets.com/app/game/dice)

HAVE FUN!
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on June 14, 2017, 02:49:17 PM

(http://i.imgur.com/34MZNGT.png) (https://etcbets.com/app/game/parabolic)

ETCBets.com (https://etcbets.com/app/game/parabolic) is mobile friendly optimized to work across all devices from smartphones to tablets and desk PC.


#PlayAnywhere (https://etcbets.com/app/game/parabolic) $ETC

HAVE FUN!

- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on June 16, 2017, 03:16:39 PM
(http://i.imgur.com/MBfkvCz.png) (https://etcbets.com/app/game/parabolic)


Join our Monthly Wager #contest (https://bitcoingarden.org/forum/index.php?topic=14727.msg157914#msg157914) for a chance to win #gift cards or $BTC totaling $900 prizes.

https://bitcoingarden.org/forum/index.php?topic=14727.msg157914#msg157914

PLAY NOW!

ETCBets.com (http://ETCBets.com), the 1st #EthereumClassic casino.


-The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on June 18, 2017, 01:36:49 PM

(http://i.imgur.com/UYSVMu3.png) (https://www.etcbets.com/app/game/parabolic)

- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on June 18, 2017, 05:36:57 PM
(http://i.imgur.com/R3Mc6by.png) (https://bot.seuntjie.com/botpage.aspx)


DOWNLOAD THE NEWEST 3.3.5. VERSION (https://bot.seuntjie.com/botpage.aspx?id=49)

::ETCBets.com (https://www.etcbets.com/app/game/parabolic) included in this version::


Keep supporting good developments!!


- The ETCBets Team


Cheers!! ●‿●

Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on June 20, 2017, 02:18:56 PM
(http://i.imgur.com/9bIvK7y.png) (https://etcbets.com/app/game/parabolic)


10% of site profits will be donated to the Ethereum Classic development team.


Check the Monthly contest: https://bitcoingarden.org/forum/index.php?topic=14727.msg157914#msg157914


Join us NOW at etcbets.com (https://etcbets.com/app/game/dice)

#PlayAnywhere (https://etcbets.com/app/game/parabolic)

HAVE FUN!

- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on June 22, 2017, 01:33:00 PM

(http://i.imgur.com/Yis6bXP.png) (https://etcbets.com/app/game/parabolic)

In a world full of trends stay #Classic. ETCBets.com (https://etcbets.com/app/game/parabolic)  providing provably fair experience for #ethereumclassic.


Play NOW!


- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on June 23, 2017, 04:01:06 PM

----HOW TO PLAY AT ETCBETS.COM (https://etcbets.com/app/game/parabolic) USING SEUNTJIE BOT----


To use Seuntjie's bot (https://bot.seuntjie.com/Downloads.aspx) just enable the API under   "Edit your account" (https://etcbets.com/app/game/parabolic) tab on ETCBets.com (https://etcbets.com/app/game/parabolic) (make sure you hit the save button),


(http://i.imgur.com/DSUXcte.png) (https://etcbets.com/app/game/parabolic)


Copy the API string of characters into the appropriate field on the bot program and configure your betting strategy there.

Open seuntjieBot| Choose site | EtcBets| Username and API | Login and have fun

(http://i.imgur.com/FmLAbVv.png) (https://etcbets.com/app/game/parabolic)

Check tutorial: https://bot.seuntjie.com/GettingStarted.aspx


Yours in business,

-The ETCBets team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on June 24, 2017, 04:02:30 PM

(http://i.imgur.com/5Qc3hWh.png) (https://etcbets.com/app/game/parabolic)


Check the Monthly contest: https://bitcointalk.org/index.php?topic=1907827.msg19299898#msg19299898

-- Last days for a chance to win #gifts cards or $BTC totaling $900 prizes.--


Join us NOW at etcbets.com (https://etcbets.com/app/game/dice)

#PlayAnywhere (https://etcbets.com/app/game/parabolic)


HAVE FUN!

- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on June 27, 2017, 01:55:27 PM
(http://i.imgur.com/cdSuZWF.png) (https://etcbets.com/app/game/parabolic)

#PlayAnywhere (https://etcbets.com/app/game/parabolic)

HAVE FUN!

- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on June 30, 2017, 02:02:40 PM

::1 DAY LEFT::

(http://i.imgur.com/3xCfBlI.png) (https://etcbets.com/app/game/parabolic)

1 day left to win gift cards from gyft.com (http://gyft.com). Be the top volume player on ETCBets.com (http://ETCBets.com)

 #PlayAnywhere (http://ETCBets.com)


-The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on July 01, 2017, 12:53:49 AM

(http://i.imgur.com/8TxXOIR.png) (https://www.etcbets.com/app/game/dice)

Meanwhile, you can play Dice (https://www.etcbets.com/app/game/dice) game.


#PlayAnywhere (https://etcbets.com/app/game/parabolic)

HAVE FUN!

- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on July 01, 2017, 12:40:07 PM

MONTHLY VOLUME LEADERBOARD

:: FINAL RESULTS::

(http://i.imgur.com/Vb2OEn8.png) (https://etcbets.com/app/game/dice)



Winners of the monthly contest, please follow instructions:

1. Choose gift cards from gyft.com (https://www.gyft.com/);
2. Send us your pick choice via email ( [email protected]);
3. Code to redeem will be mailed back.



Congratulations to all our winners!

-The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on July 01, 2017, 07:55:33 PM
:: LIVE ::


(http://i.imgur.com/xBaFiDx.jpg) (https://etcbets.com/app/game/dice)
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on July 01, 2017, 10:19:13 PM

CONGRATZ to :: Ropes ::

He just won over 8,000USD worth of $ETC today

(http://i.imgur.com/9bXuPZE.png) (https://etcbets.com/app/game/dice)


Join us NOW at etcbets.com (https://etcbets.com/app/game/dice)

#PlayAnywhere (https://etcbets.com/app/game/parabolic)


HAVE FUN!

- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on July 02, 2017, 03:57:45 PM

(http://i.imgur.com/itMaUUV.png) (https://etcbets.com/app/game/dice)

DOWNLOAD THE NEWEST 3.3.5. VERSION (https://bot.seuntjie.com/botpage.aspx?id=49) of SeuntjieBot if you want a full customizable dice bot.


::ETCBets.com (https://www.etcbets.com/app/game/parabolic) included in this version::

#PlayAnywhere (https://etcbets.com/app/game/dice)


HAVE FUN!

- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on July 03, 2017, 02:02:32 AM

(http://i.imgur.com/MnZvNTf.png) (https://www.facebook.com/ETCBetscom-812414705594691)

- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on July 04, 2017, 02:50:43 PM
(http://i.imgur.com/Wy7BOVU.png) (https://etcbets.com/app/game/dice)


Check the Monthly contest: https://bitcoingarden.org/forum/index.php?topic=14727.msg168807#msg168807

#PlayAnywhere (https://etcbets.com/app/game/dice)


HAVE FUN!

- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on July 16, 2017, 01:40:06 PM

(http://i.imgur.com/zxd4s6P.png) (https://etcbets.com)

- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on July 18, 2017, 04:55:05 PM

(http://i.imgur.com/TRUksbt.png) (https://etcbets.com/app/game/dice)

We´ve re-open #dice game. Improvements in performance and security.

#Parabolic game will come next.


#PlayAnywhere (https://etcbets.com/app/game/dice)


HAVE FUN!

- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on July 19, 2017, 12:55:01 PM

(http://i.imgur.com/wPTDgcX.png) (https://etcbets.com/app/game/dice)


Don´t get older, just level up".

ETCBets.com (https://etcbets.com/app/game/dice) ,

 providing provably fair #gaming experience for #ethereumclassic


#PlayAnywhere (https://etcbets.com/app/game/dice)


HAVE FUN!

- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on July 21, 2017, 03:02:24 PM

(http://i.imgur.com/oYKY0q9.png) (https://etcbets.com/app/game/dice)


Enjoy the blistering fast betting speed of our powerful #Classic bot.

@SeuntjieDiceBot (https://bot.seuntjie.com/Downloads.aspx) ON

#ethereumclassic


#PlayAnywhere (https://etcbets.com/app/game/dice)


- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on July 24, 2017, 12:07:51 PM

(http://i.imgur.com/eSlzRa4.png) (https://etcbets.com/app/game/dice)


#PlayAnywhere (https://etcbets.com/app/game/dice)


- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on July 26, 2017, 12:25:18 PM
(http://i.imgur.com/buqjY9X.png) (https://etcbets.com/app/game/dice)


...You always have a choice".

ETCBets.com (https://etcbets.com/app/game/dice) :: provably fair social #gaming experience for #ethereumclassic


#PlayAnywhere (https://etcbets.com/app/game/dice)


HAVE FUN!

- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on July 27, 2017, 08:11:17 PM

(http://i.imgur.com/giWx6mU.png) (https://etcbets.com/app/game/dice)

Feel the immersive experience of this powerful Autobot betting. Full customizable! Real time!

#PlayNow (https://etcbets.com/app/game/dice) #PlayAnywhere (https://etcbets.com/app/game/dice) at ETCBets.com (https://etcbets.com/app/game/dice)

#dice $ETC




HAVE FUN!
-------------------------------------------
- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on July 28, 2017, 09:33:55 PM
(http://i.imgur.com/KkpNJlZ.png) (https://info.shapeshift.io/blog/2017/07/27/important-bitcoin-hard-fork-information)

https://info.shapeshift.io/blog/2017/07/27/important-bitcoin-hard-fork-information

Please act accordingly.

Yours in business,

-The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on July 31, 2017, 01:07:15 PM

(http://i.imgur.com/K748Or8.gif) (https://etcbets.com/app/game/dice)

- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on August 01, 2017, 08:28:00 PM

(http://i.imgur.com/5EqwxXf.png)

-The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on August 04, 2017, 12:10:29 AM
(http://i.imgur.com/TRUksbt.png) (https://etcbets.com/app/game/dice)

We´ve re-opened #dice game.

#PlayAnywhere (https://etcbets.com/app/game/dice)


HAVE FUN!

- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on August 08, 2017, 01:21:43 PM
(http://i.imgur.com/bqK44CN.png) (https://etcbets.com/app/game/dice)


Shake it off " (https://etcbets.com/app/game/dice)


#PlayAnywhere (https://etcbets.com/app/game/dice)


- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on August 10, 2017, 03:16:17 PM

(http://i.imgur.com/y6X4z4u.png) (https://etcbets.com/app/game/dice)



With you, is different". (https://etcbets.com/app/game/dice)


#PlayAnywhere (https://etcbets.com/app/game/dice)


- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on August 11, 2017, 12:17:03 AM
(http://i.imgur.com/39JQkyM.png) (https://etcbets.com/app/game/dice)



Why limit #happyhour to an hour? (https://etcbets.com/app/game/dice)


#PlayAnywhere (https://etcbets.com/app/game/dice)


- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on August 13, 2017, 01:04:49 PM
(http://i.imgur.com/R3Mc6by.png) (https://bot.seuntjie.com/botpage.aspx)


DOWNLOAD THE NEWEST 3.3.8. VERSION (https://bot.seuntjie.com/botpage.aspx?id=49)

::ETCBets.com (https://www.etcbets.com/app/game/parabolic) included in this version::


Keep supporting good developments!!


- The ETCBets Team

Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: fretrix12 on August 16, 2017, 02:51:13 AM
I did not know this page says thank you pr share it very good
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on August 16, 2017, 04:13:26 PM

(http://i.imgur.com/zYZJSuD.png) (https://etcbets.com/app/game/dice)

...Faster, faster, until the thrill of #Classic bot speed overcomes the fear of bust. (https://etcbets.com/app/game/dice)


#PlayAnywhere (https://etcbets.com/app/game/dice)


- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on August 19, 2017, 05:00:25 PM
(http://i.imgur.com/j0OQS8L.png) (https://etcbets.com/app/game/dice)

Don´t be afraid to fail. Be afraid not to try it. "

ETCBets.com (https://etcbets.com/app/game/dice) , the 1st provably fair gaming experience for #ethereumclassic.

#PlayAnywhere (https://etcbets.com/app/game/dice)

- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on August 23, 2017, 02:40:22 PM

(http://i.imgur.com/fJS4Whv.png) (https://etcbets.com/app/game/dice)

Life´s a #game, all you have to do, is know how to play it. Roll the #dice

JOIN US!

#PlayAnywhere (https://etcbets.com/app/game/dice)

- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: hayleewilson on August 25, 2017, 06:54:38 AM
ETCBets is a nice online casino site. We may have all heard how some sites take bitcoins and use provably fair, well; this one is for the ethereum classic. That is something that you do not hear about every day and do not forget that they want to improve and promote the Ethereum Classic by donating 10% of the profits to the currency’s development team.
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on August 28, 2017, 06:45:15 PM
(http://i.imgur.com/foSRvLn.png) (https://etcbets.com/)

- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: FloatingLamps on August 29, 2017, 02:46:21 PM

::ATTENTION::

(http://i.imgur.com/CNGeiRJ.png) (https://etcbets.com/app/game/dice)

Yours in business,

- The ETCBets Team
Title: Re: ETCBets.com - Provably Fair iGaming for Ethereum Classic | Dice | Parabolic
Post by: Avrora_Usa on October 04, 2017, 11:57:20 PM
Yep, сasinos are great way to earn money. But i know the easier way how to earn some extra dollars. All that you need is to check - top bookies online (http://ratingbet.net/) and check some predictions which will help in your success!