create account

EpicDice Fairness by epicdice

View this thread on: hive.blogpeakd.comecency.com
· @epicdice ·
$244.43
EpicDice Fairness
<center>![Artboard 5@20x.png](https://cdn.steemitimages.com/DQmbzs8Wbbm1WE5qwHTwd4iRqBwicQCdf5ETZtrAkozDRC4/Artboard%205@20x.png)</center>

EpicDice is a decentralized gaming platform built on top of Steem blockchain with absolute transparency and fairness. Join the most epic fun today!

<center>https://epicdice.io/</center>
---

---

## 

EpicDice has been online for about 4 months since its grand launching. The gaming platform has accumulated over 455,000 transactions and over 16.2M total volume with STEEM and SBD combined! Although the game has adopted the most simple randomness generation mechanism, yet not everyone possesses the knowledge of blockchain. With the considerably *large* data the game has generated thus far, we think this is a good opportunity for a walkthrough how EpicDice's fairness is being practised, in layman terms.

## Transaction ID is the only source to generate rolled number

When a user fires a bet(transaction) to the house account, the block contains that transaction has to be verified and signed by the Steem witness to be considered valid. In the process of block signing, various information of a particular transaction like `ref_block_num`, `ref_block_prefix`, `expiration` and so on, contributed in the generation of a fully random 40 hex digits `trx_id`. Read more about this process in [Steem Developer Portal](https://developers.steem.io/tutorials-recipes/understanding-transaction-status).

This very blockchain-generated `trx_id` is what EpicDice would solely use to generate a rolled number via formula below:

```
var transId ='<replace with trx_id>'

var result = 1000000
var offset = 0
var length = 5
var endValue = offset + length
var chop
var finalResult
while (result > 999999) {
chop = transId.substring(offset, endValue)
offset += 5
endValue = offset + length
result = parseInt(chop, 16)
finalResult = result % (10000) / 100
finalResult = Math.round(finalResult)
console.log("finalResult : " + finalResult)
if (finalResult === 0) {
result = 1000000
}
}
```

You can find this formula in "Fairness" section of the game site and verify all your bet result instantly.

For interested souls in finding out how technically a `trx_id` is computed, the answer lies in [Steem Official GitHub Repository](https://github.com/steemit/steem).

## But how is this system "provably-fair"?

Now you know how a transaction ID is generated. Unlike other platforms, EpicDice does not add a custom client/server seed or nuances in the random number generation. It shows that the house would have **zero possibility to manipulate the outcome**.

You placed a bet and get a rolled number from the game site. Retrieve the transaction ID from data explorer like [steemd.com](https://steemd.com), input the ID into the formula above in a javascript compiler like [playcode.io](https://playcode.io/online-javascript-editor) and run it. The generated rolled number from the script would be exactly same as the one you get from our gaming site. 

You confirmed that the house did not modify anything in the process. Hence, fairness is proven.

Or better yet, just utilize the fairness tool on the game site to make your life easier.

## Data analysis of rolled numbers occurrence in EpicDice since the very beginning

We've extracted the data from chain a few days ago for the data analysis we are about to present. This dataset recorded every single bet ever sent to @epicdice starting from `2019-02-28 16:24:10.967494` until `2019-06-13 13:37:26.029482`(UTC). Download the excel sheet [here](https://mega.nz/#!z8EDSYCY!yS_svuOIULFxBNZRNpo_nwMsczQPqaWNFmvMnZIfVek).

Key columns in the dataset as follows:
- `refTransactionId`: the `trx_id` which you can verify in data explorer
- `user`: name of the player
- `rollResult`: generated rolled number out of `refTransactionId`
- `winLost`: `0` is lost while `1` is win

![EXCEL_2019-06-15_18-05-20.png](https://cdn.steemitimages.com/DQmeoTRekzpu2mknKfA7YgaTqggHghgV1SnMekbbjxHiW5m/EXCEL_2019-06-15_18-05-20.png)

Over the period, EpicDice has received 455,519 transactions of wager and the total amount is 16,215,981.400(STEEM + SBD). The full range of rolling numbers (1 to 100) is divided into 10 groups with 10 numbers in each of it. The goal of this analysis is to verify whether the occurrence of rolled numbers is evenly distributed across the range groups. In the perfect world, a totally random and fair algorithm should grant 10% occurrence to the 10 groups.

![EXCEL_2019-06-15_18-05-47.png](https://cdn.steemitimages.com/DQmZqshYEZ32o7RNnSZttaf3ujtHgNVMVb27hoeCfANEnZk/EXCEL_2019-06-15_18-05-47.png)

The graph shows that each category had a fair distribution as the lowest percentage was 9.56% while the highest was 10.10%. Merely a 0.54% deviation proves that there is absolutely no bias in random number generation. **Each roll stands a fair chance of getting a number ranging from 1 to 100.**

Ironically, when EpicDice was only supporting "rolling under" most of the time before the latest upgrade a few days ago, higher numbers like 95,96,97,98,99,100 used to be the killers to any bet when they were rolled. But they had the lowest occurrence at 9.56%.

## Absolute fairness is real

Let's summarize what we have covered so far in a few points:

- **Random number is generated solely using blockchain-generated transaction ID that is impossible for the house to mess with.**
- **Wager history analysis proved that there is zero bias against a certain range of numbers. Every roll is a fair play.**
- **Fairness of EpicDice is bullet-proof.**

## Earn EPC via delegation

EPC is the only token to earn from the daily dividend and prize pool in STEEM. **Every 1 SP delegation earns 2 EPC daily**. It takes one day for the delegation to be effective in order to receive the dividend, from the moment of delegation. This is the only way to be part of the dividend pool shareholders besides betting.

<center> Quick delegation via Steemconnect links below:</center>

<center>[100 SP](https://app.steemconnect.com/sign/delegateVestingShares?delegatee=epicdice&vesting_shares=100%20SP) | [500 SP](https://app.steemconnect.com/sign/delegateVestingShares?delegatee=epicdice&vesting_shares=500%20SP) | [1000 SP](https://app.steemconnect.com/sign/delegateVestingShares?delegatee=epicdice&vesting_shares=1000%20SP) | [5000 SP](https://app.steemconnect.com/sign/delegateVestingShares?delegatee=epicdice&vesting_shares=5000%20SP) | [10000 SP](https://app.steemconnect.com/sign/delegateVestingShares?delegatee=epicdice&vesting_shares=10000%20SP)</center>

---

<center>Join our Discord server for better communication.</center>

<center><a href="https://discordapp.com/invite/TjSencE"><img src="https://cdn.steemitimages.com/DQmW3Pw4t1ykfEBfVjXJc9L7kxMnVof97oS9ArZWE9LQUaA/output-onlinepngtools.png"></a></center>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 169 others
👎  ,
properties (23)
authorepicdice
permlinkepicdice-fairness
categoryepicdice
json_metadata{"tags":["epicdice","steem","dice","gambling","game"],"users":["epicdice"],"image":["https://cdn.steemitimages.com/DQmbzs8Wbbm1WE5qwHTwd4iRqBwicQCdf5ETZtrAkozDRC4/Artboard%205@20x.png","https://cdn.steemitimages.com/DQmeoTRekzpu2mknKfA7YgaTqggHghgV1SnMekbbjxHiW5m/EXCEL_2019-06-15_18-05-20.png","https://cdn.steemitimages.com/DQmZqshYEZ32o7RNnSZttaf3ujtHgNVMVb27hoeCfANEnZk/EXCEL_2019-06-15_18-05-47.png","https://cdn.steemitimages.com/DQmW3Pw4t1ykfEBfVjXJc9L7kxMnVof97oS9ArZWE9LQUaA/output-onlinepngtools.png"],"links":["https://epicdice.io/","https://developers.steem.io/tutorials-recipes/understanding-transaction-status","https://github.com/steemit/steem","https://steemd.com","https://playcode.io/online-javascript-editor","https://mega.nz/#!z8EDSYCY!yS_svuOIULFxBNZRNpo_nwMsczQPqaWNFmvMnZIfVek","https://app.steemconnect.com/sign/delegateVestingShares?delegatee=epicdice&vesting_shares=100%20SP","https://app.steemconnect.com/sign/delegateVestingShares?delegatee=epicdice&vesting_shares=500%20SP","https://app.steemconnect.com/sign/delegateVestingShares?delegatee=epicdice&vesting_shares=1000%20SP","https://app.steemconnect.com/sign/delegateVestingShares?delegatee=epicdice&vesting_shares=5000%20SP","https://app.steemconnect.com/sign/delegateVestingShares?delegatee=epicdice&vesting_shares=10000%20SP","https://discordapp.com/invite/TjSencE"],"app":"steemit/0.1","format":"markdown"}
created2019-06-15 11:37:36
last_update2019-06-15 11:37:36
depth0
children39
last_payout2019-06-22 11:37:36
cashout_time1969-12-31 23:59:59
total_payout_value186.097 HBD
curator_payout_value58.329 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,799
author_reputation120,950,487,102,911
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id86,672,513
net_rshares424,898,115,893,497
author_curate_reward""
vote details (235)
@abitcoinskeptic ·
$0.13
Thank you for putting this information out there. It still doesn't help change my luck though. ;)
👍  
properties (23)
authorabitcoinskeptic
permlinkpt57p8
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-06-15 13:48:42
last_update2019-06-15 13:48:42
depth1
children1
last_payout2019-06-22 13:48:42
cashout_time1969-12-31 23:59:59
total_payout_value0.098 HBD
curator_payout_value0.032 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length97
author_reputation335,387,091,612,941
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,678,141
net_rshares225,264,896,348
author_curate_reward""
vote details (1)
@epicdice ·
$0.02
Well, there is nothing we can do about it as you can see how the system works now. It is safe to say that Steem blockchain(it decides the number you get) wasn't been generous to you. But luck is very objective and probably changing from time to time. You might be surprised on your next trip to the casino. See you in the game soon!
👍  
properties (23)
authorepicdice
permlinkpt66fh
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-06-16 02:18:54
last_update2019-06-16 02:18:54
depth2
children0
last_payout2019-06-23 02:18:54
cashout_time1969-12-31 23:59:59
total_payout_value0.015 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length332
author_reputation120,950,487,102,911
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id86,702,925
net_rshares35,121,448,374
author_curate_reward""
vote details (1)
@ahmadzareen ·
Let's summarize what we have covered so far in a few points:
properties (22)
authorahmadzareen
permlinkpt8c8v
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-06-17 06:19:45
last_update2019-06-17 06:19:45
depth1
children0
last_payout2019-06-24 06:19:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length60
author_reputation-45,905,883,468
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,763,161
net_rshares0
@arafathsunny ·
I dedent rally  gate it , but it is rally  intersting update of yourd
properties (22)
authorarafathsunny
permlinkpt6b2p
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-06-16 03:59:21
last_update2019-06-16 03:59:21
depth1
children0
last_payout2019-06-23 03:59:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation151,575,137,432
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,705,242
net_rshares0
@arcange ·
Congratulations @epicdice!
Your post was mentioned in the [Steem Hit Parade](/hit-parade/@arcange/daily-hit-parade-20190615) in the following category:

* Pending payout - Ranked 3 with $ 256,71
properties (22)
authorarcange
permlinkre-epicdice-fairness-20190615t182300000z
categoryepicdice
json_metadata""
created2019-06-16 16:23:33
last_update2019-06-16 16:23:33
depth1
children0
last_payout2019-06-23 16:23:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length195
author_reputation1,146,623,489,324,993
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,730,916
net_rshares0
@b-s ·
Hello @epicdice

I made a little mistake and sent my last bet without memo. This is the tx: https://steemd.com/tx/c6bf02accc6c003c633320cc5de52e8704391537

Could you refund please?
properties (22)
authorb-s
permlinkpt92ia
categoryepicdice
json_metadata{"tags":["epicdice"],"users":["epicdice"],"links":["https://steemd.com/tx/c6bf02accc6c003c633320cc5de52e8704391537"],"app":"steemit/0.1"}
created2019-06-17 15:47:03
last_update2019-06-17 15:47:03
depth1
children0
last_payout2019-06-24 15:47:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length180
author_reputation6,228,605,834,829
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,792,461
net_rshares0
@b-s ·
Hey again,

sorry but i have some problems with vessel sending steem. Made another mistake and would please you to refund following tx:

https://steemd.com/tx/a10f5ff8fa0469815d4df59d36490c0d87d51ebf

Thanks for your cooperation. I will be more careful next time.
properties (22)
authorb-s
permlinkptckp8
categoryepicdice
json_metadata{"tags":["epicdice"],"links":["https://steemd.com/tx/a10f5ff8fa0469815d4df59d36490c0d87d51ebf"],"app":"steemit/0.1"}
created2019-06-19 13:12:48
last_update2019-06-19 13:12:48
depth1
children1
last_payout2019-06-26 13:12:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length263
author_reputation6,228,605,834,829
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,912,753
net_rshares0
@epicdice ·
Refunded. Please be extra careful with memo-betting. Stick with our game site whenever is possible. If we notice this after EOD, full refund is not possible since half of it would be transferred to EPC holders as dividend.
properties (22)
authorepicdice
permlinkptcnhu
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-06-19 14:13:06
last_update2019-06-19 14:13:06
depth2
children0
last_payout2019-06-26 14:13:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length222
author_reputation120,950,487,102,911
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id86,915,440
net_rshares0
@bafi ·
$0.09
thanks for the rolled numbers report. Having official stats speaks louder than words @epicdice
👍  
properties (23)
authorbafi
permlinkpt79bi
categoryepicdice
json_metadata{"tags":["epicdice"],"users":["epicdice"],"app":"steemit/0.1"}
created2019-06-16 16:18:54
last_update2019-06-16 16:18:54
depth1
children1
last_payout2019-06-23 16:18:54
cashout_time1969-12-31 23:59:59
total_payout_value0.070 HBD
curator_payout_value0.023 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length94
author_reputation59,789,884,583,831
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,730,799
net_rshares159,644,421,760
author_curate_reward""
vote details (1)
@epicdice ·
That's exactly our purpose to release this data. And we shall continue to strive for higher transparency for the bigger piece of mind of our players. Thanks for the comment.
properties (22)
authorepicdice
permlinkpt8ttg
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-06-17 12:39:18
last_update2019-06-17 12:39:18
depth2
children0
last_payout2019-06-24 12:39:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length173
author_reputation120,950,487,102,911
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id86,781,265
net_rshares0
@boomerang ·
This post has received a 42.2 % upvote from @boomerang.
properties (22)
authorboomerang
permlinkre-epicdice-fairness-20190616t043136
categoryepicdice
json_metadata""
created2019-06-16 04:31:36
last_update2019-06-16 04:31:36
depth1
children0
last_payout2019-06-23 04:31:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation1,273,205,827,891
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,706,085
net_rshares0
@certain ·
$0.13
I think this is desktop based game and related keychain. If there is any possibility to to play in Android then please let me know.

Posted using [Partiko Android](https://partiko.app/referral/certain)
👍  
properties (23)
authorcertain
permlinkcertain-re-epicdice-epicdice-fairness-20190615t132737689z
categoryepicdice
json_metadata{"app":"partiko","client":"android"}
created2019-06-15 13:27:36
last_update2019-06-15 13:27:36
depth1
children3
last_payout2019-06-22 13:27:36
cashout_time1969-12-31 23:59:59
total_payout_value0.098 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length201
author_reputation802,509,567,344,135
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,677,223
net_rshares227,305,958,228
author_curate_reward""
vote details (1)
@epicdice ·
We are working on supporting mobile exactly. So players can really looking forward mobile gaming really soon. Stay tuned!
👍  
properties (23)
authorepicdice
permlinkpt65z3
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-06-16 02:09:06
last_update2019-06-16 02:09:06
depth2
children2
last_payout2019-06-23 02:09:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length121
author_reputation120,950,487,102,911
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id86,702,706
net_rshares18,789,493,859
author_curate_reward""
vote details (1)
@certain ·
that would be really fantastic. Like me many other users also searching mobile based game. Thank you for stopping by:

Posted using [Partiko Android](https://partiko.app/referral/certain)
properties (22)
authorcertain
permlinkcertain-re-epicdice-pt65z3-20190616t021156542z
categoryepicdice
json_metadata{"app":"partiko","client":"android"}
created2019-06-16 02:11:57
last_update2019-06-16 02:11:57
depth3
children1
last_payout2019-06-23 02:11:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length187
author_reputation802,509,567,344,135
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,702,769
net_rshares0
@cwow2 ·
Wait can someone get it as a desktop version!?

Posted using [Partiko Android](https://partiko.app/referral/cwow2)
properties (22)
authorcwow2
permlinkcwow2-re-epicdice-epicdice-fairness-20190616t090504895z
categoryepicdice
json_metadata{"app":"partiko","client":"android"}
created2019-06-16 09:05:06
last_update2019-06-16 09:05:06
depth1
children0
last_payout2019-06-23 09:05:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length114
author_reputation209,254,787,434,558
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,715,198
net_rshares0
@d-zero ·
$0.13
Nice!
I'm keeping this page bookmarked so when somebody lash out against Epic Dice I can show them the math and logic behind everything.
👍  
properties (23)
authord-zero
permlinkptc8hn
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-06-19 08:49:06
last_update2019-06-19 08:49:06
depth1
children1
last_payout2019-06-26 08:49:06
cashout_time1969-12-31 23:59:59
total_payout_value0.094 HBD
curator_payout_value0.031 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length136
author_reputation154,624,617,636,166
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,901,615
net_rshares213,554,381,296
author_curate_reward""
vote details (1)
@epicdice ·
We call that EPIC mindset!
properties (22)
authorepicdice
permlinkptcnj0
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-06-19 14:13:48
last_update2019-06-19 14:13:48
depth2
children0
last_payout2019-06-26 14:13:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation120,950,487,102,911
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id86,915,469
net_rshares0
@daniel.gz20 ·
qui: https://veneapp.com/2019![folder (3).png]![folder (4).png]
👎  
properties (23)
authordaniel.gz20
permlinkpt5wo1
categoryepicdice
json_metadata{"tags":["epicdice"],"links":["https://veneapp.com/2019!"],"app":"steemit/0.1"}
created2019-06-15 22:48:00
last_update2019-06-15 22:48:00
depth1
children0
last_payout2019-06-22 22:48:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation-51,177,472,003
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id86,698,838
net_rshares-182,997,863,634
author_curate_reward""
vote details (1)
@direwolfslair ·
$0.09
Wait, what exactly do you play on epicdice? Gambling games or?
👍  
properties (23)
authordirewolfslair
permlinkpt742l
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-06-16 14:25:33
last_update2019-06-16 14:25:33
depth1
children1
last_payout2019-06-23 14:25:33
cashout_time1969-12-31 23:59:59
total_payout_value0.070 HBD
curator_payout_value0.023 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length62
author_reputation2,497,345,057,113
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,726,030
net_rshares158,890,214,941
author_curate_reward""
vote details (1)
@epicdice ·
Yes, it is a gambling game with one dice game while many are on its way to come. Also we have the best transparency on fairness proving, bonus paying system ever on Steem blockchain. Give it a try today and chances are you will fall in love with it!
properties (22)
authorepicdice
permlinkpt8txc
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-06-17 12:41:36
last_update2019-06-17 12:41:36
depth2
children0
last_payout2019-06-24 12:41:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length249
author_reputation120,950,487,102,911
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id86,781,375
net_rshares0
@harlhana ·
This is really good.

Posted using [Partiko iOS](https://partiko.app/referral/harlhana)
properties (22)
authorharlhana
permlinkharlhana-re-epicdice-epicdice-fairness-20190618t142618643z
categoryepicdice
json_metadata{"app":"partiko","client":"ios"}
created2019-06-18 14:26:18
last_update2019-06-18 14:26:18
depth1
children0
last_payout2019-06-25 14:26:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length87
author_reputation7,572,390,403,967
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,850,695
net_rshares0
@kim0412 ·
$0.13
It's a very good game.
Thank you for making me...
👍  ,
properties (23)
authorkim0412
permlinkpt6lzw
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-06-16 07:55:00
last_update2019-06-16 07:55:00
depth1
children1
last_payout2019-06-23 07:55:00
cashout_time1969-12-31 23:59:59
total_payout_value0.100 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation13,705,101,438,824
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,712,493
net_rshares229,528,506,213
author_curate_reward""
vote details (2)
@epicdice ·
Glad to see you enjoying the game!
properties (22)
authorepicdice
permlinkpt6oo5
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-06-16 08:52:54
last_update2019-06-16 08:52:54
depth2
children0
last_payout2019-06-23 08:52:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation120,950,487,102,911
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id86,714,733
net_rshares0
@klye ·
$0.13
Not bad! The RNG is a tiny bit biased but the percentage it's out is so minimal I'd not even really be worried about it. 

Good work supplying this info. Well played. 
👍  ,
properties (23)
authorklye
permlinkre-epicdice-epicdice-fairness-20190615t115620143z
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steempeak/1.11.1"}
created2019-06-15 11:56:30
last_update2019-06-15 11:56:30
depth1
children1
last_payout2019-06-22 11:56:30
cashout_time1969-12-31 23:59:59
total_payout_value0.099 HBD
curator_payout_value0.032 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length167
author_reputation412,341,527,771,769
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,673,429
net_rshares228,463,897,692
author_curate_reward""
vote details (2)
@epicdice ·
Glad to hear that. We are sure there are more ways to generate interesting analysis out of the dataset. Download and play with it as you may pleased. Thanks for passing by.
properties (22)
authorepicdice
permlinkpt65xi
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-06-16 02:08:09
last_update2019-06-16 02:08:09
depth2
children0
last_payout2019-06-23 02:08:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length172
author_reputation120,950,487,102,911
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id86,702,697
net_rshares0
@magick721 ·
$0.13
Thank you for showing us this. A lot of companies dont even care if the public thinks they are fair. They just do whatever they want.
👍  
properties (23)
authormagick721
permlinkpt56za
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-06-15 13:33:12
last_update2019-06-15 13:33:12
depth1
children1
last_payout2019-06-22 13:33:12
cashout_time1969-12-31 23:59:59
total_payout_value0.098 HBD
curator_payout_value0.032 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length133
author_reputation9,796,844,436
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,677,488
net_rshares226,201,122,859
author_curate_reward""
vote details (1)
@epicdice ·
The platform will always running with high level of transparency. Thanks for the kind words!
properties (22)
authorepicdice
permlinkpt668r
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-06-16 02:14:54
last_update2019-06-16 02:14:54
depth2
children0
last_payout2019-06-23 02:14:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length92
author_reputation120,950,487,102,911
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id86,702,840
net_rshares0
@promobot ·
re-epicdice-epicdice-fairness-20190615t172526548z
@epictoken purchased a 53.99% vote from @promobot on this post.

*If you disagree with the reward or content of this post you can purchase a reversal of this vote by using our curation interface http://promovotes.com
properties (22)
authorpromobot
permlinkre-epicdice-epicdice-fairness-20190615t172526548z
categoryepicdice
json_metadata{"app":"postpromoter/2.0.0"}
created2019-06-15 17:25:27
last_update2019-06-15 17:25:27
depth1
children0
last_payout2019-06-22 17:25:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length217
author_reputation9,020,628,089,607
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,686,881
net_rshares0
@ruttydm ·
Gambling is never fair
properties (22)
authorruttydm
permlinkre-epicdice-epicdice-fairness-20190616t182946004z
categoryepicdice
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["epicdice"],"users":[],"links":[],"image":[]}
created2019-06-16 18:29:45
last_update2019-06-16 18:29:45
depth1
children0
last_payout2019-06-23 18:29:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation173,804,565,165
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,734,703
net_rshares0
@steemitboard ·
Congratulations @epicdice! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) :

<table><tr><td><img src="https://steemitimages.com/60x70/http://steemitboard.com/@epicdice/voted.png?201906160618"></td><td>You received more than 5000 upvotes. Your next target is to reach 6000 upvotes.</td></tr>
</table>

<sub>_You can view [your badges on your Steem Board](https://steemitboard.com/@epicdice) and compare to others on the [Steem Ranking](https://steemitboard.com/ranking/index.php?name=epicdice)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



###### [Vote for @Steemitboard as a witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1) to get one more award and increased upvotes!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-epicdice-20190616t070514000z
categoryepicdice
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-06-16 07:05:12
last_update2019-06-16 07:05:12
depth1
children0
last_payout2019-06-23 07:05:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length845
author_reputation38,975,615,169,260
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,710,262
net_rshares0
@superpanz ·
$0.10
Awesome! I played magic dice for awhile and kinda drifted away for a bit so I am excited to start playing! I’m a sucker for a good dice game! 

Posted using [Partiko iOS](https://partiko.app/referral/superpanz)
👍  
properties (23)
authorsuperpanz
permlinksuperpanz-re-epicdice-epicdice-fairness-20190617t162841060z
categoryepicdice
json_metadata{"app":"partiko","client":"ios"}
created2019-06-17 16:28:42
last_update2019-06-17 16:28:42
depth1
children2
last_payout2019-06-24 16:28:42
cashout_time1969-12-31 23:59:59
total_payout_value0.073 HBD
curator_payout_value0.024 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length210
author_reputation1,904,289,748,230
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,794,482
net_rshares167,637,104,862
author_curate_reward""
vote details (1)
@blocksensei ·
Don't forget to leverage the awesome [EPC betting system](https://steemit.com/epicdice/@epicdice/bet-epc-win-steem) as well! See you in the game!
👍  
properties (23)
authorblocksensei
permlinkptab45
categoryepicdice
json_metadata{"tags":["epicdice"],"links":["https://steemit.com/epicdice/@epicdice/bet-epc-win-steem"],"app":"steemit/0.1"}
created2019-06-18 07:50:30
last_update2019-06-18 07:50:30
depth2
children1
last_payout2019-06-25 07:50:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length145
author_reputation4,243,528,275,187
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,831,012
net_rshares8,209,697,195
author_curate_reward""
vote details (1)
@superpanz ·
Thanks for the tip!!! 

Posted using [Partiko iOS](https://partiko.app/referral/superpanz)
properties (22)
authorsuperpanz
permlinksuperpanz-re-blocksensei-ptab45-20190618t142745514z
categoryepicdice
json_metadata{"app":"partiko","client":"ios"}
created2019-06-18 14:27:45
last_update2019-06-18 14:27:45
depth3
children0
last_payout2019-06-25 14:27:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length90
author_reputation1,904,289,748,230
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,850,772
net_rshares0
@tipu ·
This post is supported by $50.0 @tipU upvote funded by @epictoken :)<br><strong><a href="https://steemit.com/@tipu/tipu-voting-service-quick-guide-updated-05-10-2018" target="_blank">@tipU voting service</a></strong>: instant, profitable upvotes + <strong><a href="https://steemit.com/steemit/@tipu/tipu-new-feature-profit-sharing-tokens-for-voting-service-users" target="_blank">profit sharing tokens</a></strong> | <strong><a href="https://tipu.online" target="_blank">For investors</a></strong>.
properties (22)
authortipu
permlinkre-epicdice-fairness-20190615t155313
categoryepicdice
json_metadata""
created2019-06-15 15:53:15
last_update2019-06-15 15:53:15
depth1
children0
last_payout2019-06-22 15:53:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length498
author_reputation55,922,745,798,079
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,683,018
net_rshares0
@travelersmemoire · (edited)
$0.13
The above code seems to out and from what I’ve seen everything posted matches site results.  One thing to always keep in mind(with any of these sites) is that with any online platform a minor code tweak is all it takes to shift odds and unless you actively check you’ll never notice.
👍  ,
properties (23)
authortravelersmemoire
permlinktravelersmemoire-re-epicdice-epicdice-fairness-20190615t213937878z
categoryepicdice
json_metadata{"app":"partiko","client":"ios"}
created2019-06-15 21:39:39
last_update2019-06-15 21:40:03
depth1
children1
last_payout2019-06-22 21:39:39
cashout_time1969-12-31 23:59:59
total_payout_value0.100 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length283
author_reputation5,115,418,978,753
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,697,136
net_rshares232,070,212,082
author_curate_reward""
vote details (2)
@epicdice ·
This is exactly the case where EpicDice stands out.

Other casinos which using server/client seed would not allow players to verify their bet **immediately** after result is available, you would have to wait until they publish their unhashed server seed to do that.
In EpicDice though, there is no custom seed to add and players get to **verify every bet right after the number is rolled.** You can verify all your bet instantly if you are suspicious.

Thanks for the comment.
👍  
properties (23)
authorepicdice
permlinkpt66ll
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-06-16 02:22:36
last_update2019-06-16 02:22:36
depth2
children0
last_payout2019-06-23 02:22:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length476
author_reputation120,950,487,102,911
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id86,702,992
net_rshares8,011,946,411
author_curate_reward""
vote details (1)
@truthsfinder ·
$0.10
This is really way better than magic-dice which in the ends, you will always lose.
👍  
properties (23)
authortruthsfinder
permlinkpta6b7
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-06-18 06:06:54
last_update2019-06-18 06:06:54
depth1
children1
last_payout2019-06-25 06:06:54
cashout_time1969-12-31 23:59:59
total_payout_value0.074 HBD
curator_payout_value0.025 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation15,464,408,971,163
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,826,826
net_rshares169,322,902,504
author_curate_reward""
vote details (1)
@blocksensei ·
$0.11
While "house will always win" is largely applicable for most of the gambling platforms out there, unique EPC betting mechanism(bet EPC and win STEEM) is going to give more advantages to the players and stake holders as long as they use the token wisely. Combining strategies of holding EPC for the div and betting it for for the prize pool, one can maximize the odd to beat the house in long run. Not to mention internal EPC rate is only going up forever, which means you get to win prize from pool with lesser and lesser token.

Thanks for passing by and See you in the game!
👍  
properties (23)
authorblocksensei
permlinkptaay9
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-06-18 07:47:00
last_update2019-06-18 07:47:00
depth2
children0
last_payout2019-06-25 07:47:00
cashout_time1969-12-31 23:59:59
total_payout_value0.084 HBD
curator_payout_value0.027 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length576
author_reputation4,243,528,275,187
root_title"EpicDice Fairness"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id86,830,883
net_rshares189,853,386,572
author_curate_reward""
vote details (1)