#### Repository https://github.com/nnmix/py-magicdice-bot #### What Will I Learn? - You will learn to automate a @magicdice Bot given your own rules - You will learn to use Steem - Python Lib - You will learn to program your own 'Rule Based' dice rolls [](https://magic-dice.com/?ref=aro.steem) #### Requirements ##### Personal Prerequisite - **Existing** [STEEM Account](https://www.steemit.com/)  ##### System prerequisites: - [Jupyter](https://jupyter.org/) notebook for python ##### Knowledge prerequisites: - Basic understanding of python programming #### Difficulty - Intermediate #### Description In this tutorial you will get the ability to automate your own flavored Dice Roller Bot for @magicdice on STEEM #### Content Before getting to the python scripting section you will need a STEEM account token to be used. ##### 1. STEEM Account - Private Active Keys ##### 2. Jupyter / Python * You can access Jupyter [Online](https://jupyter.org/try) or [Intall](https://jupyter.org/install.html) it locally on your PC * When done open a new python file:  * When the file is open, if you are on the online version, you can delete existing sample cell by clicking the cell border (blue highlight) than double pressing 'D'  Until you have an empty cell to write your script within:  * Now your jupyter editor is up you can start typing your code and run it by pressing **ctrl+enter** ##### 3. [Magic Dice](https://magic-dice.com/?ref=aro.steem) Roller/ Python Let us start talking about the magicdice roller implementation * Using [Python Steem Lib](https://steem.readthedocs.io/en/latest/install.html) (pip install steem) * First Doing The Dice Roll by sending a transaction with Memo inside containing - the bet STEEM amount - the target with 'under' or 'over' - the client rand seed which is a sha256 of a random of length 10   * Then Wait For An Incoming Transaction Result From Magic Dice:  ```` # Magic Dice Roll Script Sample # Replace <private active keys by yours> from steem import Steem import hashlib, binascii, random, time def randhash(): m = hashlib.sha256() m.update((str(random.randint(1,101)*time.time())).encode('utf-8')) m.update((m.hexdigest() + str(random.randint(1,101))).encode('utf-8')) x = m.hexdigest() return x[2:12] def newTx(s, amount, direction, target): randh = randhash() query = "{0} {1} {2}".format(direction, target, randh) s.commit.transfer('magicdice',amount,'STEEM', memo = query, account="aro.steem") return randh def roll(steem, amt) : randh = newTx(steem, amt, 'under', 30) txId = '-1' won = 0 randh = str(randh) # wait for the tx id while True : dta = steem.get_account_history('aro.steem', index_from=-1, limit=20) for i in range(len(dta)): dd = dta[i][1] if dd['op'][0] == 'transfer' and dd['op'][1]['to'] == 'magicdice' and dd['op'][1]['memo'].find(randh) > -1: txId = str(dd['trx_id']) break if str(txId) != '-1': break time.sleep(2) # wait for the result while True : dta = steem.get_account_history('aro.steem', index_from=-1, limit=20) for i in range(len(dta)): dd = dta[i][1] if dd['op'][0] == 'transfer' and dd['op'][1]['from'] == 'magicdice' and dd['op'][1]['memo'].find(txId) > -1: if dd['op'][1]['amount'] == '0.001 STEEM': won = -1 else: won = 1 break if won != 0: break time.sleep(2) return txId, won, randh s = Steem(keys=["<private active keys>", "<private active keys>"]) st = time.time() # do one dice roll txId, won, randh = roll(s, 0.1) et = time.time() # show results: wait time, transaction Id, win as 1 and lost as -1 print(et - st, txId, won) ```` #### The End! Finally most of the steps are covered, it is your time to configure your own rules / algorithm that may give you your optimal winning payouts. **Feel free** to share and list your own automation python bot script on the project github project page with your fresh good results for others to try ! #### Related - [My steemit announcement: https://steemit.com/utopian-io/@aro.steem/dice-roller-bot-python-primedice) #### Proof of Work Done https://github.com/nnmix/py-magicdice-bot/blob/master/script.py
author | aro.steem | ||||||
---|---|---|---|---|---|---|---|
permlink | python-magic-dice-roller | ||||||
category | utopian-io | ||||||
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io","tutorials","magicdice","busy","python"],"users":["magicdice","aro.steem"],"links":["https://github.com/nnmix/py-magicdice-bot","/@magicdice","https://magic-dice.com/?ref=aro.steem","https://www.steemit.com/","https://jupyter.org/","/@magicdice","https://jupyter.org/try","https://jupyter.org/install.html","https://magic-dice.com/?ref=aro.steem","https://steem.readthedocs.io/en/latest/install.html"],"image":["https://ipfs.busy.org/ipfs/QmY2MeYeW9wdef5g3jQJvowC1FF1ZxQoJwR459TPoaxTHJ","https://cdn.steemitimages.com/DQmbDGEdyn9Fa9cR57EPAvKUtnZVP3tJMrmc7oBhX18ixSb/image.png","https://cdn.steemitimages.com/DQmYGetfkacNcxCyftrR9AqGWU9444UfnzasdkSiggcBPE2/image.png","https://cdn.steemitimages.com/DQmR6iKAeyV4nx2e83dECAJTrNCbjwiZ6qV8ahPjFjjmqmG/image.png","https://cdn.steemitimages.com/DQmbttAp2p6xcqCpzut1mCcDbPpGFPNAA6Jt23V2UW6ihKW/image.png","https://cdn.steemitimages.com/DQmQc1N8gbm2B6MWJdTgz39hWVfTyJrdLb4pNov6WBFfHMY/image.png","https://cdn.steemitimages.com/DQme62oxVKHpi2xN1yVMCQKvyi3v74wJZnMTK3SSkiciwQ5/image.png","https://cdn.steemitimages.com/DQmRGhhhg3pjF4xTKKaYMKs6Z49Vmw9i3aSaxQZ2yFGQ2yA/image.png"]} | ||||||
created | 2019-03-24 14:53:57 | ||||||
last_update | 2019-03-24 14:56:57 | ||||||
depth | 0 | ||||||
children | 11 | ||||||
last_payout | 2019-03-31 14:53:57 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 6.320 HBD | ||||||
curator_payout_value | 2.139 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 5,250 | ||||||
author_reputation | 13,589,686,925,958 | ||||||
root_title | "Python - Magic Dice Roller π²" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 81,858,045 | ||||||
net_rshares | 14,156,789,353,385 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tombstone | 0 | 599,940,631,243 | 2.62% | ||
dana-edwards | 0 | 315,805,344,103 | 100% | ||
kaylinart | 0 | 201,634,429,590 | 100% | ||
theadmiral | 0 | 394,570,449 | 100% | ||
rufans | 0 | 21,327,671,041 | 100% | ||
benadapt | 0 | 487,658,339 | 100% | ||
fordmogul | 0 | 467,887,957 | 100% | ||
ubik | 0 | 385,665,966 | 100% | ||
bmining | 0 | 443,346,092 | 100% | ||
busy.org | 0 | 148,679,666 | 0.77% | ||
thestar | 0 | 433,684,517 | 100% | ||
tilenpirih | 0 | 413,888,933 | 100% | ||
jga | 0 | 337,528,652 | 3.27% | ||
helo | 0 | 32,427,314,213 | 13.17% | ||
droucil | 0 | 386,078,270 | 100% | ||
iotas | 0 | 433,613,490 | 100% | ||
corono | 0 | 432,860,503 | 100% | ||
manchupichu | 0 | 433,498,245 | 100% | ||
booster | 0 | 2,231,884,822,293 | 5.47% | ||
chandu91 | 0 | 387,344,350 | 100% | ||
renat242 | 0 | 386,430,655 | 100% | ||
fano | 0 | 433,030,940 | 100% | ||
senro888 | 0 | 432,772,202 | 100% | ||
protons | 0 | 439,770,901 | 100% | ||
normad | 0 | 433,504,640 | 100% | ||
shapar | 0 | 432,759,920 | 100% | ||
noguard | 0 | 521,553,429 | 100% | ||
hknyasar | 0 | 407,123,220 | 100% | ||
nasau | 0 | 521,389,720 | 100% | ||
saruman | 0 | 433,449,038 | 100% | ||
floass | 0 | 433,414,152 | 100% | ||
laseemu | 0 | 521,216,596 | 100% | ||
huahua | 0 | 456,387,079 | 100% | ||
jeffjaxx | 0 | 476,183,927 | 100% | ||
d0wr0 | 0 | 434,969,626 | 100% | ||
protus88 | 0 | 495,442,670 | 100% | ||
tutoti | 0 | 495,633,758 | 100% | ||
randcorp | 0 | 495,637,087 | 100% | ||
mozom | 0 | 434,973,513 | 100% | ||
horizone | 0 | 499,740,366 | 100% | ||
seasa | 0 | 456,143,727 | 100% | ||
hougi | 0 | 456,069,511 | 100% | ||
nasso | 0 | 455,948,623 | 100% | ||
xom | 0 | 455,819,921 | 100% | ||
nnu | 0 | 454,413,023 | 100% | ||
shibah | 0 | 434,401,030 | 100% | ||
jaxxx | 0 | 434,523,745 | 100% | ||
hg343 | 0 | 434,354,424 | 100% | ||
quee | 0 | 476,387,534 | 100% | ||
yul | 0 | 495,662,289 | 100% | ||
herozero | 0 | 434,787,995 | 100% | ||
nakita | 0 | 434,599,519 | 100% | ||
zuvelt521 | 0 | 453,759,542 | 100% | ||
khobi7 | 0 | 424,756,318 | 100% | ||
nairamallam | 0 | 384,684,202 | 100% | ||
kawj | 0 | 433,898,254 | 100% | ||
dand | 0 | 454,083,220 | 100% | ||
plotn | 0 | 476,524,410 | 100% | ||
littlemaster | 0 | 453,893,755 | 100% | ||
olegnator | 0 | 399,330,942 | 100% | ||
shadd | 0 | 432,551,974 | 100% | ||
ritkaan | 0 | 444,757,767 | 100% | ||
mysteemvote | 0 | 428,362,803 | 100% | ||
fahmidamti | 0 | 410,038,881 | 100% | ||
gambit.coin | 0 | 1,016,534,636 | 100% | ||
daff | 0 | 436,011,809 | 100% | ||
codingdefined | 0 | 18,710,464,195 | 13.17% | ||
cryptobabes | 0 | 431,331,989 | 100% | ||
smy | 0 | 399,399,510 | 100% | ||
themarkymark | 0 | 286,766,546,689 | 24% | ||
dickysaputra | 0 | 456,444,715 | 100% | ||
juleskajimenez | 0 | 455,111,218 | 100% | ||
piligrim | 0 | 247,430,501 | 50% | ||
awww | 0 | 412,880,296 | 100% | ||
ephedrin401 | 0 | 467,111,634 | 100% | ||
morous70 | 0 | 445,475,601 | 100% | ||
abubakarefty | 0 | 378,976,472 | 100% | ||
hobo66 | 0 | 435,587,528 | 100% | ||
leir | 0 | 2,123,840,823 | 50% | ||
crypto-futurist | 0 | 426,859,202 | 100% | ||
voloshyn | 0 | 486,914,448 | 100% | ||
mitf | 0 | 462,622,255 | 100% | ||
dynie | 0 | 434,225,104 | 100% | ||
ddangerwu | 0 | 498,928,377 | 100% | ||
mhmegh | 0 | 498,213,899 | 100% | ||
ivrmakers | 0 | 411,418,179 | 100% | ||
endless.drugs | 0 | 452,165,266 | 100% | ||
tids | 0 | 434,475,851 | 100% | ||
sigmond | 0 | 456,156,831 | 100% | ||
robow | 0 | 434,870,789 | 100% | ||
morrigan | 0 | 413,803,702 | 100% | ||
hdemir | 0 | 508,086,684 | 100% | ||
kazish | 0 | 499,442,526 | 100% | ||
kypy24 | 0 | 445,673,645 | 100% | ||
espoem | 0 | 149,351,423,988 | 74% | ||
moemyint | 0 | 418,125,366 | 100% | ||
zolindvalp | 0 | 448,035,656 | 100% | ||
mrs.roy | 0 | 406,976,049 | 100% | ||
mcfarhat | 0 | 10,004,533,066 | 5.26% | ||
mytik | 0 | 454,181,513 | 100% | ||
micaldaviddin | 0 | 388,030,630 | 100% | ||
kmitina | 0 | 419,259,945 | 100% | ||
davidpakman | 0 | 276,950,250,349 | 100% | ||
renatomacedo | 0 | 437,509,300 | 100% | ||
princeola | 0 | 462,447,991 | 100% | ||
charlesmore143 | 0 | 423,959,512 | 100% | ||
meedezz | 0 | 496,621,641 | 100% | ||
adigun-anjola | 0 | 430,338,307 | 100% | ||
hunzlakhan | 0 | 431,069,441 | 100% | ||
ashishdash | 0 | 450,400,780 | 100% | ||
adwas33 | 0 | 453,176,288 | 100% | ||
ivysrono | 0 | 475,335,784 | 100% | ||
holabisi | 0 | 386,869,678 | 100% | ||
utopian-io | 0 | 7,885,215,642,847 | 6.55% | ||
painter3d | 0 | 487,369,497 | 100% | ||
mariappan | 0 | 373,267,450 | 100% | ||
jaff8 | 0 | 32,292,488,389 | 13.17% | ||
soulinsiders | 0 | 379,595,374 | 100% | ||
bestshamim2020 | 0 | 475,899,975 | 100% | ||
chan16735 | 0 | 425,132,721 | 100% | ||
kaderkhan | 0 | 421,976,985 | 100% | ||
steemfuture | 0 | 412,287,031 | 100% | ||
masanam | 0 | 432,640,442 | 100% | ||
marccage833 | 0 | 398,316,216 | 100% | ||
lerass | 0 | 472,691,754 | 100% | ||
phuoc.hong95 | 0 | 423,922,191 | 100% | ||
maria86 | 0 | 466,363,914 | 100% | ||
crypt0boiler | 0 | 489,308,662 | 100% | ||
steemcafe | 0 | 157,349,664,886 | 100% | ||
samir1993 | 0 | 426,763,697 | 100% | ||
jason482 | 0 | 503,509,826 | 100% | ||
demiro86 | 0 | 517,289,340 | 100% | ||
hassanics | 0 | 482,605,922 | 100% | ||
newsrx | 0 | 74,021,702 | 6.29% | ||
resteemyourpost | 0 | 406,286,935 | 100% | ||
jokers | 0 | 490,149,974 | 100% | ||
rromian | 0 | 393,360,993 | 100% | ||
bishalacharya | 0 | 491,128,067 | 100% | ||
mrakeshrex | 0 | 489,529,576 | 100% | ||
itsmikechu | 0 | 481,269,565 | 100% | ||
resteem-bot | 0 | 479,328,736 | 100% | ||
mohammadsafwan | 0 | 453,885,566 | 100% | ||
niharikalove | 0 | 453,053,686 | 100% | ||
zubzero | 0 | 427,887,827 | 100% | ||
johnny-appleseed | 0 | 171,894,776,076 | 100% | ||
peterruck | 0 | 486,451,245 | 100% | ||
luckyjuly24 | 0 | 385,067,884 | 100% | ||
barrabass123 | 0 | 500,850,661 | 100% | ||
minatubo | 0 | 456,287,878 | 100% | ||
masumalucky | 0 | 512,381,306 | 100% | ||
mesafe | 0 | 108,955,410 | 2% | ||
evananisa | 0 | 387,729,220 | 100% | ||
ecoman1 | 0 | 446,730,211 | 100% | ||
thecryptoboy | 0 | 381,802,580 | 100% | ||
bitcoinmining | 0 | 486,447,676 | 100% | ||
andymoonpie | 0 | 378,622,684 | 100% | ||
marathaking | 0 | 480,408,335 | 100% | ||
sefalist | 0 | 443,692,936 | 100% | ||
snowmanmedia | 0 | 493,096,830 | 100% | ||
yhaulez | 0 | 381,083,903 | 100% | ||
appu6748uooyr | 0 | 399,582,867 | 100% | ||
jhonniq | 0 | 407,233,326 | 100% | ||
alfi1212 | 0 | 442,048,873 | 100% | ||
ohi786 | 0 | 391,633,109 | 100% | ||
mosaddekursakib | 0 | 417,654,872 | 100% | ||
pporet | 0 | 482,413,356 | 100% | ||
jannatrina | 0 | 443,256,081 | 100% | ||
jimmyjemsx | 0 | 439,976,701 | 100% | ||
bacabaca | 0 | 415,330,689 | 100% | ||
andreeamta | 0 | 400,881,471 | 100% | ||
fahrizalarif1995 | 0 | 511,540,961 | 100% | ||
drmax | 0 | 443,572,685 | 100% | ||
lostmine27 | 0 | 11,123,750,024 | 25% | ||
supeer | 0 | 408,794,491 | 100% | ||
herioswal | 0 | 447,013,894 | 100% | ||
mdomorfaruk9911 | 0 | 513,896,710 | 100% | ||
flashfiction | 0 | 1,539,788,042 | 50% | ||
detromix87 | 0 | 479,788,948 | 100% | ||
cryptopimp | 0 | 433,707,163 | 100% | ||
guardianofsteem | 0 | 437,783,992 | 100% | ||
earthpix | 0 | 427,317,562 | 100% | ||
public.library | 0 | 486,818,564 | 100% | ||
animefanrd | 0 | 485,234,749 | 100% | ||
dieley | 0 | 388,843,628 | 100% | ||
salmanrauf | 0 | 448,612,322 | 100% | ||
gnchmurat | 0 | 2,848,377,465 | 100% | ||
arggil | 0 | 457,061,462 | 100% | ||
scottandrew201 | 0 | 476,362,089 | 100% | ||
darkreunion | 0 | 469,203,242 | 100% | ||
smartypants | 0 | 496,127,954 | 100% | ||
amosbastian | 0 | 47,868,558,804 | 13.17% | ||
faruqomer | 0 | 657,956,764 | 100% | ||
sanakhan1920 | 0 | 498,116,984 | 100% | ||
eng.ramy | 0 | 486,638,399 | 100% | ||
maixa | 0 | 443,041,993 | 100% | ||
imnotasenuelo | 0 | 431,434,394 | 100% | ||
davidvargas | 0 | 501,779,917 | 100% | ||
kdforlife | 0 | 483,975,515 | 100% | ||
saidelbouchri | 0 | 424,793,657 | 100% | ||
mohcinedraou | 0 | 497,601,924 | 100% | ||
yonnel | 0 | 406,879,550 | 100% | ||
indronill | 0 | 393,311,562 | 100% | ||
coffefrees | 0 | 429,817,450 | 100% | ||
fernax77 | 0 | 442,780,559 | 100% | ||
arslanshn | 0 | 479,124,730 | 100% | ||
animad | 0 | 399,153,807 | 100% | ||
nickibanjlady | 0 | 447,045,897 | 100% | ||
chemi2712 | 0 | 425,269,342 | 100% | ||
aaron7 | 0 | 444,253,133 | 100% | ||
coldfriction | 0 | 504,635,284 | 100% | ||
baycan | 0 | 6,452,553,706 | 100% | ||
m1alsan | 0 | 453,398,309 | 100% | ||
dippa | 0 | 390,025,725 | 100% | ||
fantasyman | 0 | 445,402,154 | 100% | ||
iliasjourney | 0 | 429,908,628 | 100% | ||
sani1189 | 0 | 442,558,660 | 100% | ||
elgatohuelepega | 0 | 425,221,359 | 100% | ||
kartheekh | 0 | 382,123,675 | 100% | ||
jiashin | 0 | 391,485,193 | 100% | ||
portugalcoin | 0 | 14,718,239,202 | 15% | ||
nashbe | 0 | 388,201,929 | 100% | ||
cebuladeals | 0 | 443,275,207 | 100% | ||
fusionnuclear | 0 | 373,898,341 | 100% | ||
yan.andy | 0 | 496,586,427 | 100% | ||
appone | 0 | 504,662,576 | 100% | ||
wingchun | 0 | 446,851,676 | 100% | ||
cybettex100 | 0 | 468,676,949 | 100% | ||
andresfer0310 | 0 | 421,663,514 | 100% | ||
exbroker | 0 | 384,049,544 | 100% | ||
charismatics | 0 | 391,246,415 | 100% | ||
mashab76 | 0 | 413,061,533 | 100% | ||
johnleon | 0 | 515,680,502 | 100% | ||
sargoon | 0 | 139,327,813 | 3.14% | ||
antomil | 0 | 400,351,007 | 100% | ||
neljav975 | 0 | 440,860,795 | 100% | ||
tobias-g | 0 | 131,030,482,138 | 38% | ||
erpachon | 0 | 491,809,164 | 100% | ||
krommus | 0 | 429,890,234 | 100% | ||
deril | 0 | 442,285,192 | 100% | ||
investfourmore | 0 | 194,844,244,319 | 100% | ||
kaoutar | 0 | 509,524,652 | 100% | ||
uzercanan | 0 | 548,268,959 | 100% | ||
transilvaniaman | 0 | 443,374,645 | 100% | ||
mrtt | 0 | 406,909,922 | 100% | ||
technicalbero | 0 | 402,269,432 | 100% | ||
kulsego | 0 | 489,456,237 | 100% | ||
tomalone | 0 | 438,345,882 | 100% | ||
ankur310794 | 0 | 416,613,519 | 100% | ||
tofe | 0 | 468,478,286 | 100% | ||
kral789 | 0 | 387,259,624 | 100% | ||
miniklady | 0 | 3,687,501,317 | 100% | ||
mctursh | 0 | 449,232,907 | 100% | ||
intellihandling | 0 | 5,751,830,454 | 100% | ||
used-lessboy | 0 | 176,945,412 | 50% | ||
cateyes1990 | 0 | 512,600,978 | 100% | ||
tahirmahmood | 0 | 488,367,671 | 100% | ||
abdullah1143 | 0 | 434,465,782 | 100% | ||
vicrivasr | 0 | 440,914,508 | 100% | ||
jeffersonsalcedo | 0 | 425,914,442 | 100% | ||
treasoner13 | 0 | 383,761,400 | 100% | ||
rijalsaugat75 | 0 | 435,452,565 | 100% | ||
kshitizraj | 0 | 468,712,682 | 100% | ||
ajose300 | 0 | 423,199,729 | 100% | ||
tejacode | 0 | 380,357,637 | 100% | ||
luish | 0 | 390,128,259 | 100% | ||
mystic074 | 0 | 431,346,838 | 100% | ||
indertat | 0 | 529,040,325 | 100% | ||
sameershaikh | 0 | 500,655,656 | 100% | ||
promoteus | 0 | 251,406,604 | 50% | ||
shaiktabassum | 0 | 443,753,841 | 100% | ||
maugly | 0 | 486,773,127 | 100% | ||
johannesbaumer | 0 | 394,507,016 | 100% | ||
danishmobeen | 0 | 447,045,125 | 100% | ||
ifunanyaikemma | 0 | 166,010,779 | 50% | ||
nurulsafitri | 0 | 444,069,255 | 100% | ||
sobluecloud | 0 | 385,671,697 | 100% | ||
kshitizrun | 0 | 475,480,475 | 100% | ||
pikar | 0 | 489,726,032 | 100% | ||
egon80 | 0 | 480,775,837 | 100% | ||
tblaze | 0 | 528,939,517 | 100% | ||
waklay | 0 | 453,086,179 | 100% | ||
jvff | 0 | 467,548,346 | 100% | ||
yemi90210 | 0 | 444,809,383 | 100% | ||
aress | 0 | 451,782,514 | 100% | ||
khann001 | 0 | 87,925,667 | 50% | ||
bilall | 0 | 483,349,046 | 100% | ||
nrose1234 | 0 | 423,519,323 | 100% | ||
sreeram661 | 0 | 421,698,298 | 100% | ||
mariaes | 0 | 404,290,271 | 100% | ||
pampel | 0 | 446,075,302 | 100% | ||
brave-michael | 0 | 449,635,098 | 100% | ||
sanzib | 0 | 436,635,143 | 100% | ||
loraanasta | 0 | 382,972,499 | 100% | ||
yadeshina | 0 | 250,687,527 | 50% | ||
superexplorer | 0 | 478,385,842 | 100% | ||
starlord28 | 0 | 420,467,638 | 100% | ||
marielitux | 0 | 446,431,749 | 100% | ||
slice223 | 0 | 441,146,446 | 100% | ||
deewhy07 | 0 | 453,313,340 | 100% | ||
imranpavel | 0 | 451,275,488 | 100% | ||
jvssdrevanth | 0 | 478,544,565 | 100% | ||
vhmcrypto | 0 | 398,560,289 | 100% | ||
fs-pyrotechnik | 0 | 501,453,263 | 100% | ||
awais33 | 0 | 247,770,931 | 50% | ||
sidneybrown | 0 | 459,180,357 | 100% | ||
anof | 0 | 494,685,403 | 100% | ||
henrydatei | 0 | 447,716,094 | 100% | ||
johjandri | 0 | 239,552,686 | 50% | ||
anikpolash | 0 | 392,788,588 | 100% | ||
leandros | 0 | 449,290,240 | 100% | ||
ayman123 | 0 | 424,432,613 | 100% | ||
rebelcrypto | 0 | 485,176,137 | 100% | ||
valeriaquiaro | 0 | 459,122,883 | 100% | ||
abuzar1 | 0 | 434,068,398 | 100% | ||
duchess1 | 0 | 401,041,907 | 100% | ||
adit9 | 0 | 448,762,502 | 100% | ||
eldontang | 0 | 421,745,578 | 100% | ||
untitledvzla | 0 | 453,794,373 | 100% | ||
sadiksalad | 0 | 387,363,148 | 100% | ||
steemdog | 0 | 495,688,772 | 100% | ||
jorgebgt | 0 | 453,829,901 | 100% | ||
ret | 0 | 487,937,167 | 100% | ||
iamthelonewolf | 0 | 403,329,816 | 100% | ||
hasiburrahman | 0 | 393,946,643 | 100% | ||
votemachine | 0 | 426,731,200 | 100% | ||
christinelakra | 0 | 483,413,228 | 100% | ||
vibhor-stm01 | 0 | 452,808,321 | 100% | ||
ajmalkhaan | 0 | 443,947,140 | 100% | ||
mikersantana1 | 0 | 411,901,143 | 100% | ||
xararzx95 | 0 | 485,241,952 | 100% | ||
shanu123 | 0 | 445,976,136 | 100% | ||
pryde | 0 | 486,068,745 | 100% | ||
plumberr | 0 | 416,176,917 | 100% | ||
mintu999 | 0 | 387,575,971 | 100% | ||
mehedirasel | 0 | 453,720,546 | 100% | ||
heristeem | 0 | 402,611,808 | 100% | ||
pgraval | 0 | 455,710,884 | 100% | ||
diego01798 | 0 | 443,668,775 | 100% | ||
nwyrk | 0 | 444,068,019 | 100% | ||
albertozain22 | 0 | 490,896,104 | 100% | ||
neregon | 0 | 447,771,921 | 100% | ||
steemhispano | 0 | 128,427,280 | 30% | ||
checo | 0 | 492,119,381 | 100% | ||
losmosqueteros | 0 | 432,081,901 | 100% | ||
realawesomeness | 0 | 477,920,970 | 100% | ||
babatunde123 | 0 | 422,193,210 | 100% | ||
jaicyjarc | 0 | 440,298,241 | 100% | ||
jhsung2002 | 0 | 424,536,598 | 100% | ||
pentatonix | 0 | 487,194,213 | 100% | ||
akhondo | 0 | 496,737,182 | 100% | ||
kbakadave | 0 | 435,502,804 | 100% | ||
felix7d2 | 0 | 459,684,540 | 100% | ||
forestplane | 0 | 418,231,978 | 100% | ||
shamzieyblitz | 0 | 392,205,767 | 100% | ||
marboe | 0 | 447,581,720 | 100% | ||
everosy | 0 | 512,669,430 | 100% | ||
otto11 | 0 | 403,200,629 | 50% | ||
travelprincess | 0 | 437,757,576 | 100% | ||
bigtiddygothgirl | 0 | 488,011,166 | 100% | ||
dop-dop | 0 | 402,448,960 | 100% | ||
top10ranker | 0 | 426,706,113 | 100% | ||
smsyfurrahman | 0 | 437,515,786 | 100% | ||
kucukprens | 0 | 594,920,122 | 100% | ||
qisyanaura | 0 | 488,579,542 | 100% | ||
hookah | 0 | 395,273,216 | 100% | ||
aritmethos | 0 | 443,658,493 | 100% | ||
sabbirkhan | 0 | 448,800,188 | 100% | ||
aponkl | 0 | 384,733,460 | 100% | ||
ezravandi | 0 | 3,628,703,132 | 1% | ||
xdaniellxx | 0 | 448,950,444 | 100% | ||
jvhon15 | 0 | 427,219,363 | 100% | ||
disha2020 | 0 | 496,702,136 | 100% | ||
silvania | 0 | 478,433,011 | 100% | ||
fsherberg | 0 | 482,377,187 | 100% | ||
omairqazi | 0 | 400,961,183 | 100% | ||
bandmxo88 | 0 | 427,135,543 | 100% | ||
alftheboss | 0 | 508,206,793 | 100% | ||
itasteem | 0 | 452,657,452 | 100% | ||
crypto-maestro | 0 | 454,868,077 | 100% | ||
sagitariu | 0 | 500,490,579 | 100% | ||
peter007 | 0 | 423,452,694 | 100% | ||
toptrendingnews | 0 | 454,988,591 | 100% | ||
mikeok123 | 0 | 438,844,418 | 100% | ||
calistenia360 | 0 | 473,261,893 | 100% | ||
shimukhatun | 0 | 414,106,491 | 100% | ||
zazei | 0 | 433,913,632 | 100% | ||
morningcloud | 0 | 501,561,259 | 100% | ||
ziuntown | 0 | 389,319,031 | 100% | ||
amosermama | 0 | 456,099,256 | 100% | ||
enny-b | 0 | 529,489,185 | 100% | ||
jayo | 0 | 183,546,960 | 50% | ||
bobbinj | 0 | 472,719,477 | 100% | ||
eliahsoul | 0 | 494,330,253 | 100% | ||
ultrapsycho | 0 | 459,864,149 | 100% | ||
justdice | 0 | 442,024,530 | 100% | ||
enfpgirl | 0 | 457,574,623 | 100% | ||
sanekabir | 0 | 377,512,930 | 100% | ||
magbilas | 0 | 449,544,454 | 100% | ||
upvoteid | 0 | 425,734,958 | 100% | ||
vohon17 | 0 | 461,726,664 | 100% | ||
raindropbd | 0 | 474,629,248 | 100% | ||
ptkimran | 0 | 444,249,367 | 100% | ||
abdullah14 | 0 | 475,346,914 | 100% | ||
kuchee | 0 | 402,150,272 | 100% | ||
rahul111 | 0 | 493,555,135 | 100% | ||
hsa61 | 0 | 548,614,122 | 100% | ||
votezilla | 0 | 387,396,070 | 100% | ||
humayrakhan | 0 | 503,030,496 | 100% | ||
linerus | 0 | 476,135,687 | 100% | ||
sudi-afrikaan786 | 0 | 450,096,656 | 100% | ||
jakow666 | 0 | 489,468,954 | 100% | ||
thepharaoh | 0 | 442,863,100 | 100% | ||
chukieix | 0 | 466,167,551 | 100% | ||
homeles-economic | 0 | 476,506,175 | 100% | ||
pollobi | 0 | 441,543,647 | 100% | ||
str1k3r | 0 | 503,343,307 | 100% | ||
tiarasteem | 0 | 453,264,163 | 100% | ||
sristeem | 0 | 438,715,677 | 100% | ||
flawlessal | 0 | 440,658,354 | 100% | ||
efredis | 0 | 433,352,020 | 100% | ||
steem-us | 0 | 427,099,812 | 100% | ||
hasbydiaz | 0 | 444,547,063 | 100% | ||
yousuf001 | 0 | 426,766,069 | 100% | ||
randallstephens | 0 | 467,222,426 | 100% | ||
burhanahmad | 0 | 480,299,769 | 100% | ||
greenville | 0 | 153,958,061 | 50% | ||
adewale123 | 0 | 413,717,279 | 100% | ||
eazz | 0 | 389,814,737 | 100% | ||
leticar5 | 0 | 474,028,907 | 100% | ||
esteem77 | 0 | 489,351,392 | 100% | ||
mad-karma | 0 | 484,790,348 | 100% | ||
sexbot | 0 | 487,426,369 | 100% | ||
riskaaulia | 0 | 415,887,658 | 100% | ||
saniul1189 | 0 | 439,900,296 | 100% | ||
dammyjr | 0 | 440,156,929 | 100% | ||
eghireme2 | 0 | 422,281,502 | 100% | ||
gabrielaleiva | 0 | 405,836,700 | 100% | ||
mursik | 0 | 492,615,921 | 100% | ||
adedamola | 0 | 486,434,962 | 100% | ||
tabraiz.jutt | 0 | 397,046,682 | 100% | ||
feronio | 0 | 787,940,953 | 100% | ||
vjmarcus | 0 | 451,077,484 | 100% | ||
mairayasir | 0 | 435,229,490 | 100% | ||
platinumsuperman | 0 | 410,648,133 | 100% | ||
kadirus94 | 0 | 499,365,023 | 100% | ||
totalenigma | 0 | 424,241,797 | 100% | ||
awakenbusiness | 0 | 480,776,559 | 100% | ||
doctoryak | 0 | 402,955,972 | 100% | ||
olusamex | 0 | 381,876,795 | 100% | ||
sultana | 0 | 457,067,468 | 100% | ||
stevekay | 0 | 444,534,102 | 100% | ||
vaibhavrock | 0 | 402,537,320 | 100% | ||
gabeman | 0 | 390,052,286 | 100% | ||
shoovoon | 0 | 447,626,193 | 100% | ||
aceh-redaksi | 0 | 452,903,268 | 100% | ||
riazuddin101 | 0 | 381,605,343 | 100% | ||
karlpaap | 0 | 440,704,663 | 100% | ||
bangladeshbot | 0 | 387,553,541 | 100% | ||
tripx | 0 | 497,241,161 | 100% | ||
texrex | 0 | 502,125,273 | 100% | ||
neutr0nic | 0 | 552,308,502 | 100% | ||
james18 | 0 | 504,998,187 | 100% | ||
nacro1000 | 0 | 470,434,190 | 100% | ||
azzuri | 0 | 521,805,951 | 100% | ||
ejimevwo | 0 | 432,589,988 | 100% | ||
ortnermedia | 0 | 442,786,574 | 100% | ||
mohazjadoon | 0 | 384,251,467 | 100% | ||
madyinlay | 0 | 486,446,598 | 100% | ||
the-cholo | 0 | 489,898,512 | 100% | ||
hivaids | 0 | 404,727,574 | 100% | ||
sockenmollie | 0 | 450,922,963 | 100% | ||
readrun | 0 | 420,748,522 | 100% | ||
nirjor | 0 | 444,105,414 | 100% | ||
priam | 0 | 230,583,450 | 50% | ||
rosecat | 0 | 486,437,695 | 100% | ||
sabina10 | 0 | 443,352,892 | 100% | ||
foniz | 0 | 435,728,077 | 100% | ||
coinsity | 0 | 510,825,797 | 100% | ||
yuli.jpo | 0 | 453,490,612 | 100% | ||
hrx-07 | 0 | 433,174,913 | 100% | ||
steempower4 | 0 | 447,908,517 | 100% | ||
jesusmarin18 | 0 | 383,024,898 | 100% | ||
uasteem | 0 | 250,079,682 | 50% | ||
nyo | 0 | 449,604,317 | 100% | ||
positivehype | 0 | 454,388,452 | 100% | ||
programmingtech | 0 | 439,920,122 | 100% | ||
xyphr | 0 | 448,206,026 | 100% | ||
masavi | 0 | 440,276,644 | 100% | ||
minutiae | 0 | 436,311,668 | 100% | ||
kraitahex | 0 | 452,096,234 | 100% | ||
mirkoz | 0 | 488,782,006 | 100% | ||
hockeygirl21 | 0 | 401,620,377 | 100% | ||
korshed | 0 | 502,896,790 | 100% | ||
atalante | 0 | 424,207,457 | 100% | ||
manfaluthi | 0 | 389,142,448 | 100% | ||
indayclara | 0 | 253,620,298 | 7.5% | ||
shibetrader | 0 | 411,084,088 | 100% | ||
tibeo | 0 | 446,151,776 | 100% | ||
catherinemds | 0 | 437,116,306 | 100% | ||
maikellelcrack | 0 | 380,897,049 | 100% | ||
mrashed043 | 0 | 486,416,042 | 100% | ||
shawons | 0 | 511,448,878 | 100% | ||
dogmaportraits | 0 | 403,643,462 | 100% | ||
islandtulip | 0 | 446,423,305 | 100% | ||
steemus-bot | 0 | 500,254,924 | 100% | ||
steem-blog247 | 0 | 429,178,006 | 100% | ||
theseahorse | 0 | 550,191,332 | 100% | ||
maddieseal | 0 | 502,171,297 | 100% | ||
aro.steem | 0 | 92,133,908,018 | 100% | ||
bluznierca | 0 | 490,042,055 | 100% | ||
spuutim | 0 | 550,191,332 | 100% | ||
cindybee | 0 | 396,065,170 | 100% | ||
angelinadivya | 0 | 429,000,681 | 100% | ||
thachthao | 0 | 447,789,358 | 100% | ||
offended | 0 | 478,300,888 | 100% | ||
dontcare | 0 | 450,660,885 | 100% | ||
mrsteemian | 0 | 501,938,474 | 100% | ||
manfred0540 | 0 | 454,595,911 | 100% | ||
steemitabuser | 0 | 421,893,322 | 100% | ||
steemaustin | 0 | 486,513,419 | 100% | ||
mista9904 | 0 | 408,000,292 | 100% | ||
suhana05 | 0 | 429,273,279 | 100% | ||
jserafael | 0 | 411,360,548 | 100% | ||
abcd0 | 0 | 448,000,248 | 100% | ||
onesickplankton | 0 | 440,199,696 | 100% | ||
steemhack | 0 | 447,095,151 | 100% | ||
dgig | 0 | 486,448,154 | 100% | ||
sergino | 0 | 546,082,522 | 2% | ||
gangstars | 0 | 460,818,128 | 100% | ||
sillycat | 0 | 513,722,437 | 100% | ||
nahin9 | 0 | 496,741,626 | 100% | ||
wizzybright | 0 | 444,799,853 | 100% | ||
kuftjs | 0 | 411,014,952 | 100% | ||
doom42 | 0 | 439,408,319 | 100% | ||
otrip | 0 | 446,718,423 | 100% | ||
germano | 0 | 433,691,101 | 100% | ||
airdropcu | 0 | 407,438,264 | 100% | ||
zickychris | 0 | 494,715,936 | 100% | ||
isla4 | 0 | 405,672,647 | 100% | ||
sidneychildsh | 0 | 423,653,430 | 100% | ||
a-01 | 0 | 448,668,573 | 100% | ||
syedovi | 0 | 520,861,705 | 100% | ||
cryptoevents | 0 | 445,779,265 | 100% | ||
tom-nd-gerry | 0 | 451,221,879 | 100% | ||
efsane60 | 0 | 149,149,906 | 100% | ||
bernietheinbred | 0 | 422,324,550 | 100% | ||
berniefucksfam | 0 | 420,872,429 | 100% | ||
alina2 | 0 | 402,351,651 | 100% | ||
ahmedibrahem | 0 | 412,908,727 | 100% | ||
uaksjs | 0 | 440,854,600 | 100% | ||
usercrypto46 | 0 | 445,286,017 | 100% | ||
arceuzz | 0 | 485,515,318 | 100% | ||
omerbayrak | 0 | 4,328,028,869 | 100% | ||
tubabayrak | 0 | 250,177,853 | 50% | ||
crypt0bear | 0 | 413,468,207 | 100% | ||
yiter | 0 | 3,889,783,292 | 100% | ||
thefunnyshit | 0 | 440,240,144 | 100% | ||
sofia-legacy | 0 | 449,774,713 | 100% | ||
netizens | 0 | 397,423,019 | 100% | ||
jackers | 0 | 452,172,040 | 100% | ||
franklin001233 | 0 | 398,498,495 | 100% | ||
sintina | 0 | 406,516,469 | 100% | ||
walidjoy | 0 | 447,696,862 | 100% | ||
aisteemit | 0 | 394,635,676 | 100% | ||
aminkhan | 0 | 509,768,603 | 100% | ||
kingsteen | 0 | 403,164,196 | 100% | ||
juma20 | 0 | 397,711,120 | 100% | ||
gameranger | 0 | 510,426,818 | 100% | ||
ruzgar3 | 0 | 433,073,958 | 100% | ||
jack-rose | 0 | 453,661,574 | 100% | ||
armuse | 0 | 401,881,818 | 100% | ||
meletik | 0 | 421,512,360 | 100% | ||
futbolsport | 0 | 504,621,353 | 100% | ||
chrstnv | 0 | 382,340,811 | 100% | ||
rizzopablo | 0 | 440,972,923 | 100% | ||
ronibarua | 0 | 485,137,779 | 100% | ||
joaquinz26 | 0 | 449,064,347 | 100% | ||
bitcoinmarketss | 0 | 500,356,559 | 100% | ||
banjo-0 | 0 | 454,406,614 | 100% | ||
busy01 | 0 | 452,302,488 | 100% | ||
a-0-0-0-0-0-a | 0 | 451,666,853 | 100% | ||
pinkyblogger | 0 | 404,670,863 | 100% | ||
bumbumear | 0 | 496,108,461 | 100% | ||
bnchhetri | 0 | 490,727,679 | 100% | ||
fatany | 0 | 378,749,825 | 100% | ||
gakk | 0 | 405,843,504 | 100% | ||
smiths01 | 0 | 446,092,176 | 100% | ||
daldon | 0 | 447,657,183 | 100% | ||
dorik | 0 | 395,320,417 | 100% | ||
once-upon | 0 | 461,351,096 | 100% | ||
ns-team | 0 | 461,434,634 | 100% | ||
friday-night | 0 | 461,470,229 | 100% | ||
vidio.com | 0 | 478,571,404 | 100% | ||
fargotof | 0 | 513,283,757 | 100% | ||
vote-psc | 0 | 390,811,979 | 100% | ||
cryobiosis | 0 | 416,739,732 | 100% | ||
steemneworleans | 0 | 511,528,962 | 100% | ||
jamilhossain | 0 | 508,898,370 | 100% | ||
parallel-reality | 0 | 376,425,332 | 100% | ||
lazyman | 0 | 169,195,271,003 | 47% | ||
budiman01 | 0 | 398,052,361 | 100% | ||
runen | 0 | 490,473,627 | 100% | ||
rambojalil | 0 | 497,429,877 | 100% | ||
rsa-vs-ban-team | 0 | 453,831,713 | 100% | ||
continue-upvote | 0 | 453,612,489 | 100% | ||
rise-with-reason | 0 | 453,876,585 | 100% | ||
street-girl | 0 | 423,848,637 | 100% | ||
b-01 | 0 | 500,877,391 | 100% | ||
ajcardib | 0 | 408,179,084 | 100% | ||
input-user-name | 0 | 446,674,500 | 100% | ||
marko44 | 0 | 452,006,021 | 100% | ||
kurieta | 0 | 437,312,838 | 100% | ||
frolik | 0 | 421,971,572 | 100% | ||
berns | 0 | 422,391,242 | 100% | ||
ahmada | 0 | 396,978,114 | 100% | ||
loliyu | 0 | 422,772,226 | 100% | ||
esbu | 0 | 497,286,177 | 100% | ||
kur | 0 | 407,410,509 | 100% | ||
besikman | 0 | 400,340,458 | 100% | ||
grey2603 | 0 | 455,779,833 | 100% | ||
a7427646 | 0 | 481,878,222 | 100% | ||
testnet | 0 | 463,034,268 | 100% | ||
puskas | 0 | 511,508,280 | 100% | ||
speedfast | 0 | 434,078,012 | 100% | ||
zeld | 0 | 463,498,162 | 100% | ||
ashleycarroll | 0 | 508,248,857 | 100% | ||
wentertainment | 0 | 491,138,366 | 100% | ||
hanzala | 0 | 439,193,271 | 100% | ||
sondy | 0 | 503,006,172 | 100% | ||
bountyx2 | 0 | 514,494,106 | 100% | ||
chil | 0 | 432,273,004 | 100% | ||
efficientseptum | 0 | 514,943,850 | 100% | ||
gracefulestrogen | 0 | 514,619,534 | 100% | ||
recycle-bin | 0 | 470,165,842 | 100% | ||
lossbot | 0 | 510,040,857 | 100% | ||
cryptoknowhow | 0 | 476,949,788 | 100% | ||
shivangni | 0 | 499,022,010 | 100% | ||
business-man | 0 | 453,395,084 | 100% | ||
meena2009 | 0 | 456,322,056 | 100% | ||
khusbu | 0 | 453,183,810 | 100% | ||
windows-7 | 0 | 483,384,762 | 100% | ||
ayesha221 | 0 | 443,409,349 | 100% | ||
amontecal1 | 0 | 399,237,361 | 100% | ||
aliraza83 | 0 | 439,256,304 | 100% | ||
gineo | 0 | 439,357,796 | 100% | ||
irosteem | 0 | 490,427,089 | 100% | ||
isosteem | 0 | 438,962,068 | 100% | ||
igosteem | 0 | 497,267,714 | 100% | ||
damawan | 0 | 444,594,405 | 100% | ||
yevan | 0 | 472,692,981 | 100% | ||
oscardarma | 0 | 444,789,452 | 100% | ||
badilah | 0 | 445,191,866 | 100% | ||
daamah | 0 | 423,853,887 | 100% | ||
fadilah | 0 | 446,178,246 | 100% | ||
hadiah | 0 | 438,481,347 | 100% | ||
kalilah | 0 | 437,544,424 | 100% | ||
mabruk | 0 | 447,206,086 | 100% | ||
nabhan | 0 | 446,689,015 | 100% | ||
ghulan | 0 | 440,148,649 | 100% | ||
indramayu | 0 | 472,556,136 | 100% | ||
berthatrail | 0 | 442,069,822 | 100% | ||
cantigi | 0 | 472,558,200 | 100% | ||
haurgeulis | 0 | 438,087,231 | 100% | ||
losarang | 0 | 497,272,896 | 100% | ||
sukra | 0 | 497,374,251 | 100% | ||
terisi | 0 | 445,163,859 | 100% | ||
tukdana | 0 | 445,164,334 | 100% | ||
widasari | 0 | 445,055,832 | 100% | ||
pasekan | 0 | 411,431,508 | 100% | ||
kroya | 0 | 445,024,791 | 100% | ||
jenellbradley | 0 | 411,919,919 | 100% | ||
jacqueliness | 0 | 415,084,079 | 100% | ||
bongas | 0 | 448,581,889 | 100% | ||
juliaobando | 0 | 415,423,165 | 100% | ||
marybueno | 0 | 413,622,070 | 100% | ||
balongan | 0 | 440,992,176 | 100% | ||
pennijholmes | 0 | 410,086,527 | 100% | ||
btrailtrail | 0 | 443,702,601 | 100% | ||
recetopolitico | 0 | 392,646,985 | 100% | ||
istariray | 0 | 478,991,181 | 100% | ||
jamal.mahmud | 0 | 474,781,000 | 100% | ||
adnanroshan | 0 | 454,133,684 | 100% | ||
adnandahal | 0 | 451,679,840 | 100% | ||
adnanghoshal | 0 | 453,940,652 | 100% | ||
adnansheye | 0 | 452,681,869 | 100% | ||
hope-less | 0 | 452,595,883 | 100% | ||
you-and-me | 0 | 451,613,031 | 100% | ||
jamesjhoffman | 0 | 488,256,966 | 100% | ||
ethelthurston | 0 | 492,528,558 | 100% | ||
isseyekayaim | 0 | 489,148,423 | 100% | ||
wombtick | 0 | 514,593,374 | 100% | ||
alaminrifat | 0 | 443,040,694 | 100% | ||
a-2-z | 0 | 458,605,381 | 100% | ||
fortunesteem | 0 | 381,550,993 | 100% | ||
nuklir | 0 | 391,800,932 | 100% | ||
dogmasfour | 0 | 398,048,022 | 100% | ||
adnanshe | 0 | 494,084,401 | 100% | ||
katerinakarim | 0 | 514,900,047 | 100% | ||
ikalinowski | 0 | 514,498,990 | 100% | ||
dewidewi | 0 | 381,794,696 | 100% | ||
jaquinz26 | 0 | 445,588,206 | 100% | ||
zabatar | 0 | 453,172,582 | 100% | ||
atalgyi | 0 | 525,786,709 | 100% | ||
berwynelbow | 0 | 514,457,459 | 100% | ||
nirob2 | 0 | 450,693,941 | 100% | ||
agaci | 0 | 427,962,577 | 100% | ||
chichu | 0 | 432,577,463 | 100% | ||
rozee | 0 | 432,357,847 | 100% | ||
winewinelal | 0 | 485,180,738 | 100% | ||
adx | 0 | 436,466,892 | 100% | ||
tirumala | 0 | 428,614,951 | 100% | ||
i-m-o | 0 | 453,088,803 | 100% | ||
abcd1 | 0 | 446,530,993 | 100% | ||
embryofemur | 0 | 514,421,142 | 100% | ||
speologul | 0 | 429,450,603 | 100% | ||
friedradius | 0 | 514,642,499 | 100% | ||
mechyz12 | 0 | 497,914,882 | 100% | ||
sw10 | 0 | 445,979,204 | 100% | ||
busik | 0 | 474,105,672 | 100% | ||
ippeh | 0 | 474,098,070 | 100% | ||
precfila | 0 | 486,413,646 | 100% | ||
celsiusdelete | 0 | 514,598,135 | 100% | ||
tech2you | 0 | 487,688,275 | 100% | ||
universalglobe | 0 | 487,526,940 | 100% | ||
aakashkhan | 0 | 480,559,441 | 100% | ||
bestofph | 0 | 6,468,036,729 | 15% | ||
sallys | 0 | 504,999,922 | 100% | ||
asunaxzelda | 0 | 448,548,430 | 100% | ||
hasan58475 | 0 | 515,233,401 | 100% | ||
selami321 | 0 | 477,570,835 | 100% | ||
mankenntihn | 0 | 512,601,818 | 100% | ||
ulockblock | 0 | 40,448,563,054 | 12.49% | ||
jerryb | 0 | 431,759,354 | 100% | ||
arena10 | 0 | 456,082,853 | 100% | ||
alinabel | 0 | 462,859,791 | 100% | ||
tarifhossain757 | 0 | 509,607,538 | 100% | ||
lebey1 | 0 | 435,527,414 | 100% | ||
blogelse | 0 | 444,164,233 | 100% | ||
mabylinne | 0 | 460,773,045 | 100% | ||
hammad9 | 0 | 438,241,095 | 100% | ||
raqueltaylor | 0 | 459,649,671 | 100% | ||
shahmanabir | 0 | 501,143,681 | 100% | ||
abroshan | 0 | 406,874,379 | 100% | ||
abakashkhan | 0 | 470,399,151 | 100% | ||
bulet08 | 0 | 415,919,840 | 100% | ||
dreamthink | 0 | 464,895,217 | 100% | ||
donalddaniel | 0 | 489,114,725 | 100% | ||
terrymiller | 0 | 489,114,439 | 100% | ||
benniewiggins | 0 | 489,118,325 | 100% | ||
alankeely | 0 | 508,250,678 | 100% | ||
johnnelson | 0 | 527,979,073 | 100% | ||
johndnelson | 0 | 492,532,541 | 100% | ||
josephdye | 0 | 517,702,502 | 100% | ||
ryanlsmith | 0 | 488,105,943 | 100% | ||
collect1 | 0 | 482,566,143 | 100% | ||
ddmouse | 0 | 435,903,925 | 100% | ||
shorelee | 0 | 434,209,081 | 100% | ||
payi | 0 | 469,961,922 | 100% | ||
andtal | 0 | 442,344,451 | 100% | ||
ilyassamraoui | 0 | 451,194,737 | 100% | ||
mridul12 | 0 | 250,638,205 | 50% | ||
sadiajahan22 | 0 | 385,359,096 | 100% | ||
withbristy | 0 | 408,895,166 | 100% | ||
afarbomac | 0 | 444,777,511 | 100% | ||
awais34 | 0 | 438,033,372 | 100% | ||
ahmadkhan1 | 0 | 438,027,180 | 100% | ||
oliver27 | 0 | 453,189,527 | 100% | ||
cryptouno | 0 | 494,068,180 | 5% | ||
p3dheem | 0 | 392,837,749 | 100% | ||
herkesegorunmez | 0 | 3,515,310,811 | 100% | ||
sgtalienjr | 0 | 453,259,998 | 100% | ||
podah | 0 | 377,043,941 | 100% | ||
kecap | 0 | 396,360,023 | 100% | ||
aleatory | 0 | 467,134,198 | 100% | ||
funoncamera | 0 | 470,556,278 | 100% | ||
miladopensador | 0 | 477,735,296 | 100% | ||
bumado | 0 | 424,212,663 | 100% | ||
elfardal | 0 | 448,336,730 | 100% | ||
crantar | 0 | 456,505,609 | 100% | ||
mops2e | 0 | 894,722,374 | 59.2% | ||
graeca | 0 | 491,050,312 | 100% | ||
khanjh | 0 | 501,962,836 | 100% | ||
t1050108 | 0 | 437,609,567 | 100% | ||
hayi | 0 | 485,948,313 | 100% | ||
charity.orphan | 0 | 497,646,084 | 100% | ||
gil96ve | 0 | 399,842,733 | 100% | ||
sammu | 0 | 486,658,101 | 100% | ||
swapsteem | 0 | 297,454,875 | 3.27% | ||
natmonsalve | 0 | 424,929,049 | 100% | ||
joseluis0 | 0 | 422,661,467 | 100% | ||
danielavrc | 0 | 425,369,111 | 100% | ||
shemi500 | 0 | 478,046,615 | 100% | ||
thegourmet | 0 | 497,083,976 | 100% | ||
zillurrahman | 0 | 475,917,775 | 100% | ||
electrobro | 0 | 243,775,219 | 100% | ||
imtiaz09 | 0 | 460,755,021 | 100% | ||
abbasuet5780 | 0 | 510,641,174 | 100% | ||
ai2000 | 0 | 417,182,629 | 100% | ||
basant111 | 0 | 422,294,774 | 100% | ||
skillarm | 0 | 453,140,052 | 100% | ||
anixon | 0 | 426,141,488 | 100% | ||
zulul | 0 | 441,622,865 | 100% | ||
sagar37 | 0 | 504,755,029 | 100% | ||
meowcliver | 0 | 434,039,723 | 100% | ||
play24 | 0 | 429,248,414 | 100% | ||
worlddreams | 0 | 415,838,408 | 100% | ||
bntcamelo | 0 | 420,524,786 | 100% | ||
riverlu | 0 | 529,654,053 | 100% | ||
gatgat | 0 | 505,955,997 | 100% | ||
skd40 | 0 | 475,990,991 | 100% | ||
allinone123 | 0 | 388,900,105 | 100% | ||
basket.bruntal | 0 | 499,360,125 | 100% | ||
sprava | 0 | 491,417,715 | 100% | ||
notagain3177 | 0 | 404,385,457 | 100% | ||
muneer1 | 0 | 445,752,550 | 100% | ||
raisha1 | 0 | 421,369,753 | 100% | ||
dspa | 0 | 495,752,342 | 100% | ||
paoladesings | 0 | 472,624,813 | 100% | ||
nevlu | 0 | 456,560,622 | 100% | ||
sentu1 | 0 | 494,113,109 | 100% | ||
satari | 0 | 498,452,178 | 100% | ||
om001 | 0 | 0 | 100% | ||
aralyno | 0 | 407,549,938 | 100% | ||
rosauradels | 0 | 434,845,276 | 100% | ||
parham26 | 0 | 474,317,538 | 100% | ||
telegramairdrops | 0 | 407,948,281 | 100% | ||
rasu | 0 | 386,748,288 | 100% | ||
a10000 | 0 | 454,660,845 | 100% | ||
munnashah | 0 | 394,131,482 | 100% | ||
steem-ua | 0 | 630,726,512,856 | 6.29% | ||
botje11 | 0 | 471,441,329 | 100% | ||
mariita52 | 0 | 602,021,519 | 100% | ||
bipusarker | 0 | 480,548,150 | 100% | ||
nevlu1 | 0 | 452,090,929 | 100% | ||
civilizedly | 0 | 522,252,648 | 100% | ||
carljohnsen | 0 | 516,997,836 | 100% | ||
thecryptoplayer | 0 | 409,428,156 | 100% | ||
yashoda | 0 | 449,919,077 | 100% | ||
leonelys | 0 | 487,377,390 | 100% | ||
a-k-nirob | 0 | 484,819,367 | 100% | ||
saife | 0 | 488,357,345 | 100% | ||
stayupdate | 0 | 497,249,887 | 100% | ||
tiyatiwa | 0 | 386,023,227 | 100% | ||
dmnds.southwest3 | 0 | 506,648,123 | 100% | ||
dassvollkornbrot | 0 | 383,152,760 | 100% | ||
shoutloud | 0 | 442,230,393 | 100% | ||
shazikhan | 0 | 465,111,819 | 100% | ||
astuto | 0 | 392,659,180 | 100% | ||
ruro | 0 | 499,478,000 | 100% | ||
kingasf | 0 | 469,569,511 | 100% | ||
upbitstemhot | 0 | 374,163,211 | 100% | ||
aknirob1 | 0 | 426,280,229 | 100% | ||
paparex | 0 | 513,939,219 | 100% | ||
passeggero | 0 | 429,519,434 | 100% | ||
vjapan | 0 | 484,492,947 | 100% | ||
jima | 0 | 382,784,226 | 100% | ||
yogiyo | 0 | 381,909,662 | 100% | ||
samsai | 0 | 385,413,151 | 100% | ||
wasaneagle | 0 | 509,874,352 | 100% | ||
bluesniper | 0 | 206,294,624 | 0.08% | ||
dredijinx | 0 | 426,940,734 | 100% | ||
aliciazie | 0 | 420,301,382 | 100% | ||
sport-is-art | 0 | 426,455,008 | 100% | ||
ascorphat | 0 | 1,973,970,314 | 2.5% | ||
theleastelitist | 0 | 491,944,831 | 100% | ||
signin | 0 | 446,395,352 | 100% | ||
yorneiduvalier | 0 | 486,966,864 | 100% | ||
idiosyncratic1 | 0 | 484,704,535 | 100% | ||
goodway57 | 0 | 482,828,581 | 100% | ||
promoeye | 0 | 494,271,902 | 100% | ||
steemitmonsters | 0 | 389,763,387 | 100% | ||
bejust | 0 | 1,316,570,066 | 100% | ||
a-id | 0 | 461,638,954 | 100% | ||
infestor | 0 | 394,543,456 | 100% | ||
clplhepr | 0 | 403,445,485 | 100% | ||
progressing | 0 | 1,186,760,168 | 100% | ||
alpha.set | 0 | 433,674,387 | 100% | ||
fokir | 0 | 486,722,852 | 100% | ||
an-account | 0 | 505,604,131 | 100% | ||
squidben1 | 0 | 420,813,457 | 100% | ||
lifequote | 0 | 490,574,030 | 100% | ||
faysal111 | 0 | 479,410,046 | 100% | ||
koychev22 | 0 | 414,814,008 | 100% | ||
kaulnivna | 0 | 489,355,030 | 100% | ||
vayukalzh | 0 | 517,686,587 | 100% | ||
pepasset | 0 | 489,305,976 | 100% | ||
salyese | 0 | 474,061,068 | 100% | ||
sesurick | 0 | 474,076,768 | 100% | ||
orallu | 0 | 474,063,634 | 100% | ||
lontesl | 0 | 474,079,823 | 100% | ||
lurdofro | 0 | 474,078,807 | 100% | ||
ederonde | 0 | 474,046,694 | 100% | ||
agalte | 0 | 474,024,429 | 100% | ||
yalotin | 0 | 474,049,285 | 100% | ||
itamow | 0 | 473,999,846 | 100% | ||
kazhaval | 0 | 489,287,472 | 100% | ||
kingofdice | 0 | 440,119,407 | 100% | ||
lakerride | 0 | 528,009,546 | 100% | ||
msowner2 | 0 | 694,430,654 | 10% | ||
kookeret | 0 | 507,940,089 | 100% | ||
rayhan123 | 0 | 442,603,620 | 100% |
Nice write up and contribution buddy. I will like to give it try Good job!
author | adewararilwan |
---|---|
permlink | re-arosteem-python-magic-dice-roller-20190324t162605206z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-03-24 16:26:06 |
last_update | 2019-03-24 16:26:06 |
depth | 1 |
children | 0 |
last_payout | 2019-03-31 16:26:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 74 |
author_reputation | 5,315,947,909,882 |
root_title | "Python - Magic Dice Roller π²" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,863,481 |
net_rshares | 0 |
awesome, i have been using macros but will give it a try, always want to keep learning
author | cryptoxicate |
---|---|
permlink | re-arosteem-python-magic-dice-roller-20190324t150111181z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-03-24 15:01:12 |
last_update | 2019-03-24 15:01:12 |
depth | 1 |
children | 2 |
last_payout | 2019-03-31 15:01:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.043 HBD |
curator_payout_value | 0.014 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 86 |
author_reputation | 82,483,397,080,526 |
root_title | "Python - Magic Dice Roller π²" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,858,451 |
net_rshares | 88,999,790,427 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
aro.steem | 0 | 88,999,790,427 | 100% |
Yeah i was thinking about an alliance to break the dice, automated with profit sharing, are you a developer?
author | aro.steem |
---|---|
permlink | re-cryptoxicate-re-arosteem-python-magic-dice-roller-20190324t150753118z |
category | utopian-io |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]} |
created | 2019-03-24 15:07:57 |
last_update | 2019-03-24 15:07:57 |
depth | 2 |
children | 1 |
last_payout | 2019-03-31 15:07:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 108 |
author_reputation | 13,589,686,925,958 |
root_title | "Python - Magic Dice Roller π²" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,858,849 |
net_rshares | 0 |
Not a developer, Im IT infrastructure Posted using [Partiko Android](https://partiko.app/referral/cryptoxicate)
author | cryptoxicate |
---|---|
permlink | cryptoxicate-re-aro-steem-re-cryptoxicate-re-arosteem-python-magic-dice-roller-20190324t202010208z |
category | utopian-io |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-03-24 20:20:12 |
last_update | 2019-03-24 20:20:12 |
depth | 3 |
children | 0 |
last_payout | 2019-03-31 20:20:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 112 |
author_reputation | 82,483,397,080,526 |
root_title | "Python - Magic Dice Roller π²" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,872,171 |
net_rshares | 0 |
Dear @aro-steem, but when i modified this file with my own rules, what i should do with it to make it running on chrome browser?
author | intellihandling |
---|---|
permlink | re-arosteem-python-magic-dice-roller-20190326t053127723z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["aro-steem"],"app":"steemit/0.1"} |
created | 2019-03-26 05:31:27 |
last_update | 2019-03-26 05:31:27 |
depth | 1 |
children | 0 |
last_payout | 2019-04-02 05:31:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 128 |
author_reputation | 19,898,926,679,839 |
root_title | "Python - Magic Dice Roller π²" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,963,860 |
net_rshares | 0 |
nice ! you can try script with us too =) --- π π Moon your steem everyday ! Instant Dividend payout after every game. chance to **WIN 235,318 steemies** every round. Participate in Players Upvote round (every 144 mins) worth $0.75 <a href="http://bit.ly/moonSTEEM">moonSTEEM.com</a>
author | msowner2 |
---|---|
permlink | re-arosteem-python-magic-dice-roller-20190326t103645300z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steempeak/1.9.3"} |
created | 2019-03-26 10:36:48 |
last_update | 2019-03-26 10:36:48 |
depth | 1 |
children | 0 |
last_payout | 2019-04-02 10:36:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 286 |
author_reputation | 264,549,673,006 |
root_title | "Python - Magic Dice Roller π²" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,977,457 |
net_rshares | 0 |
Thank you for your contribution @aro.steem. After reviewing your tutorial we suggest the following points listed below: - The structure of your tutorials is a bit confusing. See other tutorials that are placed in utopian to see how they structure the tutorials. - We suggest you explain in more detail all the steps that you describe in your tutorial. - Your tutorial is quite short for a good tutorial. We recommend you aim for capturing at least 2-3 concepts. - We suggest that in your next contribution put a title with more key words about what you will explain in the tutorial. Thank you for your work in developing this tutorial. Looking forward to your upcoming tutorials. Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category. To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/8/3-3-3-4-2-3-4-3-). ---- Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | portugalcoin |
---|---|
permlink | re-arosteem-python-magic-dice-roller-20190324t154201961z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["aro.steem"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/8/3-3-3-4-2-3-4-3-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2019-03-24 15:42:03 |
last_update | 2019-03-24 15:42:03 |
depth | 1 |
children | 2 |
last_payout | 2019-03-31 15:42:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 7.748 HBD |
curator_payout_value | 2.435 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,136 |
author_reputation | 603,431,202,521,855 |
root_title | "Python - Magic Dice Roller π²" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,860,882 |
net_rshares | 15,637,495,601,862 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
codingdefined | 0 | 23,569,686,565 | 16.55% | ||
themarkymark | 0 | 140,920,953,211 | 14% | ||
espoem | 0 | 29,964,638,374 | 15% | ||
utopian-io | 0 | 15,173,841,692,398 | 10.7% | ||
jaff8 | 0 | 40,644,942,405 | 16.55% | ||
emrebeyler | 0 | 0 | 0.01% | ||
lostmine27 | 0 | 11,631,358,038 | 26% | ||
amosbastian | 0 | 60,247,348,457 | 16.55% | ||
sudefteri | 0 | 6,668,961,274 | 100% | ||
reazuliqbal | 0 | 13,820,153,658 | 8% | ||
amico | 0 | 1,037,229,300 | 0.55% | ||
statsexpert | 0 | 8,393,007,323 | 100% | ||
aro.steem | 0 | 90,811,484,671 | 100% | ||
ulockblock | 0 | 11,526,882,971 | 3.63% | ||
curbot | 0 | 2,434,910,426 | 100% | ||
ascorphat | 0 | 1,966,077,963 | 2.5% | ||
yff | 0 | 19,416,773,941 | 100% | ||
curatortrail | 0 | 319,329,386 | 95% | ||
cleanit | 0 | 280,171,501 | 55% |
Thank you, if this is a developer / coding tutorial is there another tag to use? It will be better for developers to understand than other users.
author | aro.steem |
---|---|
permlink | re-portugalcoin-re-arosteem-python-magic-dice-roller-20190324t154516670z |
category | utopian-io |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]} |
created | 2019-03-24 15:45:18 |
last_update | 2019-03-24 17:16:27 |
depth | 2 |
children | 0 |
last_payout | 2019-03-31 15:45:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 145 |
author_reputation | 13,589,686,925,958 |
root_title | "Python - Magic Dice Roller π²" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,861,053 |
net_rshares | 0 |
Thank you for your review, @portugalcoin! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-arosteem-python-magic-dice-roller-20190324t154201961z-20190327t014134z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-03-27 01:41:36 |
last_update | 2019-03-27 01:41:36 |
depth | 2 |
children | 0 |
last_payout | 2019-04-03 01:41:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 64 |
author_reputation | 152,955,367,999,756 |
root_title | "Python - Magic Dice Roller π²" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 82,014,859 |
net_rshares | 0 |
#### Hi @aro.steem! Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation! Your post is eligible for our upvote, thanks to our collaboration with @utopian-io! **Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
author | steem-ua |
---|---|
permlink | re-python-magic-dice-roller-20190324t175638z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.19"}" |
created | 2019-03-24 17:56:39 |
last_update | 2019-03-24 17:56:39 |
depth | 1 |
children | 0 |
last_payout | 2019-03-31 17:56:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 288 |
author_reputation | 23,214,230,978,060 |
root_title | "Python - Magic Dice Roller π²" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,867,349 |
net_rshares | 0 |
Hey, @aro.steem! **Thanks for contributing on Utopian**. Weβre already looking forward to your next contribution! **Get higher incentives and support Utopian.io!** Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)). **Want to chat? Join us on Discord https://discord.gg/h52nFrV.** <a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
author | utopian-io |
---|---|
permlink | re-python-magic-dice-roller-20190325t060648z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-03-25 06:06:48 |
last_update | 2019-03-25 06:06:48 |
depth | 1 |
children | 0 |
last_payout | 2019-04-01 06:06:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 591 |
author_reputation | 152,955,367,999,756 |
root_title | "Python - Magic Dice Roller π²" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,895,962 |
net_rshares | 0 |