<center></center> <br> **moonSTEEM**, by using the provably-fair concept, eliminates the trust issue and potential defiance (between the house - operator - and the players) in online gambling. Additionally, by storing all informations on the blockchain in an immutable way, it allows players to go back in time as far as they want to control that the house respects its provably-fair engagements. With the rise of many popular betting dApps on different blockchains, the provably-fair system bridge this trust gap. moonSTEEM aims at providing players the fun, rewards and returns in a fair and transparent via immutable records which anyone can verify and check. <h3>Provably Fair</h3> Provably fair is a system that enables you (the player) to verify each game result and make sure the outcome is not manipulated by the house. Copy hash code of the particular round and paste it on the verification tool, check the multiplier results for all previous games. <h3>Seeding Event</h3> The seeding event has been broadcast to the blockchain via a custom_json operation for immutability, here are the informations : 1) moonSTEEM has generated 10 million game hashes (sha256). We started with a server secret that has been repeatedly fed the output of sha256 back into itself 10 million times. The sha256 of the final hash in the chain is: **35d667e694d1cc8947bfb33f4141016d46037e400218c65df5e5e4d8e3888bba**, by publicising it here we are preventing any ability to pick an alternate sha256 chain. 2) To avoid criticism that the server secret in step 1 was carefully chosen to generate lots of "bad" crash points, each hash in the chain will be salted with a client seed, which we have no control of. The client seed will be the block hash (block_id in row block data) of a Steem block that hasn't yet been generated: block 30568000 (the custom_json stating this has been broadcast in block 30553506 so 14494 blocks before). EDIT : Block 30568000 has been generated and the ID is **01d26e400cba5449b022113dd9394d3208208a27** which will be our client seed (https://steemd.com/b/30568000) Links to the custom_json : https://steemd.com/tx/43eb2ae737bf4619a5f4ef0a9ba6f706ffad1f74 https://steemworld.org/block/30553506/43eb2ae737bf4619a5f4ef0a9ba6f706ffad1f74 By hashing (HMAC SHA 256) any server seed, you’ll find the previous game’s server seed, proving that the house is using the pre-generated hash chain. By hashing that again with the client seed, it will result in the game hash (server seed salted with client seed). By applying the game multiplier formula on this hash, you’ll be able to verify that the game outcome (multiplier) is correct for any given game. The first game won’t be played as once the client seed is known, anyone can calculate the outcome. Using our chosen starting server seed (see step 1), the hash terminating the chain is **35d667e694d1cc8947bfb33f4141016d46037e400218c65df5e5e4d8e3888bba**. That is to say, the first game's hash played under the new provably fair scheme, when hashed will be 35d667e694d1cc8947bfb33f4141016d46037e400218c65df5e5e4d8e3888bba. <br>  <br> <h3>How to verify</h3> Verification Tool - https://jsfiddle.net/msowner1/mvfy1g6r/6/show (edited with client seed) Copy paste hash of the current game hash to find previous game hashs and outcomes <h3>Multiplier formula</h3> **How to create the hash chain ?** ``` exports.genGameHash = function(serverSeed) { return crypto.createHash('sha256').update(serverSeed).digest('hex'); }; ``` **How to convert a server seed into a game multiplier ?** ``` function divisible(hash, mod) { // We will read in 4 hex at a time, but the first chunk might be a bit smaller // So ABCDEFGHIJ should be chunked like AB CDEF GHIJ var val = 0; var o = hash.length % 4; for (var i = o > 0 ? o - 4 : 0; i < hash.length; i += 4) { val = ((val << 16) + parseInt(hash.substring(i, i+4), 16)) % mod; } return val === 0; } // This will be the client seed hash of block 30568000 var clientSeed = ‘01d26e400cba5449b022113dd9394d3208208a27'; exports.crashPointFromHash = function(serverSeed) { var hash = crypto.createHmac('sha256', serverSeed).update(clientSeed).digest('hex'); // In 1 of 101 games the game crashes instantly. if (divisible(hash, 101)) return 0; // Use the most significant 52-bit from the hash to calculate the crash point var h = parseInt(hash.slice(0,52/4),16); var e = Math.pow(2,52); return Math.floor((100 * e - h) / (e - h)); }; ``` <h3>Power of Blockchain - Transparency</h3> What make blockchain so powerful is the public ledger. Every transaction is recorded and visible to everybody. At the end of each game, a custom_json operation will be broadcast containing the server seed of the game, the multiplier and the bets that occured on that game. <h3>Security</h3> Leveraging on the popular and secure login method steemconnect, you can connect to moonSTEEM in a secure and convenient way. None of your key is store by moonSTEEM. <h3>Official accounts</h3> @moonsteem @moonsteem.app @msowner1 @msowner2 A post announcing the launch will be made a bit before the block chosen for the client side is produced.
author | moonsteem |
---|---|
permlink | moonsteem-provably-fair-crash-game-powered-by-the-steem-blockchain-or-seeding-event |
category | moonsteem |
json_metadata | {"tags":["moonsteem","gambling","steemit","steem","bet"],"users":["moonsteem","moonsteem.app","msowner1","msowner2"],"image":["https://i.imgur.com/whSkRXg.jpg","https://i.imgur.com/9PbwADB.jpg"],"links":["https://steemd.com/b/30568000","https://steemd.com/tx/43eb2ae737bf4619a5f4ef0a9ba6f706ffad1f74","https://steemworld.org/block/30553506/43eb2ae737bf4619a5f4ef0a9ba6f706ffad1f74","https://jsfiddle.net/msowner1/mvfy1g6r/6/show"],"app":"steemit/0.1","format":"markdown"} |
created | 2019-02-21 22:37:03 |
last_update | 2019-02-23 09:01:48 |
depth | 0 |
children | 20 |
last_payout | 2019-02-28 22:37:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 28.408 HBD |
curator_payout_value | 9.412 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5,297 |
author_reputation | 50,102,982,286,153 |
root_title | "moonSTEEM - Provably Fair crash game powered by the Steem Blockchain | Seeding Event" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,213,169 |
net_rshares | 70,103,971,196,191 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ivan-perez-anies | 0 | 0 | 100% | ||
onealfa | 0 | 1,242,583,035,744 | 100% | ||
acidyo | 0 | 12,543,790,497,279 | 100% | ||
grey580 | 0 | 37,968,985,477 | 100% | ||
hitmeasap | 0 | 29,105,356,111 | 100% | ||
rolik | 0 | 0 | 100% | ||
ausbitbank | 0 | 1,431,076,654,395 | 100% | ||
juvyjabian | 0 | 7,820,423,533 | 100% | ||
supermeatboy | 0 | 498,288,361,434 | 100% | ||
krystox | 0 | 0 | 100% | ||
joshglen | 0 | 0 | 100% | ||
rubenalexander | 0 | 110,435,845,392 | 51% | ||
theb0red1 | 0 | 4,239,518,948 | 12% | ||
netaterra | 0 | 4,847,559,806 | 100% | ||
shadowspub | 0 | 52,937,018,151 | 49% | ||
yohann | 0 | 174,847,669 | 100% | ||
rb3coins | 0 | 865,762,643 | 100% | ||
okean123 | 0 | 65,203,673,444 | 100% | ||
dianargenti | 0 | 228,497,022 | 100% | ||
barton26 | 0 | 10,075,655,462 | 100% | ||
stimp1024 | 0 | 267,197,134,603 | 100% | ||
funnel | 0 | 5,082,137,225 | 100% | ||
doodleman | 0 | 0 | 100% | ||
wig | 0 | 1,732,770,886 | 100% | ||
cardboard | 0 | 3,857,377,250 | 100% | ||
alexvan | 0 | 82,926,438,366 | 100% | ||
saleg25 | 0 | 0 | 100% | ||
networker5 | 0 | 0 | 0% | ||
eddard | 0 | 0 | 100% | ||
ericwilson | 0 | 0 | 100% | ||
jasonrussell | 0 | 125,873,979,551 | 100% | ||
elgeko | 0 | 552,077,993,984 | 61% | ||
ackza | 0 | 10,419,717,049 | 100% | ||
numpypython | 0 | 38,968,873,875 | 100% | ||
the01crow | 0 | 2,270,080,034 | 100% | ||
sanchezpuukko | 0 | 1,114,895,683 | 100% | ||
acromott | 0 | 6,736,561,532 | 100% | ||
iansart | 0 | 42,817,815,788 | 100% | ||
trayan | 0 | 3,150,163,321 | 100% | ||
khussan | 0 | 1,982,405,576 | 100% | ||
stackin | 0 | 13,309,765,565 | 2% | ||
followbtcnews | 0 | 1,017,769,068,001 | 100% | ||
swelker101 | 0 | 71,305,452,651 | 100% | ||
costopher | 0 | 0 | 100% | ||
ceronza | 0 | 0 | 100% | ||
sustainablyyours | 0 | 8,683,328,474 | 25% | ||
carlagonz | 0 | 2,776,842,959 | 100% | ||
tytran | 0 | 0 | 100% | ||
arunava | 0 | 233,586,135,085 | 15% | ||
djynn | 0 | 34,391,727,737 | 30% | ||
bitcoinflood | 0 | 783,697,913,531 | 100% | ||
marty-art | 0 | 35,780,949,655 | 100% | ||
grassrootsmedia | 0 | 450,656,297 | 100% | ||
spacehd | 0 | 391,789,762 | 100% | ||
pennsif | 0 | 23,482,104,004 | 8% | ||
xyzashu | 0 | 13,602,243,290 | 100% | ||
mattjack | 0 | 0 | 100% | ||
theoccultcorner | 0 | 1,118,216,619 | 100% | ||
spinladen | 0 | 0 | 100% | ||
koffee | 0 | 0 | 100% | ||
victorialuxx | 0 | 3,748,983,687 | 100% | ||
weldmaster | 0 | 0 | 15% | ||
jwolf | 0 | 105,315,410,015 | 100% | ||
samotonakatoshi | 0 | 24,070,298,297 | 100% | ||
mcoinz79 | 0 | 3,655,358,814 | 1% | ||
small1axe | 0 | 1,685,689,457 | 100% | ||
coffeedrinker51 | 0 | 78,887,837,075 | 100% | ||
thunder321 | 0 | 552,593,095 | 100% | ||
giosou | 0 | 15,393,242,555 | 100% | ||
btcsam | 0 | 5,300,840,035 | 100% | ||
ankarlie | 0 | 20,276,797,927 | 100% | ||
dado13btc | 0 | 99,583,756 | 100% | ||
travelgirl | 0 | 154,766,838,079 | 100% | ||
shitsignals | 0 | 46,154,978,428 | 100% | ||
desperad0s | 0 | 0 | 100% | ||
themarkymark | 0 | 1,305,462,589,197 | 100% | ||
stayoutoftherz | 0 | 508,325,358,833 | 100% | ||
andyx | 0 | 185,566,367 | 100% | ||
zonguin | 0 | 29,567,829,360 | 100% | ||
msp-shanehug | 0 | 143,031,207,391 | 43% | ||
bigpanda | 0 | 0 | 100% | ||
schubes | 0 | 688,742,797 | 100% | ||
elysiian | 0 | 226,183,367,089 | 100% | ||
nortjenn | 0 | 659,268,808 | 90% | ||
wedge | 0 | 4,425,274,741 | 100% | ||
root6 | 0 | 0 | 100% | ||
juju88 | 0 | 532,004,525 | 100% | ||
elprutest | 0 | 20,431,663,598 | 100% | ||
cflclosers | 0 | 12,924,597,304 | 25% | ||
aalagenesis | 0 | 1,074,998,797 | 100% | ||
jokossita | 0 | 0 | 100% | ||
wygrana-wygrana | 0 | 20,244,759 | 100% | ||
fbslo | 0 | 28,807,365,052 | 100% | ||
ferdyrochier | 0 | 531,297,728 | 100% | ||
basbombjas | 0 | 531,297,728 | 100% | ||
fanataorag | 0 | 531,297,728 | 100% | ||
wholeself-in | 0 | 14,463,389,656 | 100% | ||
saimegh | 0 | 2,798,015,639 | 100% | ||
chrisroberts | 0 | 28,641,625,264 | 100% | ||
tonygreene113 | 0 | 22,985,070,245 | 100% | ||
jamesbarraclough | 0 | 524,111,451 | 100% | ||
robertoueti | 0 | 0 | 10% | ||
ady-was-here | 0 | 6,489,704,603 | 100% | ||
okoro | 0 | 0 | 100% | ||
isarmoewe | 0 | 19,963,553,461 | 100% | ||
suheri | 0 | 2,934,185,246 | 100% | ||
yabapmatt | 0 | 2,206,862,579,944 | 100% | ||
theassailant | 0 | 0 | 100% | ||
calimeatwagon | 0 | 2,115,614,369 | 35% | ||
romiferns | 0 | 0 | 100% | ||
maanroov | 0 | 531,297,728 | 100% | ||
promor | 0 | 531,297,728 | 100% | ||
enzor | 0 | 3,275,411,378 | 100% | ||
simi | 0 | 101,970,412,729 | 100% | ||
junigo | 0 | 531,297,728 | 100% | ||
dogid | 0 | 531,336,345 | 100% | ||
japanguide | 0 | 5,859,231,956 | 100% | ||
karol003 | 0 | 373,050,369 | 100% | ||
ngc | 0 | 1,310,336,300,686 | 100% | ||
nothingmatters | 0 | 692,319,350 | 100% | ||
pangoli | 0 | 41,713,164,745 | 100% | ||
maans | 0 | 245,435,833 | 50% | ||
drags | 0 | 4,780,589,281 | 100% | ||
favcau | 0 | 99,148,869,188 | 100% | ||
heyimsnuffles | 0 | 21,028,977,879 | 100% | ||
dbddv01 | 0 | 1,414,460,722 | 100% | ||
dizzyapple | 0 | 1,302,348,413 | 50% | ||
jhiecortez | 0 | 254,013,034 | 50% | ||
fabix | 0 | 0 | 100% | ||
ekushya | 0 | 59,568,278,279 | 100% | ||
zakia | 0 | 48,561,618,246 | 100% | ||
crypto-bot | 0 | 0 | 100% | ||
attoan.cmt | 0 | 0 | 100% | ||
kaniz | 0 | 4,940,494,712 | 100% | ||
robbiack | 0 | 9,459,791 | 100% | ||
nicole-st | 0 | 21,479,566,537 | 100% | ||
infinityofficial | 0 | 0 | 100% | ||
wallacecarranza | 0 | 325,964,823 | 100% | ||
bitinvdig0 | 0 | 942,899,147 | 100% | ||
the-icon | 0 | 0 | 100% | ||
mydicebot | 0 | 0 | 100% | ||
rcshad0w | 0 | 19,454,302,185 | 100% | ||
rezoanulvibes | 0 | 11,750,843,826 | 100% | ||
nokodemion | 0 | 30,922,371,558 | 100% | ||
aejackson | 0 | 7,051,072,988 | 100% | ||
andisantos | 0 | 441,261,130 | 40% | ||
nachusky | 0 | 0 | 100% | ||
cgbartow | 0 | 27,491,189,897 | 100% | ||
californiacrypto | 0 | 10,321,661,777 | 25% | ||
skiesandsports | 0 | 0 | 100% | ||
khackett | 0 | 18,090,828,968 | 50% | ||
patchi02 | 0 | 243,838,501 | 50% | ||
holozaps | 0 | 150,619,561 | 50% | ||
baart | 0 | 14,148,345,278 | 100% | ||
mediarahan | 0 | 0 | 100% | ||
nageshwar0369 | 0 | 31,109,246,445 | 100% | ||
clasicktv | 0 | 36,910,910,149 | 100% | ||
jankos55 | 0 | 0 | 100% | ||
cnovaczyk | 0 | 0 | 0% | ||
soyrosa | 0 | 194,840,362,785 | 100% | ||
fullcoverbetting | 0 | 12,673,817,507 | 15% | ||
arwine | 0 | 6,012,576,955 | 100% | ||
okn | 0 | 1,202,604,737 | 100% | ||
sportscontest | 0 | 1,272,475,006 | 100% | ||
cfminer | 0 | 1,812,564,584 | 100% | ||
videosteemit | 0 | 1,068,727,458 | 100% | ||
pankajwahane | 0 | 11,668,647,721 | 100% | ||
will12 | 0 | 70,493,992 | 20% | ||
tobias-g | 0 | 289,939,475,026 | 100% | ||
b-s | 0 | 48,663,044,880 | 100% | ||
haydae | 0 | 8,685,408,730 | 100% | ||
jsl416 | 0 | 10,391,311,950 | 100% | ||
fantasycrypto | 0 | 10,736,949,216 | 100% | ||
natha93 | 0 | 8,098,450,898 | 100% | ||
galam | 0 | 1,516,504,295 | 100% | ||
beggars | 0 | 19,600,082,566 | 100% | ||
sisygoboom | 0 | 2,081,316,470 | 5% | ||
nanobot | 0 | 364,965,868 | 5% | ||
tebriz | 0 | 4,511,543,314 | 100% | ||
mindtrap | 0 | 41,259,519,376 | 10% | ||
deeledonio | 0 | 251,182,077 | 50% | ||
cryptictruth | 0 | 6,853,338,069 | 34% | ||
yunyun3014 | 0 | 252,097,622 | 50% | ||
killercobra | 0 | 0 | 100% | ||
adejokeade | 0 | 121,196,415 | 50% | ||
aibolit66 | 0 | 51,465,822,878 | 100% | ||
joelagbo | 0 | 1,157,312,989 | 100% | ||
spiritrider | 0 | 0 | 100% | ||
cryptofuwealth | 0 | 36,127,414 | 11% | ||
superlotto | 0 | 11,301,442,150 | 100% | ||
djoi | 0 | 3,832,254,665 | 50% | ||
stevekewe | 0 | 0 | 100% | ||
piercesword | 0 | 16,158,936,854 | 100% | ||
juicymjay | 0 | 512,219,589 | 100% | ||
clm | 0 | 8,544,620,244 | 100% | ||
cryptoburner | 0 | 244,939,939,155 | 100% | ||
luts | 0 | 20,493,638,190 | 100% | ||
bitpizza | 0 | 4,538,003,076 | 100% | ||
jnlhen05 | 0 | 251,154,251 | 50% | ||
nervi | 0 | 2,329,075,931 | 10% | ||
thechicken | 0 | 76,215,579 | 100% | ||
vitusc | 0 | 0 | 100% | ||
z0c | 0 | 0 | 100% | ||
gocuriousmind | 0 | 3,362,916,710 | 100% | ||
immanuel94 | 0 | 41,714,343,497 | 20% | ||
elizah | 0 | 307,209,432 | 50% | ||
unicornkid | 0 | 528,246,010 | 100% | ||
betavirosis | 0 | 192,390,589 | 100% | ||
frankreynolds | 0 | 0 | 100% | ||
cryptobong | 0 | 528,064,834 | 100% | ||
silvania | 0 | 0 | 10% | ||
beat-the-bookies | 0 | 2,235,383,424 | 100% | ||
fastadapted | 0 | 1,249,521,795 | 100% | ||
demondantv | 0 | 21,494,575,018 | 50% | ||
barbie.doll | 0 | 295,480,023 | 50% | ||
chuuuckie | 0 | 106,462,396,986 | 100% | ||
memesplease | 0 | 15,401,685,817 | 100% | ||
rootsnico | 0 | 0 | 100% | ||
angelinafx | 0 | 45,032,165,489 | 15% | ||
tsnaks | 0 | 10,845,193,919 | 100% | ||
steemingmark | 0 | 3,147,564,467 | 100% | ||
joseangelvs | 0 | 1,397,925,923 | 100% | ||
thejbullfrog | 0 | 0 | 100% | ||
aerhielle | 0 | 252,097,622 | 50% | ||
reinaldoverdu | 0 | 856,876,112 | 25% | ||
julisavio | 0 | 0 | 100% | ||
beturrio | 0 | 459,590,314 | 100% | ||
nikkimariel | 0 | 408,951,105 | 50% | ||
abbyzd | 0 | 245,475,195 | 50% | ||
jolugo23 | 0 | 325,777,544 | 100% | ||
yonilkar | 0 | 3,452,326,595 | 100% | ||
tushy | 0 | 154,232,451,621 | 100% | ||
sergionatera | 0 | 383,912,714 | 100% | ||
mcnil | 0 | 237,552,482 | 50% | ||
marklester23 | 0 | 178,882,335 | 50% | ||
upboater | 0 | 966,133,946,763 | 100% | ||
edgarbevens | 0 | 179,995,715 | 50% | ||
steemgamemarket | 0 | 0 | 100% | ||
victorianguyen | 0 | 0 | 100% | ||
edward2000 | 0 | 459,922,471 | 100% | ||
jonalynurcales | 0 | 252,154,101 | 50% | ||
legionario | 0 | 70,102,903 | 100% | ||
vanessazune2 | 0 | 601,990,034 | 100% | ||
rw20x | 0 | 0 | 100% | ||
invisusmundi | 0 | 0 | 100% | ||
kamile | 0 | 0 | 100% | ||
vinzie1 | 0 | 73,303,659,525 | 100% | ||
russelb | 0 | 123,159,351 | 100% | ||
burakyap | 0 | 966,509,739 | 100% | ||
ercankal | 0 | 41,720,214 | 100% | ||
lakingshockey | 0 | 421,835,319 | 100% | ||
arthurwh | 0 | 219,624,578 | 100% | ||
eduardog | 0 | 636,581,112 | 100% | ||
erifec | 0 | 812,187,483 | 100% | ||
elleny | 0 | 649,265,867 | 100% | ||
jerylmaeada | 0 | 218,994,254 | 21% | ||
nfaith | 0 | 1,038,899,582 | 50% | ||
dannynature | 0 | 0 | 100% | ||
hamza398 | 0 | 84,654,346 | 30% | ||
yanzie | 0 | 3,100,767,200 | 100% | ||
proxyaccount | 0 | 96,393,584 | 50% | ||
nin4i | 0 | 1,376,813,664 | 100% | ||
andyshukin | 0 | 0 | 100% | ||
apone | 0 | 1,180,550,372 | 100% | ||
renatahelena | 0 | 0 | 100% | ||
cryptojiang | 0 | 1,422,853,024 | 100% | ||
stevecronin | 0 | 8,663,545,620 | 100% | ||
suonghuynh | 0 | 450,148,308,702 | 3% | ||
frugal-fun | 0 | 0 | 100% | ||
raybull | 0 | 1,032,113,402 | 50% | ||
kafupraise | 0 | 85,746,548 | 36% | ||
champjus | 0 | 11,849,917,823 | 100% | ||
phyowinkoko | 0 | 3,227,669,619 | 100% | ||
firatuz | 0 | 4,434,322,256 | 100% | ||
oguzhanon | 0 | 2,764,145,587 | 100% | ||
ceyhan | 0 | 1,124,066,261 | 100% | ||
alamar | 0 | 469,034,720 | 100% | ||
daisydem | 0 | 9,177,783 | 100% | ||
estebann | 0 | 539,769,812 | 100% | ||
lintenhinks | 0 | 689,794,061 | 100% | ||
russellseenath | 0 | 785,913,089 | 100% | ||
carita-feliz | 0 | 461,948,303 | 100% | ||
hunterthewalrus | 0 | 473,945,145 | 90% | ||
luis26 | 0 | 459,825,570 | 100% | ||
donald.porter | 0 | 10,757,944,824 | 100% | ||
yomismosoy | 0 | 97,413,663 | 24% | ||
xyze | 0 | 299,648,576 | 100% | ||
steinz | 0 | 0 | 100% | ||
ikibaru-san | 0 | 474,287,636 | 100% | ||
cheater | 0 | 172,435,088 | 100% | ||
calprut | 0 | 20,902,159,708 | 100% | ||
xtyan | 0 | 75,268,412 | 30% | ||
robinhoodupme | 0 | 1,635,020,319 | 80% | ||
anttn | 0 | 8,091,092,065 | 10% | ||
yormalis | 0 | 438,212,114 | 100% | ||
lauraguedez | 0 | 459,500,172 | 100% | ||
sumayaaster | 0 | 554,596,763 | 100% | ||
xavierg | 0 | 459,101,778 | 100% | ||
sinf.libertador | 0 | 440,690,060 | 100% | ||
ladyceleste | 0 | 422,010,286 | 100% | ||
fallensky7 | 0 | 387,062,333 | 100% | ||
afknchill | 0 | 0 | 100% | ||
mikeyatez | 0 | 500,337,029 | 100% | ||
alan369 | 0 | 0 | 10% | ||
brammdal | 0 | 954,971,132 | 100% | ||
tntwifi | 0 | 6,921,924,390 | 35% | ||
cryptouno | 0 | 300,346,103 | 3% | ||
cryptoyzzy | 0 | 15,192,585,591 | 100% | ||
angel15 | 0 | 387,351,969 | 100% | ||
music.mari | 0 | 458,573,123 | 100% | ||
lilymusic | 0 | 457,363,871 | 100% | ||
angelforcello | 0 | 437,717,157 | 100% | ||
xxxstylexxx | 0 | 83,136,400 | 100% | ||
smartresteem | 0 | 91,647,241,582 | 100% | ||
cgp | 0 | 166,825,760 | 50% | ||
sunit | 0 | 1,243,833,757 | 100% | ||
gabbynhice | 0 | 10,755,344,700 | 25% | ||
kriptonik | 0 | 28,941,433,324 | 100% | ||
maelstrohmblack | 0 | 0 | 100% | ||
bergamote | 0 | 1,369,570,499 | 99% | ||
bobby.madagascar | 0 | 19,776,811,397 | 100% | ||
alb501 | 0 | 388,320,436 | 100% | ||
usagi-alis | 0 | 95,184,183,133 | 100% | ||
brikc | 0 | 925,938,365 | 100% | ||
mk992039 | 0 | 2,026,484,914 | 100% | ||
guurry123 | 0 | 2,336,817,924 | 100% | ||
mister-meeseeks | 0 | 13,311,241,677 | 100% | ||
marconisnghtmr | 0 | 0 | 100% | ||
l-singclear | 0 | 23,743,272,029 | 100% | ||
zeeshannaqvi72 | 0 | 0 | 100% | ||
sunilksamanta | 0 | 0 | 100% | ||
jimbi | 0 | 1,550,511,970 | 100% | ||
accumulating | 0 | 4,790,362,955 | 100% | ||
byteballer1 | 0 | 75,221,585 | 100% | ||
dandywendy | 0 | 70,897,433 | 100% | ||
loefah | 0 | 78,620,282 | 100% | ||
digestus | 0 | 80,221,513 | 100% | ||
wegenere | 0 | 78,504,148 | 100% | ||
keggler | 0 | 70,546,014 | 100% | ||
kekmac | 0 | 74,875,667 | 100% | ||
zekkler | 0 | 70,624,044 | 100% | ||
estelleh | 0 | 531,297,728 | 100% | ||
elainem8 | 0 | 531,297,728 | 100% | ||
jamesni8 | 0 | 531,297,728 | 100% | ||
clydea | 0 | 531,297,728 | 100% | ||
shortb | 0 | 106,894,397 | 100% | ||
the4thmusketeer | 0 | 0 | 56% | ||
marycecile | 0 | 85,411,161 | 30% | ||
actifit-peter | 0 | 0 | 25% | ||
jensopinion | 0 | 0 | 100% | ||
canalea | 0 | 244,593,317 | 50% | ||
cwow2 | 0 | 20,036,122,749 | 100% | ||
grexx | 0 | 244,198,378 | 50% | ||
monkaydee293 | 0 | 0 | 100% | ||
waw.worldopoly | 0 | 0 | 100% | ||
sukha | 0 | 812,935,735 | 100% | ||
glastar | 0 | 305,010,830,543 | 100% | ||
cakemonster | 0 | 11,359,845,107 | 100% | ||
the.nervi | 0 | 89,518,190 | 10% | ||
marki99 | 0 | 140,606,271,225 | 100% | ||
dom-element | 0 | 0 | 100% | ||
cageysquirrle | 0 | 107,097,680 | 35% | ||
jaimerobles | 0 | 527,289,236 | 100% | ||
hoanguyendoan | 0 | 11,851,312,554 | 3% | ||
anadello | 0 | 1,485,460,253 | 100% | ||
danemade | 0 | 21,099,840,056 | 100% | ||
lntg | 0 | 551,541,925 | 100% | ||
aellisak | 0 | 0 | 100% | ||
azuminhice | 0 | 76,573,586 | 100% | ||
dailyexpress | 0 | 2,624,203,000 | 100% | ||
singhcapital | 0 | 39,681,194,196,288 | 100% | ||
fire451 | 0 | 2,293,722,199 | 100% | ||
starfighter | 0 | 1,629,712,807 | 100% | ||
seekingalpha | 0 | 1,401,806,483 | 100% | ||
lestrange | 0 | 1,039,873,206 | 100% | ||
greelos | 0 | 528,286,808 | 100% | ||
tipu.curator | 0 | 19,085,724,949 | 50% | ||
srterryfsic | 0 | 224,293,057 | 100% | ||
portalmine.trash | 0 | 4,817,511,892 | 95% | ||
craigfrank | 0 | 0 | 100% | ||
dzentral | 0 | 644,278,138 | 100% | ||
darrenfj | 0 | 4,208,275,194 | 100% | ||
andesma | 0 | 530,127,892 | 100% | ||
dodheimsgard | 0 | 180,973,436 | 100% | ||
rave02 | 0 | 0 | 100% | ||
gabu01 | 0 | 46,829,769,995 | 100% | ||
phx3 | 0 | 0 | 100% | ||
limka | 0 | 4,255,350,828 | 100% | ||
richie.rich | 0 | 1,091,000,319 | 25% | ||
bitcoinhex | 0 | 2,199,233,589 | 100% | ||
curation.trail | 0 | 1,100,481,664 | 1.8% | ||
piandex | 0 | 0 | 5% | ||
rareandshiny | 0 | 0 | 100% | ||
ahmad575447 | 0 | 377,634,944 | 100% | ||
rugdealer | 0 | 0 | 100% | ||
opelkus | 0 | 499,687,113 | 100% | ||
myflo100 | 0 | 129,593,197 | 100% | ||
minixi | 0 | 887,517,452 | 100% | ||
assfaceproject | 0 | 1,737,969,140 | 100% | ||
ivicamarica | 0 | 528,388,923 | 100% | ||
iaf29 | 0 | 0 | 100% | ||
vcdragon | 0 | 0 | 100% | ||
tryp | 0 | 1,880,972,550 | 100% | ||
thomasbarik | 0 | 2,203,168,313 | 100% | ||
brasan | 0 | 4,478,507,388 | 100% | ||
briansfh77 | 0 | 248,945,596 | 50% | ||
vndragon | 0 | 0 | 100% | ||
muhammadashfaq | 0 | 528,468,906 | 100% | ||
maxblaschke | 0 | 0 | 100% | ||
lequiry | 0 | 0 | 100% | ||
jerdep | 0 | 0 | 100% | ||
ronaldjoannes | 0 | 248,159,081 | 50% | ||
spoiledvisuals | 0 | 0 | 100% | ||
santoshi3 | 0 | 627,881,036 | 100% | ||
msowner1 | 0 | 2,054,557,267 | 100% | ||
msowner2 | 0 | 1,875,577,617 | 100% | ||
bergelmirsenpai | 0 | 0 | 100% | ||
onevisioninc | 0 | 0 | 100% | ||
staffyprod | 0 | 527,409,924 | 100% | ||
frostyxd | 0 | 529,221,387 | 100% | ||
billsi | 0 | 0 | 100% | ||
sellmytalent | 0 | 0 | 100% | ||
sallhiddles | 0 | 532,035,730 | 100% | ||
yakara | 0 | 0 | 100% | ||
dkalmus | 0 | 0 | 100% | ||
dmbss | 0 | 0 | 100% | ||
trickrides | 0 | 0 | 100% | ||
gabugeekreloaded | 0 | 0 | 100% | ||
mvo11 | 0 | 0 | 100% | ||
marcristina | 0 | 0 | 0% | ||
krito | 0 | 0 | 100% | ||
mary125 | 0 | 0 | 100% | ||
oak1998 | 0 | 0 | 100% | ||
doggy5 | 0 | 0 | 100% | ||
authentik | 0 | 0 | 100% | ||
mkds2012 | 0 | 0 | 100% | ||
treyton08 | 0 | 0 | 100% | ||
lolboysgaming | 0 | 0 | 100% |
Very cool @supermeatboy showed me this on https://steemspeak.com so i upvoted resteemed and also i want to know how i can place a bet and buy those steemie tokens to play? I press place bet and northng happens
author | ackza |
---|---|
permlink | re-moonsteem-moonsteem-provably-fair-crash-game-powered-by-the-steem-blockchain-or-seeding-event-20190227t073609462z |
category | moonsteem |
json_metadata | {"tags":["moonsteem"],"users":["supermeatboy"],"links":["https://steemspeak.com"],"app":"steemit/0.1"} |
created | 2019-02-27 07:36:12 |
last_update | 2019-02-27 07:36:12 |
depth | 1 |
children | 1 |
last_payout | 2019-03-06 07:36: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 | 209 |
author_reputation | 287,695,264,112,368 |
root_title | "moonSTEEM - Provably Fair crash game powered by the Steem Blockchain | Seeding Event" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,478,342 |
net_rshares | 616,178,798 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jaimerobles | 0 | 0 | 100% | ||
msowner2 | 0 | 616,178,798 | 10% |
nice ! ya steemies shd be credited after a min or so. might need to refresh your game page for it to be reflected. How to play Just place your bet using the button above chat box, as the multiplier increase, your profit also increase. You can choose to cashout anytime because you have control (u can tweak the settings under manual or if you like it in auto mode). Note the multiplier may crash anytime. For trial, maybe you can do 1 steemie with autocashout 1.1x to have a feel of it.
author | msowner2 |
---|---|
permlink | re-ackza-re-moonsteem-moonsteem-provably-fair-crash-game-powered-by-the-steem-blockchain-or-seeding-event-20190227t120023700z |
category | moonsteem |
json_metadata | {"tags":["moonsteem"],"app":"steemit/0.1"} |
created | 2019-02-27 12:00:27 |
last_update | 2019-02-27 12:00:27 |
depth | 2 |
children | 0 |
last_payout | 2019-03-06 12:00:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.019 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 490 |
author_reputation | 264,549,673,006 |
root_title | "moonSTEEM - Provably Fair crash game powered by the Steem Blockchain | Seeding Event" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,486,544 |
net_rshares | 43,844,741,152 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tytran | 0 | 43,315,926,900 | 21% | ||
steinz | 0 | 0 | 50% | ||
elllanero | 0 | 528,814,252 | 100% |
Are you guys taking delegations? Posted using [Partiko iOS](https://steemit.com/@partiko-ios)
author | cryptictruth |
---|---|
permlink | cryptictruth-re-moonsteem-moonsteem-provably-fair-crash-game-powered-by-the-steem-blockchain-or-seeding-event-20190226t224022585z |
category | moonsteem |
json_metadata | {"app":"partiko","client":"ios"} |
created | 2019-02-26 22:40:21 |
last_update | 2019-02-26 22:40:21 |
depth | 1 |
children | 3 |
last_payout | 2019-03-05 22:40:21 |
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 | 94 |
author_reputation | 236,194,192,776,692 |
root_title | "moonSTEEM - Provably Fair crash game powered by the Steem Blockchain | Seeding Event" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,462,042 |
net_rshares | 16,717,480,355 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stokjockey | 0 | 16,717,480,355 | 26% | ||
jaimerobles | 0 | 0 | 100% |
=)
author | msowner2 |
---|---|
permlink | re-cryptictruth-cryptictruth-re-moonsteem-moonsteem-provably-fair-crash-game-powered-by-the-steem-blockchain-or-seeding-event-20190227t115903800z |
category | moonsteem |
json_metadata | {"tags":["moonsteem"],"app":"steemit/0.1"} |
created | 2019-02-27 11:59:06 |
last_update | 2019-02-27 11:59:06 |
depth | 2 |
children | 0 |
last_payout | 2019-03-06 11:59: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 | 2 |
author_reputation | 264,549,673,006 |
root_title | "moonSTEEM - Provably Fair crash game powered by the Steem Blockchain | Seeding Event" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,486,489 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jaimerobles | 0 | 0 | 100% |
If They Do I Will Delegate.......
author | stokjockey |
---|---|
permlink | re-cryptictruth-cryptictruth-re-moonsteem-moonsteem-provably-fair-crash-game-powered-by-the-steem-blockchain-or-seeding-event-20190227t074959809z |
category | moonsteem |
json_metadata | {"tags":["moonsteem"],"app":"steemit/0.1"} |
created | 2019-02-27 07:50:09 |
last_update | 2019-02-27 07:50:09 |
depth | 2 |
children | 1 |
last_payout | 2019-03-06 07:50:09 |
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 | 33 |
author_reputation | 128,093,809,597,350 |
root_title | "moonSTEEM - Provably Fair crash game powered by the Steem Blockchain | Seeding Event" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,478,760 |
net_rshares | 0 |
....
author | msowner2 |
---|---|
permlink | re-stokjockey-re-cryptictruth-cryptictruth-re-moonsteem-moonsteem-provably-fair-crash-game-powered-by-the-steem-blockchain-or-seeding-event-20190227t115919800z |
category | moonsteem |
json_metadata | {"tags":["moonsteem"],"app":"steemit/0.1"} |
created | 2019-02-27 11:59:21 |
last_update | 2019-02-27 11:59:21 |
depth | 3 |
children | 0 |
last_payout | 2019-03-06 11:59:21 |
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 | 4 |
author_reputation | 264,549,673,006 |
root_title | "moonSTEEM - Provably Fair crash game powered by the Steem Blockchain | Seeding Event" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,486,497 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steinz | 0 | 0 | 50% |
This post has been included in the latest edition of [**SoS Daily News**](https://steemit.com/steem/@pennsif/sosdailynewsnewsaboutthestateofsteem23february2019-vbjg52i8dm) - a digest of all you need to know about the State of Steem.
author | pennsif |
---|---|
permlink | re-moonsteem-moonsteem-provably-fair-crash-game-powered-by-the-steem-blockchain-or-seeding-event-20190224t143306463z |
category | moonsteem |
json_metadata | {"tags":["moonsteem"],"links":["https://steemit.com/steem/@pennsif/sosdailynewsnewsaboutthestateofsteem23february2019-vbjg52i8dm"],"app":"steemit/0.1"} |
created | 2019-02-24 14:33:09 |
last_update | 2019-02-24 14:33:09 |
depth | 1 |
children | 0 |
last_payout | 2019-03-03 14:33:09 |
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 | 233 |
author_reputation | 636,410,097,572,565 |
root_title | "moonSTEEM - Provably Fair crash game powered by the Steem Blockchain | Seeding Event" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,329,154 |
net_rshares | 0 |
@msowner2 @moonsteem can i have more credits?
author | ronaldjoannes |
---|---|
permlink | re-moonsteem-moonsteem-provably-fair-crash-game-powered-by-the-steem-blockchain-or-seeding-event-20190228t173227701z |
category | moonsteem |
json_metadata | {"tags":["moonsteem"],"users":["msowner2","moonsteem"],"app":"steemit/0.1"} |
created | 2019-02-28 17:32:27 |
last_update | 2019-02-28 17:32:27 |
depth | 1 |
children | 1 |
last_payout | 2019-03-07 17:32: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 | 45 |
author_reputation | 882,310,130 |
root_title | "moonSTEEM - Provably Fair crash game powered by the Steem Blockchain | Seeding Event" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,545,270 |
net_rshares | 637,662,201 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jaimerobles | 0 | 0 | 100% | ||
msowner2 | 0 | 637,662,201 | 10% |
just upvote moonsteem post(s) =)
author | msowner2 |
---|---|
permlink | re-ronaldjoannes-re-moonsteem-moonsteem-provably-fair-crash-game-powered-by-the-steem-blockchain-or-seeding-event-20190303t012318900z |
category | moonsteem |
json_metadata | {"tags":["moonsteem"],"community":"steempeak","app":"steempeak/1.8.1b"} |
created | 2019-03-03 01:23:21 |
last_update | 2019-03-03 01:23:21 |
depth | 2 |
children | 0 |
last_payout | 2019-03-10 01:23:21 |
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 | 32 |
author_reputation | 264,549,673,006 |
root_title | "moonSTEEM - Provably Fair crash game powered by the Steem Blockchain | Seeding Event" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,655,879 |
net_rshares | 0 |
Cool
author | srterryfsic |
---|---|
permlink | re-moonsteem-moonsteem-provably-fair-crash-game-powered-by-the-steem-blockchain-or-seeding-event-20190228t151119272z |
category | moonsteem |
json_metadata | {"tags":["moonsteem"],"app":"steemit/0.1"} |
created | 2019-02-28 15:11:21 |
last_update | 2019-02-28 15:11:21 |
depth | 1 |
children | 0 |
last_payout | 2019-03-07 15:11:21 |
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 | 4 |
author_reputation | 39,194,531,628 |
root_title | "moonSTEEM - Provably Fair crash game powered by the Steem Blockchain | Seeding Event" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,539,628 |
net_rshares | 0 |
!bookkeeping magicdice
author | supermeatboy |
---|---|
permlink | re-moonsteem-moonsteem-provably-fair-crash-game-powered-by-the-steem-blockchain-or-seeding-event-20190321t004838086z |
category | moonsteem |
json_metadata | {"tags":["moonsteem"],"app":"steemit/0.1"} |
created | 2019-03-21 00:48:39 |
last_update | 2019-03-21 00:48:39 |
depth | 1 |
children | 7 |
last_payout | 2019-03-28 00:48: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 | 22 |
author_reputation | 52,436,692,510,211 |
root_title | "moonSTEEM - Provably Fair crash game powered by the Steem Blockchain | Seeding Event" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,647,606 |
net_rshares | 690,634,688 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
msowner2 | 0 | 690,634,688 | 10% |
Hi @supermeatboy! ## magicdice #### Received: * 1895.449 STEEM * 0.000 STEEM from referral * 0.000 STEEM from delegation * 0.180 STEEM from dividends * 0.001 SBD * 0.000 SBD from referral * 0.000 SBD from delegation * 0.000 SBD from dividends #### Spent: * 1610.161 STEEM * 0.471 SBD #### Total: * 285.468 STEEM * -0.470 SBD
author | bookkeeping |
---|---|
permlink | re-re-moonsteem-moonsteem-provably-fair-crash-game-powered-by-the-steem-blockchain-or-seeding-event-20190321t004838086z-20190321t004939z |
category | moonsteem |
json_metadata | "{"app": "bookkeeping/0.1.0"}" |
created | 2019-03-21 00:49:39 |
last_update | 2019-03-21 00:49:39 |
depth | 2 |
children | 0 |
last_payout | 2019-03-28 00:49: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 | 326 |
author_reputation | 1,614,107,404,118 |
root_title | "moonSTEEM - Provably Fair crash game powered by the Steem Blockchain | Seeding Event" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,647,639 |
net_rshares | 0 |
hey there smb ! cya on v2
author | msowner2 |
---|---|
permlink | re-supermeatboy-re-moonsteem-moonsteem-provably-fair-crash-game-powered-by-the-steem-blockchain-or-seeding-event-20190321t131259700z |
category | moonsteem |
json_metadata | {"tags":["moonsteem"],"community":"steempeak","app":"steempeak/1.9.0"} |
created | 2019-03-21 13:13:03 |
last_update | 2019-03-21 13:13:03 |
depth | 2 |
children | 5 |
last_payout | 2019-03-28 13:13:03 |
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 | 25 |
author_reputation | 264,549,673,006 |
root_title | "moonSTEEM - Provably Fair crash game powered by the Steem Blockchain | Seeding Event" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,678,463 |
net_rshares | 0 |
hurry up. am coming for your steem >:D !bookkeeping magicdice
author | supermeatboy |
---|---|
permlink | re-msowner2-re-supermeatboy-re-moonsteem-moonsteem-provably-fair-crash-game-powered-by-the-steem-blockchain-or-seeding-event-20190321t132909157z |
category | moonsteem |
json_metadata | {"tags":["moonsteem"],"app":"steemit/0.1"} |
created | 2019-03-21 13:29:12 |
last_update | 2019-03-21 13:29:12 |
depth | 3 |
children | 4 |
last_payout | 2019-03-28 13:29: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 | 62 |
author_reputation | 52,436,692,510,211 |
root_title | "moonSTEEM - Provably Fair crash game powered by the Steem Blockchain | Seeding Event" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,679,433 |
net_rshares | 0 |
This is going to be a huge leap for the steem blockchain.
author | yohann |
---|---|
permlink | re-moonsteem-moonsteem-provably-fair-crash-game-powered-by-the-steem-blockchain-or-seeding-event-20190226t083620192z |
category | moonsteem |
json_metadata | {"tags":["moonsteem"],"app":"steemit/0.1"} |
created | 2019-02-26 08:35:09 |
last_update | 2019-02-26 08:35:09 |
depth | 1 |
children | 1 |
last_payout | 2019-03-05 08:35:09 |
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 | 57 |
author_reputation | 4,557,296,028,055 |
root_title | "moonSTEEM - Provably Fair crash game powered by the Steem Blockchain | Seeding Event" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,422,611 |
net_rshares | 0 |
only time will tell, we are aiming for the moon !! =)
author | msowner2 |
---|---|
permlink | re-yohann-re-moonsteem-moonsteem-provably-fair-crash-game-powered-by-the-steem-blockchain-or-seeding-event-20190227t115827400z |
category | moonsteem |
json_metadata | {"tags":["moonsteem"],"app":"steemit/0.1"} |
created | 2019-02-27 11:58:30 |
last_update | 2019-02-27 11:58:30 |
depth | 2 |
children | 0 |
last_payout | 2019-03-06 11:58:30 |
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 | 53 |
author_reputation | 264,549,673,006 |
root_title | "moonSTEEM - Provably Fair crash game powered by the Steem Blockchain | Seeding Event" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,486,464 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steinz | 0 | 0 | 50% |