create account

EpicDice is Open Source now by epicdice

View this thread on: hive.blogpeakd.comecency.com
· @epicdice ·
$167.84
EpicDice is Open Source now
<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 is Open Source now

In accordance with EpicDice's manifesto to be the most transparent and [fair](https://steemit.com/epicdice/@epicdice/epicdice-fairness) casino, we've decided to open-source the core code of our business, dice game. So it's clear how every bet is being handled every step of the way. Many platforms promise a fair game but don't open up their code for peer-review. We can understand that sharing vital code this way would potentially create uninvited rivals, but we believe more that open-sourcing could uplift the platform in a compelling way.

While trust in a closed system can be convenient at times, nothing is more trustable than mathematical certainty and utter transparency.

GitHub repository: https://github.com/casinosteem/EpicDice

## Brief explanation of the code

Block was read based on block number and always trying to catch the latest block.
```
 try:
            blockchain = Blockchain()
            print('Block : ' + str(getblock))
        except:
            print("Latest Block")
        try:
            block = Block(getblock)
        except:
            block = None
            printX('###########################')
            printX('#### End of Block #########')
            printX('###########################')
```

Iterating each transaction on every block to check any transaction is send to @epicdice, then storing all crucial value into global variable which later will be stored into local database for processing.
```
 for i, txs in enumerate(block.transactions):
                for (j, tx) in enumerate(txs['operations']):
                    if tx['type'] == 'transfer_operation' and tx['value']['to'] in [watching]:
                        if tx != None:
                            transId = txs['transaction_id']
                            precision = str(tx['value']['amount']['precision'])
                            nai = tx['value']['amount']['nai']
                            fromWho = tx['value']['from']
                            toWho = tx['value']['to']
                            amount = tx['value']['amount']['amount']
                            ref_block_num = txs['ref_block_num']
                            transaction_num = txs['transaction_num']
                            block_num = txs['block_num']
                            memo = tx['value']['memo']
                            transType = tx['type']
```



Calculation of the possible winning payout and go through a series of validation checking.
```
   win = (float(finalAmount) * 100/factor) * ( 1 - houseEdge)
                            win = float_round(win, 3, round)
```

Most crucial part of entire program, it calculates result of bet based on transactionID , this code is same as Javascript found on the website Fairness tab
```
 while result > 999999:
            try:
                chop = txid[offset:endValue]
                offset += 5
                endValue = offset + length
                result = int(chop, 16)
                printX('chop ' + chop)
                printX('txid ' + txid)
                printX('result ' + str(result))

                try:
                    tempResult = result % (10000)/100
                    printX('Below Rounding Result : ' + str(tempResult))
                    tempResult = int(round(tempResult))
                    printX('After Rounding Result : ' + str(tempResult))
                    if tempResult == 0:
                        printX('tempResult is zero .. trying next 5 char ')
                        result = 1000000
                except Exception as e:
                    print('error '+ str(e))
            except:
                result = -1
```                

Determining winning or losing bet of "Above" or "Under"
```
 won = 0
        factor = 0
        if result > -1:
            result = tempResult
            processed = True
            try:
                details = memo
                prediction = ""
                details = str(details).lower()
                rate = 0
                betType = 0
                if 'over' in details:
                    indexOfSpace = memo.index(" ")
                    rate = int(memo[indexOfSpace:indexOfSpace + 3])
                    prediction = memo[:5+3]
                    betType = 1
                    factor = 100 - rate
                    if result > rate:
                        won = 1
                elif 'above' in details:
                    indexOfSpace = memo.index(" ")
                    rate = int(memo[indexOfSpace:indexOfSpace+ 3])
                    prediction = memo[:6+3]
                    betType = 1
                    factor = 100 - rate
                    if result > rate:
                        won = 1
                elif 'below' in details or 'under' in details:
                    indexOfSpace = memo.index(" ")
                    rate = int(memo[indexOfSpace:indexOfSpace + 3])
                    prediction = memo[:6+3]
                    betType = 2
                    factor = 0 + rate - 1
                    if result < rate:
                        won = 1
                else:
                    factor = 0   
            except:
                factor = 0
```                

Payout of winning bet and the generation of memo
```
if won == 1 and factor > 0:
                processed = False
                payout = (float(amount) * 100/factor) * (1 - houseEdgeParam)
                payout = float_round(payout, 3, round)
                try:
                    transactionJSON = {}
                    transactionJSON["diceRolled"] = str(result)
                    transactionJSON["TransactionId"] = txid
                    transactionJSON["BlockNumber"] = str(block)
                    transactionJSON["isValid"] = True

                    clientTransfer(watching, user, str(payout) + " " + asset, 'You have Won! Dice Rolled: ' + str(result) + ". Your Prediction: " + prediction + ". Multiplier: " +  str(multiplier) + ". Win Chance: " + str(factor)+ "%" + '\n' + json.dumps(transactionJSON))
                    print('>>>>>>>>>>  ' + user + ', You Won! . Dice Roll : ' + str(result) + " Your Prediction: " + prediction + ". Multiplier: " +  str(multiplier) + ". Win Chance: " + str(factor)+ "%" + '\n' + json.dumps(transactionJSON) + " amount " + str(amount) + " currency " + asset)
               
                except Exception as e:
                    print('ERROR SENDING MONEY ' + str(e))
```

Notification of losing bet processing.
```
elif won == 0:
                payout = 0.001
                try:
                    transactionJSON = {}
                    transactionJSON["diceRolled"] = str(result)
                    transactionJSON["TransactionId"] = txid
                    transactionJSON["BlockNumber"] = str(block)
                    transactionJSON["isValid"] = True
                    clientTransfer(watching, user, str(payout) + " " + asset, 'You Lost. Dice Rolled: ' + str(result) + ". Your Prediction: " + prediction + ". Multiplier: " +  str(multiplier) + ". Win Chance: " + str(factor)+ "%" + '\n' + json.dumps(transactionJSON))
                    print('>>>>>>>>>> ' + user + ', You Lost. Dice Roll : ' + str(result) + " Your Prediction: " + prediction + ". Multiplier: " +  str(multiplier) + ". Win Chance: " + str(factor)+ "%" + '\n' + json.dumps(transactionJSON) + " amount " + str(amount) + " currency " + asset)
                  
                except Exception as e:
                     print('ERROR SENDING MONEY 2 ' + str(e))        
```

## Development updates

Interesting treats are being prepared in the kitchen now! As one may already learn from the [post](https://steemit.com/epicdice/@hitmeasap/epc-airdrop-we-ve-never-seen-such-distribution-before) of our mod @hitmeasap, **EPC Airdrop is definitely the next big thing** we are cooking right now together with mobile support development. We don't have much detail to expose about the Airdrop until the backend system is ready and testing is done. The team is always working towards a better service both in higher technical and branding level. Be sure to stay tuned by following the official account @epicdice or joining our discord channel for direct communication with us.

Keep up that epicness!

## Earn EPC via delegation

EPC is the only token to earn from the [daily dividend](https://steemit.com/epicdice/@epicdice/epic-token-and-daily-dividend-is-now-live) and [prize pool](https://steemit.com/epicdice/@epicdice/bet-epc-win-steem) 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. 

<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 251 others
👎  , , ,
properties (23)
authorepicdice
permlinkepicdice-is-open-source-now
categoryepicdice
json_metadata{"tags":["epicdice","steem","dice","gambling","game"],"users":["epicdice","hitmeasap"],"image":["https://cdn.steemitimages.com/DQmbzs8Wbbm1WE5qwHTwd4iRqBwicQCdf5ETZtrAkozDRC4/Artboard%205@20x.png","https://cdn.steemitimages.com/DQmW3Pw4t1ykfEBfVjXJc9L7kxMnVof97oS9ArZWE9LQUaA/output-onlinepngtools.png"],"links":["https://epicdice.io/","https://steemit.com/epicdice/@epicdice/epicdice-fairness","https://github.com/casinosteem/EpicDice","https://steemit.com/epicdice/@hitmeasap/epc-airdrop-we-ve-never-seen-such-distribution-before","https://steemit.com/epicdice/@epicdice/epic-token-and-daily-dividend-is-now-live","https://steemit.com/epicdice/@epicdice/bet-epc-win-steem","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-07-06 06:04:39
last_update2019-07-06 06:04:39
depth0
children75
last_payout2019-07-13 06:04:39
cashout_time1969-12-31 23:59:59
total_payout_value126.795 HBD
curator_payout_value41.042 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9,941
author_reputation120,950,487,102,911
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id87,879,593
net_rshares399,576,818,898,961
author_curate_reward""
vote details (319)
@abitcoinskeptic ·
$0.12
1 steem = 2 epc daily
Price: 0.00015 STEEM / $0.00005
X 730
= .1095 

APR of 11% is based on the sell which is 50% higher than the buy.
I'm not even going with the demand price and could immediately buy 1.5 Million EPC at that price.

The APR for delegating Steem in exchange for EPC is very underwhelming given the demand for EPC. You should consider adjusting it based on price. Right now 1 steem for 4 daily would be somewhat tempting.
👍  , , ,
👎  
properties (23)
authorabitcoinskeptic
permlinkre-epicdice-epicdice-is-open-source-now-20190706t071751430z
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steempeak/1.13.6"}
created2019-07-06 07:17:51
last_update2019-07-06 07:17:51
depth1
children33
last_payout2019-07-13 07:17:51
cashout_time1969-12-31 23:59:59
total_payout_value0.088 HBD
curator_payout_value0.028 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length438
author_reputation335,387,091,612,941
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,881,631
net_rshares282,298,422,992
author_curate_reward""
vote details (5)
@chuuuckie ·
I second this... There should be adjustments.

Posted using [Partiko Android](https://partiko.app/referral/chuuuckie)
👎  
properties (23)
authorchuuuckie
permlinkchuuuckie-re-abitcoinskeptic-re-epicdice-epicdice-is-open-source-now-20190706t183228351z
categoryepicdice
json_metadata{"app":"partiko","client":"android"}
created2019-07-06 18:32:30
last_update2019-07-06 18:32:30
depth2
children2
last_payout2019-07-13 18:32: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_length117
author_reputation109,775,830,923,589
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,903,698
net_rshares-1,884,803,289
author_curate_reward""
vote details (1)
@coininstant ·
properties (23)
authorcoininstant
permlinkpuahv6
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-07 20:49:54
last_update2019-07-07 20:49:54
depth3
children1
last_payout2019-07-14 20:49: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_length1
author_reputation87,380,255,426,398
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,959,237
net_rshares-77,281,196,765
author_curate_reward""
vote details (3)
@coininstant ·
properties (23)
authorcoininstant
permlinkpua8y1
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-07 17:37:12
last_update2019-07-07 17:37:12
depth2
children1
last_payout2019-07-14 17:37: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_length1
author_reputation87,380,255,426,398
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,951,111
net_rshares-76,364,064,559
author_curate_reward""
vote details (4)
@abusereports ·
### WARNING: IF YOU REPLY TO THIS ACCOUNT YOU WILL BE FLAGGED, YOUR REP HARMED AND ALL OF YOUR REWARDS REMOVED.  DO NOT ENGAGE WITH THE TRASH. YOU HAVE BEEN WARNED
properties (22)
authorabusereports
permlinkabusereports-re-coininstantpua8y1
categoryepicdice
json_metadata""
created2019-07-07 17:37:27
last_update2019-07-07 17:37:27
depth3
children0
last_payout2019-07-14 17:37: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_length163
author_reputation199,407,425,243,286
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,951,124
net_rshares0
@coininstant ·
properties (23)
authorcoininstant
permlinkpuahuj
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-07 20:49:33
last_update2019-07-07 20:49:33
depth2
children1
last_payout2019-07-14 20:49: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_length1
author_reputation87,380,255,426,398
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,959,216
net_rshares-77,369,128,247
author_curate_reward""
vote details (3)
@abusereports ·
### WARNING: IF YOU REPLY TO THIS ACCOUNT YOU WILL BE FLAGGED, YOUR REP HARMED AND ALL OF YOUR REWARDS REMOVED.  DO NOT ENGAGE WITH THE TRASH. YOU HAVE BEEN WARNED
properties (22)
authorabusereports
permlinkabusereports-re-coininstantpuahuj
categoryepicdice
json_metadata""
created2019-07-07 20:49:45
last_update2019-07-07 20:49:45
depth3
children0
last_payout2019-07-14 20:49: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_length163
author_reputation199,407,425,243,286
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,959,227
net_rshares0
@coininstant ·
https://steemit.com/steemleo/@coininstant/my-letter-to-themarkymark-in-response-to-his-continual-flagging-of-my-account-and-not-hearing-about-my-steemleo-block-from
👎  , ,
properties (23)
authorcoininstant
permlinkpud1jk
categoryepicdice
json_metadata{"tags":["epicdice"],"links":["https://steemit.com/steemleo/@coininstant/my-letter-to-themarkymark-in-response-to-his-continual-flagging-of-my-account-and-not-hearing-about-my-steemleo-block-from"],"app":"steemit/0.1"}
created2019-07-09 05:50:09
last_update2019-07-09 05:50:09
depth2
children1
last_payout2019-07-16 05:50: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_length164
author_reputation87,380,255,426,398
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,039,960
net_rshares-76,764,118,480
author_curate_reward""
vote details (3)
@abusereports ·
### WARNING: IF YOU REPLY TO THIS ACCOUNT YOU WILL BE FLAGGED, YOUR REP HARMED AND ALL OF YOUR REWARDS REMOVED.  DO NOT ENGAGE WITH THE TRASH. YOU HAVE BEEN WARNED
properties (22)
authorabusereports
permlinkabusereports-re-coininstantpud1jk
categoryepicdice
json_metadata""
created2019-07-09 05:50:27
last_update2019-07-09 05:50:27
depth3
children0
last_payout2019-07-16 05:50: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_length163
author_reputation199,407,425,243,286
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,039,975
net_rshares0
@deanliu ·
It's possible that they do not need too much SP at the moment. After all, their business model is not based on SP, but gambling, which requires *some* SP that can provide enough RCs.
👎  
properties (23)
authordeanliu
permlinkpu7nhj
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-06 07:58:27
last_update2019-07-06 07:58:27
depth2
children5
last_payout2019-07-13 07:58: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_length182
author_reputation3,088,559,687,127,212
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,882,845
net_rshares-1,882,400,694
author_curate_reward""
vote details (1)
@abitcoinskeptic ·
That is my thought too. If people go for it at this rate, why not?
properties (22)
authorabitcoinskeptic
permlinkpu7rb7
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-06 09:21:06
last_update2019-07-06 09:21:06
depth3
children2
last_payout2019-07-13 09:21: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_length66
author_reputation335,387,091,612,941
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,884,857
net_rshares0
@coininstant ·
properties (23)
authorcoininstant
permlinkpuahuy
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-07 20:49:48
last_update2019-07-07 20:49:48
depth3
children1
last_payout2019-07-14 20:49: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_length1
author_reputation87,380,255,426,398
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,959,230
net_rshares-77,310,523,178
author_curate_reward""
vote details (3)
@epicdice ·
Market price is way to easy to manipulate at this thin volume and order book. Even if it is not, adjusting a fixed reward rate according to a fluctuating market measurement is never a good idea. There are several ways to earn EPC like betting, trading, delegation and taking part in giveaways. We glad that you have found the better acquiring way for yourself. Delegation would still serves its purpose for non-risk-takers. 

Thanks for the support.
👎  
properties (23)
authorepicdice
permlinkpu93qd
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-07 02:47:03
last_update2019-07-07 02:47:03
depth2
children10
last_payout2019-07-14 02: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_length449
author_reputation120,950,487,102,911
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id87,919,874
net_rshares-1,886,286,898
author_curate_reward""
vote details (1)
@abitcoinskeptic ·
I agree market price is easy to manipulate, also changing the amount constantly would be annoying so pick a term of sayba week or a month and that the median or average price for the next month. As i mentioned, 20% wouldn't be unfair.

I agree EPC from daily prize or gambling os a reward. Hpwever EPC from delegating is not a reward, it is rent (unless maybe you look at delegating to a gambling fund as charity, lol). Therefore, rent should should be rewarded at a consistant rate.

Someone else mentioned that you guys probably don't really need delegations and I imagine this could be a reason. Either that or there are enough suckers around here who have a very ignorant form of speculating since as I mentioned one can delegate at 20% and then buy nearly double the amount of EPC tokens with their additional income. This means you are taking advantage of the financially illiterate which kinda seems like something a casino would do.

So your idea that non risk takers are better off delegating is silly because they are much better off buying until the price doubles.

Posted using [Partiko Android](https://partiko.app/referral/abitcoinskeptic)
👍  
properties (23)
authorabitcoinskeptic
permlinkabitcoinskeptic-re-epicdice-pu93qd-20190707t214139618z
categoryepicdice
json_metadata{"app":"partiko","client":"android"}
created2019-07-07 21:41:39
last_update2019-07-07 21:41:39
depth3
children5
last_payout2019-07-14 21:41:39
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_length1,153
author_reputation335,387,091,612,941
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,961,711
net_rshares28,736,975,339
author_curate_reward""
vote details (1)
@coininstant ·
properties (23)
authorcoininstant
permlinkpua8ym
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-07 17:37:36
last_update2019-07-07 17:37:36
depth3
children1
last_payout2019-07-14 17:37: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_length1
author_reputation87,380,255,426,398
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,951,133
net_rshares-76,308,751,453
author_curate_reward""
vote details (4)
@honusurf ·
properties (23)
authorhonusurf
permlinkpuaitz
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-07 21:10:51
last_update2019-07-07 21:10:51
depth3
children1
last_payout2019-07-14 21:10:51
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_length2
author_reputation14,240,648,764,027
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,960,422
net_rshares-73,671,636,206
author_curate_reward""
vote details (4)
@honusurf ·
properties (23)
authorhonusurf
permlinkpuaito
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-07 21:10:36
last_update2019-07-07 21:10:36
depth2
children1
last_payout2019-07-14 21:10: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_length2
author_reputation14,240,648,764,027
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,960,412
net_rshares-73,360,365,172
author_curate_reward""
vote details (3)
@abusereports ·
### WARNING: IF YOU REPLY TO THIS ACCOUNT YOU WILL BE FLAGGED, YOUR REP HARMED AND ALL OF YOUR REWARDS REMOVED.  DO NOT ENGAGE WITH THE TRASH. YOU HAVE BEEN WARNED
properties (22)
authorabusereports
permlinkabusereports-re-honusurfpuaito
categoryepicdice
json_metadata""
created2019-07-07 21:16:06
last_update2019-07-07 21:16:06
depth3
children0
last_payout2019-07-14 21:16: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_length163
author_reputation199,407,425,243,286
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,960,650
net_rshares0
@jassennessaj ·
I've suggested this option to the team and I'm glad we're seeing the same way for the delegation. I'm hoping the team will re-consider this suggestion.
properties (22)
authorjassennessaj
permlinkpua48g
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-07 15:55:30
last_update2019-07-07 15:55:30
depth2
children4
last_payout2019-07-14 15:55: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_length151
author_reputation158,167,711,482,591
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,946,245
net_rshares0
@coininstant ·
properties (23)
authorcoininstant
permlinkpuahus
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-07 20:49:39
last_update2019-07-07 20:49:39
depth3
children1
last_payout2019-07-14 20:49:39
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_length1
author_reputation87,380,255,426,398
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,959,223
net_rshares-77,339,806,029
author_curate_reward""
vote details (3)
@honusurf ·
properties (23)
authorhonusurf
permlinkpuaitu
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-07 21:10:42
last_update2019-07-07 21:10:42
depth3
children1
last_payout2019-07-14 21:10:42
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_length2
author_reputation14,240,648,764,027
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,960,416
net_rshares-73,333,657,775
author_curate_reward""
vote details (3)
@arcange ·
Congratulations @epicdice!
Your post was mentioned in the [Steem Hit Parade](/hit-parade/@arcange/daily-hit-parade-20190706) in the following category:

* Pending payout - Ranked 1 with $ 203,34
👎  
properties (23)
authorarcange
permlinkre-epicdice-is-open-source-now-20190706t175436000z
categoryepicdice
json_metadata""
created2019-07-07 15:55:03
last_update2019-07-07 15:55:03
depth1
children4
last_payout2019-07-14 15:55: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_length195
author_reputation1,146,606,601,469,178
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,946,213
net_rshares-916,897,821
author_curate_reward""
vote details (1)
@coininstant ·
properties (23)
authorcoininstant
permlinkpua90q
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-07 17:38:51
last_update2019-07-07 17:38:51
depth2
children1
last_payout2019-07-14 17:38:51
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_length1
author_reputation87,380,255,426,398
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,951,201
net_rshares-76,846,252,705
author_curate_reward""
vote details (4)
@abusereports ·
### WARNING: IF YOU REPLY TO THIS ACCOUNT YOU WILL BE FLAGGED, YOUR REP HARMED AND ALL OF YOUR REWARDS REMOVED.  DO NOT ENGAGE WITH THE TRASH. YOU HAVE BEEN WARNED
properties (22)
authorabusereports
permlinkabusereports-re-coininstantpua90q
categoryepicdice
json_metadata""
created2019-07-07 17:39:12
last_update2019-07-07 17:39:12
depth3
children0
last_payout2019-07-14 17:39: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_length163
author_reputation199,407,425,243,286
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,951,222
net_rshares0
@coininstant ·
properties (23)
authorcoininstant
permlinkpuahvj
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-07 20:50:06
last_update2019-07-07 20:50:06
depth2
children1
last_payout2019-07-14 20:50: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_length1
author_reputation87,380,255,426,398
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,959,248
net_rshares-77,730,024,220
author_curate_reward""
vote details (4)
@abusereports ·
### WARNING: IF YOU REPLY TO THIS ACCOUNT YOU WILL BE FLAGGED, YOUR REP HARMED AND ALL OF YOUR REWARDS REMOVED.  DO NOT ENGAGE WITH THE TRASH. YOU HAVE BEEN WARNED
properties (22)
authorabusereports
permlinkabusereports-re-coininstantpuahvj
categoryepicdice
json_metadata""
created2019-07-07 20:50:30
last_update2019-07-07 20:50:30
depth3
children0
last_payout2019-07-14 20: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_length163
author_reputation199,407,425,243,286
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,959,271
net_rshares0
@bangmimi ·
$0.05
It's look interesting. May I post on Indonesian?
👍  
👎  
properties (23)
authorbangmimi
permlinkpu85xd
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-06 14:36:57
last_update2019-07-06 14:36:57
depth1
children1
last_payout2019-07-13 14:36:57
cashout_time1969-12-31 23:59:59
total_payout_value0.040 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length48
author_reputation13,529,540,589,633
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,894,182
net_rshares131,017,324,411
author_curate_reward""
vote details (2)
@epicdice ·
Please do, we appreciate it.
👎  
properties (23)
authorepicdice
permlinkpu93ij
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-07 02:42:21
last_update2019-07-07 02:42:21
depth2
children0
last_payout2019-07-14 02:42: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_length28
author_reputation120,950,487,102,911
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id87,919,787
net_rshares-917,600,064
author_curate_reward""
vote details (1)
@bekirsolak ·
!bookkeeping epicdice
properties (22)
authorbekirsolak
permlinkpuimzi
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-12 06:21:18
last_update2019-07-12 06:21:18
depth1
children1
last_payout2019-07-19 06:21: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_length21
author_reputation3,971,284,510,035
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,186,961
net_rshares0
@bookkeeping ·
Please use one of the following keywords after !bookkeeping:
```
drugwars steemmonsters magicdice steemslotgames steembet moonsteem
```
properties (22)
authorbookkeeping
permlinkre-puimzi-20190712t062131z
categoryepicdice
json_metadata"{"app": "bookkeeping/0.1.0"}"
created2019-07-12 06:21:30
last_update2019-07-12 06:21:30
depth2
children0
last_payout2019-07-19 06:21: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_length136
author_reputation1,614,107,404,118
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,186,968
net_rshares0
@coinboost ·
$0.05
I always support open source projects as well as decentralized projects. 
👍  
👎  
properties (23)
authorcoinboost
permlinkre-epicdice-201976t211333673z
categoryepicdice
json_metadata{"tags":["epicdice","steem","dice","gambling","game"],"app":"esteem/2.0.0-mobile","format":"markdown+html","community":"esteem.app"}
created2019-07-06 15:13:42
last_update2019-07-06 15:13:42
depth1
children1
last_payout2019-07-13 15:13:42
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length73
author_reputation328,380,531,749
root_title"EpicDice is Open Source now"
beneficiaries
0.
accountesteemapp
weight1,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,895,855
net_rshares128,276,506,991
author_curate_reward""
vote details (2)
@epicdice ·
Decentralized project really makes a good pair with opensource-ness!
👎  
properties (23)
authorepicdice
permlinkpu93va
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-07 02:50:00
last_update2019-07-07 02:50:00
depth2
children0
last_payout2019-07-14 02:50: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_length68
author_reputation120,950,487,102,911
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id87,919,964
net_rshares-917,439,471
author_curate_reward""
vote details (1)
@deanliu ·
$0.03
Woot woot!!

Posted using [Partiko Android](https://partiko.app/referral/deanliu)
👍  ,
properties (23)
authordeanliu
permlinkdeanliu-re-epicdice-epicdice-is-open-source-now-20190706t063802993z
categoryepicdice
json_metadata{"app":"partiko","client":"android"}
created2019-07-06 06:38:03
last_update2019-07-06 06:38:03
depth1
children0
last_payout2019-07-13 06:38:03
cashout_time1969-12-31 23:59:59
total_payout_value0.026 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation3,088,559,687,127,212
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,880,509
net_rshares87,072,767,455
author_curate_reward""
vote details (2)
@emrebeyler ·
$0.09
Good to see you guys are open-sourced. However, I can't see the license. It's not really open-source until it's properly licensed.

Also, [this](https://github.com/casinosteem/EpicDice/blob/master/dice_program.py#L895) might be inappropriate :P
👍  , , ,
properties (23)
authoremrebeyler
permlinkpu8oe9
categoryepicdice
json_metadata{"tags":["epicdice"],"links":["https://github.com/casinosteem/EpicDice/blob/master/dice_program.py#L895"],"app":"steemit/0.1"}
created2019-07-06 21:15:45
last_update2019-07-06 21:15:45
depth1
children5
last_payout2019-07-13 21:15:45
cashout_time1969-12-31 23:59:59
total_payout_value0.068 HBD
curator_payout_value0.021 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length244
author_reputation448,528,959,341,273
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,908,871
net_rshares221,113,904,521
author_curate_reward""
vote details (4)
@coininstant ·
properties (23)
authorcoininstant
permlinkpua8yt
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-07 17:37:42
last_update2019-07-07 17:37:42
depth2
children1
last_payout2019-07-14 17:37:42
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_length1
author_reputation87,380,255,426,398
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,951,142
net_rshares-76,280,438,890
author_curate_reward""
vote details (4)
@abusereports ·
### WARNING: IF YOU REPLY TO THIS ACCOUNT YOU WILL BE FLAGGED, YOUR REP HARMED AND ALL OF YOUR REWARDS REMOVED.  DO NOT ENGAGE WITH THE TRASH. YOU HAVE BEEN WARNED
properties (22)
authorabusereports
permlinkabusereports-re-coininstantpua8yt
categoryepicdice
json_metadata""
created2019-07-07 17:38:03
last_update2019-07-07 17:38:03
depth3
children0
last_payout2019-07-14 17:38: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_length163
author_reputation199,407,425,243,286
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,951,157
net_rshares0
@elderson ·
@emrebeyler please elaborate more on licensed. I would like to learn.
properties (22)
authorelderson
permlinkpu8psb
categoryepicdice
json_metadata{"tags":["epicdice"],"users":["emrebeyler"],"app":"steemit/0.1"}
created2019-07-06 21:45:48
last_update2019-07-06 21:45:48
depth2
children1
last_payout2019-07-13 21:45: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_length69
author_reputation22,445,512,322,956
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,909,771
net_rshares0
@emrebeyler ·
https://help.github.com/en/articles/licensing-a-repository

> Public repositories on GitHub are often used to share open source software. For your repository to truly be open source, you'll need to license it so that others are free to use, change, and distribute the software.
👍  , ,
properties (23)
authoremrebeyler
permlinkpu8rp6
categoryepicdice
json_metadata{"tags":["epicdice"],"links":["https://help.github.com/en/articles/licensing-a-repository"],"app":"steemit/0.1"}
created2019-07-06 22:27:03
last_update2019-07-06 22:27:03
depth3
children0
last_payout2019-07-13 22:27: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_length277
author_reputation448,528,959,341,273
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,911,039
net_rshares18,393,199,153
author_curate_reward""
vote details (3)
@epicdice ·
Thanks for pointing that out!
👎  
properties (23)
authorepicdice
permlinkpu93sx
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-07 02:48:33
last_update2019-07-07 02:48:33
depth2
children0
last_payout2019-07-14 02:48: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_length29
author_reputation120,950,487,102,911
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id87,919,914
net_rshares-272,459,164
author_curate_reward""
vote details (1)
@fairbet ·
$0.05
The Steem Gamblers Association approves your move towards transparency and openness. Keep up the good work!
👍  
properties (23)
authorfairbet
permlinkpucq8j
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-09 01:45:57
last_update2019-07-09 01:45:57
depth1
children1
last_payout2019-07-16 01:45:57
cashout_time1969-12-31 23:59:59
total_payout_value0.040 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length107
author_reputation2,386,195,101,420
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,029,799
net_rshares133,879,610,167
author_curate_reward""
vote details (1)
@epicdice ·
Thanks for the support!
properties (22)
authorepicdice
permlinkpudqg0
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-09 14:48:03
last_update2019-07-09 14:48:03
depth2
children0
last_payout2019-07-16 14:48: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_length23
author_reputation120,950,487,102,911
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id88,062,332
net_rshares0
@jekhy ·
EpicDice is Open Source now
Thanks for the post[.](https://koreanfoodie.me/88)
properties (22)
authorjekhy
permlinkre-epicdice-epicdice-is-open-source-now-20190710t153557225z
categoryepicdice
json_metadata{"tags":["just_a_test"]}
created2019-07-10 15:35:57
last_update2019-07-10 15:35:57
depth1
children0
last_payout2019-07-17 15:35: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_length50
author_reputation-110,666,590,404
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,119,116
net_rshares0
@jyotigajjar ·
It's look interesting
👎  ,
properties (23)
authorjyotigajjar
permlinkpub2v3
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-08 04:23:24
last_update2019-07-08 04:23:24
depth1
children0
last_payout2019-07-15 04:23:24
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_length21
author_reputation145,649,625
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,977,337
net_rshares-88,133,050,544
author_curate_reward""
vote details (2)
@lokiyngling ·
I am @themarkymark
👍  , , ,
👎  
properties (23)
authorlokiyngling
permlinkpu8er5
categoryepicdice
json_metadata{"tags":["epicdice"],"users":["themarkymark"],"app":"steemit/0.1"}
created2019-07-06 17:47:30
last_update2019-07-06 17:47:30
depth1
children1
last_payout2019-07-13 17:47: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_length18
author_reputation72,697,252,570,891
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,901,990
net_rshares5,219,864,721
author_curate_reward""
vote details (5)
@odeis50 ·
It will be fun....is it free
👎  
properties (23)
authorodeis50
permlinkpu8irs
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-06 19:14:18
last_update2019-07-06 19:14:18
depth2
children0
last_payout2019-07-13 19:14: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_length28
author_reputation-708,987,764,524
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,905,049
net_rshares-916,938,389
author_curate_reward""
vote details (1)
@oppongk ·
$0.07
Thank you @epicdice for your vivid explanation of  the nitty-gritty of this game, I really love the way you came out of your measures and opening up things clearly. That is really good to go with it we hope to enjoy best out it!
👍  ,
properties (23)
authoroppongk
permlinkpu807y
categoryepicdice
json_metadata{"tags":["epicdice"],"users":["epicdice"],"app":"steemit/0.1"}
created2019-07-06 12:24:09
last_update2019-07-06 12:24:09
depth1
children3
last_payout2019-07-13 12:24:09
cashout_time1969-12-31 23:59:59
total_payout_value0.052 HBD
curator_payout_value0.017 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length228
author_reputation74,702,178,229,800
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,889,231
net_rshares166,012,993,295
author_curate_reward""
vote details (2)
@coininstant ·
properties (23)
authorcoininstant
permlinkpuahvc
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-07 20:50:00
last_update2019-07-07 20:50:00
depth2
children1
last_payout2019-07-14 20:50: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_length1
author_reputation87,380,255,426,398
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,959,240
net_rshares-77,251,796,787
author_curate_reward""
vote details (3)
@abusereports ·
### WARNING: IF YOU REPLY TO THIS ACCOUNT YOU WILL BE FLAGGED, YOUR REP HARMED AND ALL OF YOUR REWARDS REMOVED.  DO NOT ENGAGE WITH THE TRASH. YOU HAVE BEEN WARNED
properties (22)
authorabusereports
permlinkabusereports-re-coininstantpuahvc
categoryepicdice
json_metadata""
created2019-07-07 20:50:21
last_update2019-07-07 20:50:21
depth3
children0
last_payout2019-07-14 20:50: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_length163
author_reputation199,407,425,243,286
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,959,260
net_rshares0
@epicdice ·
Transparency and fairness has been, and always will be our top priority in our code of conduct. Thanks for the love.
👎  
properties (23)
authorepicdice
permlinkpu93wt
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-07 02:50:54
last_update2019-07-07 02:50:54
depth2
children0
last_payout2019-07-14 02:50: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_length116
author_reputation120,950,487,102,911
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id87,919,979
net_rshares-916,577,491
author_curate_reward""
vote details (1)
@phonetix ·
Great post! I found it really interesting,  what language did you code it in?

Posted using [Partiko Android](https://partiko.app/referral/phonetix)
properties (22)
authorphonetix
permlinkphonetix-re-epicdice-epicdice-is-open-source-now-20190709t095415113z
categoryepicdice
json_metadata{"app":"partiko","client":"android"}
created2019-07-09 09:54:15
last_update2019-07-09 09:54:15
depth1
children0
last_payout2019-07-16 09:54: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_length148
author_reputation4,840,039,755,017
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id88,048,902
net_rshares0
@ronel ·
$0.03
This post has been resteemed!
Good luck!
👍  
properties (23)
authorronel
permlinkpu8whc
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-07 00:10:27
last_update2019-07-07 00:10:27
depth1
children2
last_payout2019-07-14 00:10:27
cashout_time1969-12-31 23:59:59
total_payout_value0.019 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation11,323,178,531,328
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id87,914,297
net_rshares61,069,550,191
author_curate_reward""
vote details (1)
@coininstant ·
properties (23)
authorcoininstant
permlinkpua8zi
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-07 17:38:06
last_update2019-07-07 17:38:06
depth2
children1
last_payout2019-07-14 17:38: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_length1
author_reputation87,380,255,426,398
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,951,159
net_rshares-83,982,831,971
author_curate_reward""
vote details (5)
@abusereports ·
### WARNING: IF YOU REPLY TO THIS ACCOUNT YOU WILL BE FLAGGED, YOUR REP HARMED AND ALL OF YOUR REWARDS REMOVED.  DO NOT ENGAGE WITH THE TRASH. YOU HAVE BEEN WARNED
properties (22)
authorabusereports
permlinkabusereports-re-coininstantpua8zi
categoryepicdice
json_metadata""
created2019-07-07 17:38:21
last_update2019-07-07 17:38:21
depth3
children0
last_payout2019-07-14 17:38: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_length163
author_reputation199,407,425,243,286
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,951,171
net_rshares0
@sneaky-ninja ·
re-epicdice-epicdice-is-open-source-now-20190706t090210803z
![Sneaky-Ninja-Throwing-Coin 125px.jpg](https://cdn.steemitimages.com/DQmV3FB2y7KDREKaiCm8FqXJewWyA6he9f4nuMYX7CdFKH8/Sneaky-Ninja-Throwing-Coin%20125px.jpg)
Defended (74.50%)
Summoned by @epictoken 
Sneaky Ninja supports @youarehope and @tarc with a percentage of all bids.
[Everything You Need To Know About Sneaky Ninja](https://steemit.com/steemit/@sneaky-ninja/everything-you-need-to-know-about-sneaky-ninja)
<br>
woosh
properties (22)
authorsneaky-ninja
permlinkre-epicdice-epicdice-is-open-source-now-20190706t090210803z
categoryepicdice
json_metadata{"app":"postpromoter/2.0.0"}
created2019-07-06 09:02:12
last_update2019-07-06 09:02:12
depth1
children2
last_payout2019-07-13 09:02: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_length425
author_reputation6,929,108,306,933
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,884,416
net_rshares0
@coininstant ·
properties (23)
authorcoininstant
permlinkpua91b
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-07 17:39:15
last_update2019-07-07 17:39:15
depth2
children1
last_payout2019-07-14 17:39: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_length1
author_reputation87,380,255,426,398
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,951,225
net_rshares-75,902,500,324
author_curate_reward""
vote details (3)
@abusereports ·
### WARNING: IF YOU REPLY TO THIS ACCOUNT YOU WILL BE FLAGGED, YOUR REP HARMED AND ALL OF YOUR REWARDS REMOVED.  DO NOT ENGAGE WITH THE TRASH. YOU HAVE BEEN WARNED
properties (22)
authorabusereports
permlinkabusereports-re-coininstantpua91b
categoryepicdice
json_metadata""
created2019-07-07 17:39:30
last_update2019-07-07 17:39:30
depth3
children0
last_payout2019-07-14 17:39: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_length163
author_reputation199,407,425,243,286
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,951,240
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/posts.png?201907060719"></td><td>You published more than 20 posts. Your next target is to reach 30 posts.</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>


To support your work, I also upvoted your post!


###### [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-20190706t075129000z
categoryepicdice
json_metadata{"image":["https://steemitboard.com/img/notify.png"]}
created2019-07-06 07:51:27
last_update2019-07-06 07:51:27
depth1
children2
last_payout2019-07-13 07:51: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_length887
author_reputation38,975,615,169,260
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,882,520
net_rshares0
@coininstant ·
properties (23)
authorcoininstant
permlinkpua90f
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-07 17:38:39
last_update2019-07-07 17:38:39
depth2
children1
last_payout2019-07-14 17:38:39
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_length1
author_reputation87,380,255,426,398
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,951,190
net_rshares-76,228,996,850
author_curate_reward""
vote details (4)
@abusereports ·
### WARNING: IF YOU REPLY TO THIS ACCOUNT YOU WILL BE FLAGGED, YOUR REP HARMED AND ALL OF YOUR REWARDS REMOVED.  DO NOT ENGAGE WITH THE TRASH. YOU HAVE BEEN WARNED
properties (22)
authorabusereports
permlinkabusereports-re-coininstantpua90f
categoryepicdice
json_metadata""
created2019-07-07 17:38:57
last_update2019-07-07 17:38:57
depth3
children0
last_payout2019-07-14 17:38: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_length163
author_reputation199,407,425,243,286
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,951,206
net_rshares0
@swiftcash ·
You received a 10.00% complementary upvote from @swiftcash 🤑 
To stop similar upvotes from @swiftcash, reply `STOP`.
👍  
👎  
properties (23)
authorswiftcash
permlinkepicdice-is-open-source-now
categoryepicdice
json_metadata""
created2019-07-06 06:41:15
last_update2019-07-06 06:41:15
depth1
children0
last_payout2019-07-13 06:41: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_length116
author_reputation23,950,896,230,247
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,880,589
net_rshares-414,124,821
author_curate_reward""
vote details (2)
@tipu ·
This post is supported by $33.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 (23)
authortipu
permlinkre-epicdice-is-open-source-now-20190706t064132
categoryepicdice
json_metadata""
created2019-07-06 06:41:33
last_update2019-07-06 06:41:33
depth1
children0
last_payout2019-07-13 06:41: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_length498
author_reputation55,902,105,514,997
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,880,599
net_rshares47,062,475,149
author_curate_reward""
vote details (3)
@uttamblogs ·
Thank you for telling us about this game we all will surely go for it.
👍  
👎  
properties (23)
authoruttamblogs
permlinkpu9tyj
categoryepicdice
json_metadata{"tags":["epicdice"],"app":"steemit/0.1"}
created2019-07-07 12:13:39
last_update2019-07-07 12:13:39
depth1
children0
last_payout2019-07-14 12:13:39
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_length70
author_reputation213,623,573,191
root_title"EpicDice is Open Source now"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id87,936,669
net_rshares-365,621,417
author_curate_reward""
vote details (2)