The official STEEM public node, `api.steemit.com` started routing some of the endpoints (follow api + tags api) to a Hivemind instance. It looks like the [current migration](https://steemit.com/hivemind/@steemitblog/hivemind-is-live) performs well. I have been [running a public Hivemind node](https://steemit.com/hivemind/@emrebeyler/introducing-a-public-hivemind-node) for a while. Current endpoint list of Hivemind is limited, however, it has a *powerful database* where you can filter and audit blockchain actions. Hivemind doesn't sync every type of operation into its internal database. But, you can access - accounts - posts/comments - relationships (follows, reblogs, etc.) with a direct SQL query. # Introducing [Tower](https://github.com/emre/tower) <center><img src="https://cdn.steemitimages.com/DQmNQ8RsVgaVaSw9uaezw7FjvEFxMZNWksejZg24TXF31Lz/Screen%20Shot%202019-01-16%20at%202.28.27%20PM.png"></center> Tower is a solution to expose the Hivemind's database as REST API interface. You can have a look at the documentation at [tower.emrebeyler.me](https://tower.emrebeyler.me), and the base URL for the API is: `https://tower.emrebeyler.me/api/v1/`. # Example Calls (/api/v1/accounts) - Get the accounts in Germany, ordered by highest reputation **[/api/v1/accounts/?location__contains=Germany&ordering=-reputation](https://tower.emrebeyler.me/api/v1/accounts/?location__contains=Germany&ordering=-reputation)** - Get the most followed accounts (Top10) **[/api/v1/accounts/?ordering=-followers&limit=10](https://tower.emrebeyler.me/api/v1/accounts/?ordering=-followers&limit=10)** - List the accounts selected @inertia as their witness voting proxy **[/api/v1/accounts/?proxy=inertia](https://tower.emrebeyler.me/api/v1/accounts/?proxy=inertia)** - Get an account detail [api/v1/accounts/emrebeyler/](https://tower.emrebeyler.me/api/v1/accounts/emrebeyler/) # Example Calls (/api/v1/post_cache) <center><img src="https://cdn.steemitimages.com/DQmWAWjBSWBriHd9deVTwra5z4F2RpmVYCp4eDDcT1ihcUm/Screen%20Shot%202019-01-16%20at%202.29.05%20PM.png"></center> - List @emrebeyler's posts ordered by highest payout [/api/v1/post_cache/?author=emrebeyler&ordering=-payout](http://tower.emrebeyler.me/api/v1/post_cache/?author=emrebeyler&ordering=-payout) - Find @inertia's first post in the chain [api/v1/post_cache/?author=inertia&ordering=created_at&limit=1](http://tower.emrebeyler.me/api/v1/post_cache/?author=inertia&ordering=created_at&limit=1) # Example Calls (/api/v1/posts/) - Find @emrebeyler's posts where the community was dpoll. [api/v1/posts/?author=emrebeyler&community=poll](https://tower.emrebeyler.me/api/v1/posts/?author=emrebeyler&community=poll) - Find an author's deleted posts/comments [/api/v1/posts/?is_deleted=True&limit=10&author=author](https://tower.emrebeyler.me/api/v1/posts/?is_deleted=True&limit=10&author=author) *** These are just example queries. Make sure to check the documentation for filters and ordering options. # Limitations Available filters and ordering choices may subject to change in the future. Also, keep in mind that this is an experimental service and depending of the costs, my `tower.emrebeyler.me` may become private. # Technical Details Tower is a Python3.6 and Django application. It uses [DRF](https://django-rest-framework.org) to expose [database models](https://github.com/emre/tower/blob/master/hive/models.py) as a REST interface. If you want to run a `Tower` instance, follow these steps. # Installation ``` $ git clone https://github.com/emre/tower.git $ python3.6 -m venv tower-env $ source tower-env/bin/activate $ cd tower $ pip install -r requirements.txt ``` # Configuration ``` $ vim tower/local_settings.py ``` Add database information of your Hivemind: ``` DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql_psycopg2', 'NAME': 'db_name', 'USER': 'db_user', 'PASSWORD': 'db_password', 'HOST': 'host', 'PORT': 'port', } } ``` # Running For development: ``` $ python manage.py runserver ``` For production: ``` $ gunicorn tower.wsgi ``` # Roadmap - More filtering options on `posts` and `posts_cache` tables. These tables are huge and don't have many indexes. If I come up with a fast solution, I plan to add more filtering options. - Additional view sets for relationships (follow, reblog, etc.) These are already handled on the hive's internal RPC server, not a priority but good to have. # Post Updates - @ausbitbank has a new tower node located at https://hivemind.steemviz.com. Thank you! - @jrawsthorne has an alternative graphql implementation located at https://steem-graphql.jakerawsthorne.co.uk/. # Vote for me as a witness I do my best to support the blockchain with my skills. If you like what I do, consider casting a vote on [via Steemconnect](https://steemconnect.com/sign/account-witness-vote?witness=emrebeyler&approve=1) or on [steemit.com](https://steemit.com/~witnesses).
author | emrebeyler |
---|---|
permlink | tower-a-rest-api-implementation-on-the-top-of-hivemind |
category | utopian-io |
json_metadata | {"tags":["utopian-io","development","hivemind","programming"],"users":["inertia","emrebeyler","ausbitbank","jrawsthorne"],"app":"steemit/0.1","image":["https://cdn.steemitimages.com/DQmNQ8RsVgaVaSw9uaezw7FjvEFxMZNWksejZg24TXF31Lz/Screen%20Shot%202019-01-16%20at%202.28.27%20PM.png","https://cdn.steemitimages.com/DQmWAWjBSWBriHd9deVTwra5z4F2RpmVYCp4eDDcT1ihcUm/Screen%20Shot%202019-01-16%20at%202.29.05%20PM.png"],"links":["https://steemit.com/hivemind/@steemitblog/hivemind-is-live","https://steemit.com/hivemind/@emrebeyler/introducing-a-public-hivemind-node","https://github.com/emre/tower","https://tower.emrebeyler.me","https://tower.emrebeyler.me/api/v1/accounts/?location__contains=Germany&ordering=-reputation","https://tower.emrebeyler.me/api/v1/accounts/?ordering=-followers&limit=10","https://tower.emrebeyler.me/api/v1/accounts/?proxy=inertia","https://tower.emrebeyler.me/api/v1/accounts/emrebeyler/","http://tower.emrebeyler.me/api/v1/post_cache/?author=emrebeyler&ordering=-payout","http://tower.emrebeyler.me/api/v1/post_cache/?author=inertia&ordering=created_at&limit=1","https://tower.emrebeyler.me/api/v1/posts/?author=emrebeyler&community=poll","https://tower.emrebeyler.me/api/v1/posts/?is_deleted=True&limit=10&author=author","https://django-rest-framework.org","https://github.com/emre/tower/blob/master/hive/models.py","https://hivemind.steemviz.com","https://steem-graphql.jakerawsthorne.co.uk/","https://steemconnect.com/sign/account-witness-vote?witness=emrebeyler&approve=1","https://steemit.com/~witnesses"],"community":"busy","format":"markdown"} |
created | 2019-01-16 12:47:57 |
last_update | 2019-01-17 07:38:57 |
depth | 0 |
children | 94 |
last_payout | 2019-01-23 12:47:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 184.818 HBD |
curator_payout_value | 58.432 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4,999 |
author_reputation | 448,528,959,341,273 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,453,578 |
net_rshares | 406,817,210,165,877 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
berniesanders | 0 | 47,737,077,362 | 5% | ||
tombstone | 0 | 5,833,580,200,057 | 28% | ||
roadscape | 0 | 6,624,707,458,843 | 100% | ||
bue | 0 | 2,847,456,281,827 | 100% | ||
chitty | 0 | 96,447,901,554 | 100% | ||
tshering-tamang | 0 | 163,860,365,713 | 100% | ||
nanzo-scoop | 0 | 5,949,342,532,310 | 100% | ||
acidyo | 0 | 12,261,261,558,491 | 100% | ||
mummyimperfect | 0 | 83,169,122,409 | 100% | ||
pepeceas | 0 | 1,138,916,275 | 100% | ||
ak2020 | 0 | 36,699,165,377 | 100% | ||
billbutler | 0 | 637,355,256,894 | 100% | ||
eric-boucher | 0 | 85,095,926,796 | 25% | ||
the-alien | 0 | 3,824,164,283 | 100% | ||
dahaz159 | 0 | 141,066,008,192 | 100% | ||
stephen-somers | 0 | 14,054,953,178 | 18% | ||
lukestokes | 0 | 3,197,630,967,838 | 100% | ||
emily-cook | 0 | 3,208,190,849 | 100% | ||
gtg | 0 | 8,124,736,601,187 | 100% | ||
primus | 0 | 110,698,820,683 | 100% | ||
grey580 | 0 | 40,919,320,263 | 100% | ||
field | 0 | 6,159,442,198 | 100% | ||
knircky | 0 | 2,172,954,089,375 | 100% | ||
ausbitbank | 0 | 1,654,707,247,543 | 100% | ||
bycz | 0 | 59,176,210,774 | 100% | ||
inertia | 0 | 1,510,082,125,800 | 100% | ||
claudiop63 | 0 | 2,472,211,929 | 100% | ||
shortcut | 0 | 2,409,085,292 | 10% | ||
gomeravibz | 0 | 189,984,206,557 | 100% | ||
felixxx | 0 | 432,829,857,421 | 100% | ||
najoh | 0 | 11,138,038,693 | 100% | ||
timcliff | 0 | 948,185,625,696 | 78% | ||
achim86 | 0 | 15,578,724,211 | 100% | ||
surfermarly | 0 | 6,394,235,357 | 100% | ||
jphamer1 | 0 | 1,392,166,254,117 | 100% | ||
ekitcho | 0 | 2,030,260,841,176 | 100% | ||
velourex | 0 | 62,363,587,844 | 100% | ||
shivohum2015 | 0 | 70,607,398,672 | 100% | ||
mione | 0 | 59,765,561,225 | 100% | ||
rubenalexander | 0 | 143,184,812,541 | 38% | ||
cryptomancer | 0 | 3,402,653,629,471 | 100% | ||
steemitpatina | 0 | 24,999,405,419 | 80% | ||
runridefly | 0 | 4,536,467,160 | 15% | ||
krnel | 0 | 285,200,746,177 | 20% | ||
darkflame | 0 | 28,740,210,438 | 100% | ||
flashjordan | 0 | 1,561,948,358 | 100% | ||
aggroed | 0 | 2,386,595,083,666 | 100% | ||
ksena | 0 | 5,317,084,878 | 100% | ||
sixteen4narchist | 0 | 204,293,690 | 100% | ||
phusionphil | 0 | 482,263,006 | 1.9% | ||
masonmiler | 0 | 28,395,358,375 | 48.79% | ||
thecyclist | 0 | 9,393,323,206 | 5% | ||
bluehorseshoe | 0 | 3,456,086,998 | 100% | ||
marohf | 0 | 2,495,459,511 | 100% | ||
elena-singer | 0 | 39,254,775,205 | 100% | ||
cnfund | 0 | 391,073,806,152 | 100% | ||
abh12345 | 0 | 149,073,722,814 | 25% | ||
brains | 0 | 138,166,109,852 | 100% | ||
positivesteem | 0 | 122,178,189,006 | 100% | ||
whatsup | 0 | 414,953,154,812 | 100% | ||
t-bot | 0 | 3,764,950,814,582 | 100% | ||
alnedkov | 0 | 16,921,071,076 | 100% | ||
btshuang | 0 | 391,360,917,080 | 100% | ||
eforucom | 0 | 20,888,115,133 | 1% | ||
senseye | 0 | 95,828,643,451 | 100% | ||
ura-soul | 0 | 322,863,791,365 | 100% | ||
rishi556 | 0 | 7,614,176,303 | 100% | ||
techslut | 0 | 68,745,549,042 | 20% | ||
steemsportsfund | 0 | 184,316,583,841 | 100% | ||
zymer | 0 | 108,771,620,662 | 100% | ||
bukiland | 0 | 19,660,366,933 | 9.99% | ||
decebal2dac | 0 | 8,211,208,619 | 100% | ||
hansikhouse | 0 | 12,222,557,543 | 25% | ||
voronoi | 0 | 32,567,012,210 | 50% | ||
ahmadmanga | 0 | 25,355,190,687 | 100% | ||
eroche | 0 | 51,376,683,733 | 100% | ||
fratheone | 0 | 5,863,166,527 | 100% | ||
cryptospacetwit | 0 | 1,001,304,450,649 | 100% | ||
mexcation | 0 | 1,639,180,524 | 100% | ||
priceoptimist | 0 | 1,771,634,679 | 100% | ||
apsu | 0 | 62,052,502,272 | 100% | ||
igormuba | 0 | 38,996,254,122 | 100% | ||
teamhumble | 0 | 69,593,120,379 | 100% | ||
mafeeva | 0 | 110,138,312,314 | 100% | ||
mow | 0 | 2,055,779,292 | 100% | ||
pes7md | 0 | 137,914,179 | 25% | ||
chappers | 0 | 518,197,594 | 100% | ||
valth | 0 | 178,584,490,298 | 100% | ||
cardboard | 0 | 3,395,652,175 | 100% | ||
estaterrestre | 0 | 16,319,528,381 | 100% | ||
v4vapid | 0 | 13,834,774,445,118 | 100% | ||
anthonyadavisii | 0 | 80,064,814,922 | 100% | ||
gary911 | 0 | 3,508,235,427 | 100% | ||
madlenfox | 0 | 24,833,994,383 | 50% | ||
personz | 0 | 8,239,812,403 | 100% | ||
leonardogauna | 0 | 1,559,867,690 | 100% | ||
things | 0 | 4,833,083,390 | 100% | ||
heymattsokol | 0 | 941,059,194 | 15% | ||
ejemai | 0 | 12,634,759,318 | 10% | ||
pivx | 0 | 77,593,942,764 | 100% | ||
paolobeneforti | 0 | 16,740,225,855 | 15% | ||
coolthingssite | 0 | 1,539,454,535 | 100% | ||
eletom | 0 | 2,856,444,245 | 100% | ||
shaunmza | 0 | 50,434,633,309 | 100% | ||
maximdraws | 0 | 13,688,948,285 | 100% | ||
amrizal | 0 | 1,550,898,612 | 100% | ||
hightouch | 0 | 12,073,540,067 | 100% | ||
sn0n | 0 | 7,242,536,000 | 100% | ||
stevennoppebrian | 0 | 2,429,498,762 | 100% | ||
zephyraijunzo | 0 | 124,304,838,186 | 100% | ||
markkujantunen | 0 | 135,810,737,055 | 100% | ||
sdavignon | 0 | 1,189,948,963 | 100% | ||
tiagopaixao | 0 | 1,604,163,333 | 100% | ||
tincho | 0 | 1,131,602,565,693 | 100% | ||
ackza | 0 | 215,468,336,902 | 100% | ||
elmetro | 0 | 45,674,047,083 | 100% | ||
blockops | 0 | 1,325,016,344,112 | 100% | ||
saarman | 0 | 2,316,448,067 | 100% | ||
steven-patrick | 0 | 3,373,386,356 | 100% | ||
rjovi | 0 | 751,688,543 | 100% | ||
lawrenceho84 | 0 | 149,611,832,852 | 100% | ||
borislavzlatanov | 0 | 2,553,601,203 | 100% | ||
gunina | 0 | 154,293,959 | 50% | ||
rhanna10km | 0 | 1,640,563,072,616 | 100% | ||
danielsaori | 0 | 78,724,367,248 | 100% | ||
inceptionally | 0 | 289,767,848,117 | 100% | ||
gamemusic | 0 | 14,330,295,357 | 100% | ||
jondahl | 0 | 2,139,673,454 | 100% | ||
dexter-stoner | 0 | 2,475,101,694 | 100% | ||
jamhuery | 0 | 1,891,330,083 | 100% | ||
miniature-tiger | 0 | 134,630,814,169 | 50% | ||
erb | 0 | 3,451,738,819 | 10% | ||
toninux | 0 | 216,686,112 | 24.5% | ||
teachblogger | 0 | 236,760,867 | 5% | ||
msg768 | 0 | 8,138,914,251 | 2% | ||
blockchainnomad | 0 | 97,921,496,852 | 100% | ||
kenan1989 | 0 | 658,530,975 | 50% | ||
sqamemal | 0 | 1,635,205,897 | 100% | ||
mes | 0 | 168,207,161,353 | 50% | ||
thelordsfinest | 0 | 10,714,703,113 | 100% | ||
nolnocluap | 0 | 101,274,611,976 | 100% | ||
cryptocurator | 0 | 102,679,636,067 | 50% | ||
eurogee | 0 | 504,607,093 | 5% | ||
xplosive | 0 | 7,552,575,430 | 100% | ||
steemchiller | 0 | 113,551,987,597 | 100% | ||
ozoo | 0 | 123,812,728,737 | 100% | ||
cryptastic | 0 | 2,791,620,561 | 10% | ||
juanv | 0 | 2,346,926,808 | 100% | ||
laloelectrix | 0 | 3,437,787,654 | 100% | ||
luvabi | 0 | 3,674,348,580 | 12.5% | ||
olsm | 0 | 334,794,604,955 | 100% | ||
erkj03 | 0 | 3,170,204,860 | 100% | ||
world-travel-pro | 0 | 1,177,573,172 | 0.5% | ||
bitrocker2020 | 0 | 27,209,291,573 | 10% | ||
sekhmet | 0 | 0 | 100% | ||
drag33 | 0 | 38,931,320,041 | 100% | ||
jakipatryk | 0 | 28,659,684,920 | 100% | ||
anforo | 0 | 164,344,147,755 | 100% | ||
jga | 0 | 4,146,004,925 | 35% | ||
capitan.akela | 0 | 683,801,283 | 100% | ||
boricuapr | 0 | 2,614,572,034 | 100% | ||
tytran | 0 | 219,259,698,936 | 100% | ||
shikika | 0 | 155,798,750,386 | 100% | ||
flurgx | 0 | 79,390,977,506 | 100% | ||
gyanibilli | 0 | 2,132,910,517 | 100% | ||
helo | 0 | 156,607,938,158 | 100% | ||
dexterdumb | 0 | 59,095,166,375 | 100% | ||
tard | 0 | 106,790,055,096 | 100% | ||
freetissues | 0 | 159,250,906,072 | 100% | ||
leesongyi | 0 | 12,244,301,864 | 5% | ||
tomosan | 0 | 1,277,023,966 | 100% | ||
khairulmuammar | 0 | 9,965,165,721 | 50% | ||
thinkingtime | 0 | 148,154,204,686 | 100% | ||
talaxy | 0 | 2,754,357,436 | 100% | ||
asbear | 0 | 141,277,367,695 | 25% | ||
ruel.cedeno | 0 | 4,563,443,116 | 100% | ||
jeanpi1908 | 0 | 23,203,859,337 | 20% | ||
yoonwonlim | 0 | 6,146,492,652 | 100% | ||
kemal13 | 0 | 6,838,759,025 | 30% | ||
paperbackbook | 0 | 2,734,500,336 | 100% | ||
lifewithcrypto | 0 | 3,217,523,269 | 100% | ||
bearone | 0 | 5,303,203,374 | 5% | ||
daydreams4rock | 0 | 44,606,235,953 | 46% | ||
reddragonfly | 0 | 469,411,725 | 20% | ||
chedo | 0 | 906,331,841 | 100% | ||
mahdiyari | 0 | 158,148,246,737 | 100% | ||
nayya24 | 0 | 1,598,443,096 | 100% | ||
jorgedr0id | 0 | 8,766,756,495 | 100% | ||
subkiusman | 0 | 1,762,899,981 | 100% | ||
pennsif | 0 | 21,017,393,696 | 15% | ||
drakos | 0 | 2,735,218,906,762 | 100% | ||
asridsyaref | 0 | 266,388,003 | 10% | ||
lastozgur | 0 | 4,957,890,710 | 100% | ||
paulag | 0 | 53,333,700,469 | 17.5% | ||
dorable | 0 | 3,557,604,178 | 100% | ||
trilumia | 0 | 6,239,040,875 | 100% | ||
howtostartablog | 0 | 20,782,790,395 | 40% | ||
jayna | 0 | 7,350,015,327 | 7.5% | ||
faluthi01 | 0 | 262,114,461 | 25% | ||
indurkin | 0 | 111,962,861,950 | 100% | ||
ggd3yydze | 0 | 34,829,851 | 25% | ||
hashing247.com | 0 | 186,446,904,433 | 100% | ||
affiedalfayed | 0 | 552,898,322 | 5% | ||
win1 | 0 | 1,924,223,789 | 100% | ||
carrotcake | 0 | 479,151,927 | 5% | ||
gunthertopp | 0 | 1,619,584,946,993 | 100% | ||
klynic | 0 | 261,420,521 | 10% | ||
furious-one | 0 | 153,603,406,780 | 100% | ||
tandemus | 0 | 3,542,108,632 | 100% | ||
apoloo1 | 0 | 100,075,874,474 | 100% | ||
firatozbek | 0 | 4,508,744,411 | 100% | ||
coloringiship | 0 | 4,393,716,521 | 12.5% | ||
sndbox | 0 | 2,750,688,811,957 | 50% | ||
idcinc | 0 | 2,855,643,928 | 100% | ||
arlheena | 0 | 3,206,930,116 | 100% | ||
zararina | 0 | 61,396,792,446 | 100% | ||
eturnerx | 0 | 560,390,604,929 | 100% | ||
lisaocampo | 0 | 122,537,191,789 | 100% | ||
jacekw | 0 | 9,300,292,447 | 50% | ||
jeffrey24864 | 0 | 207,894,248,991 | 100% | ||
suruchita | 0 | 4,335,948,598 | 100% | ||
minnowbooster | 0 | 12,597,136,271,767 | 100% | ||
uriell | 0 | 5,189,504,642 | 100% | ||
sanja-cash | 0 | 3,248,794,556 | 100% | ||
ashokcan143 | 0 | 4,004,990,243 | 100% | ||
codingdefined | 0 | 23,055,103,189 | 20% | ||
hope-on-fire | 0 | 7,244,520,222 | 100% | ||
veritasvav | 0 | 135,928,479,237 | 100% | ||
freetosteemdream | 0 | 947,753,340 | 100% | ||
nicniezgrublem | 0 | 42,086,708,314 | 100% | ||
dandylion | 0 | 2,041,247,115 | 100% | ||
howo | 0 | 507,476,661,419 | 100% | ||
smartdeveloper | 0 | 106,151,915 | 35% | ||
ankarlie | 0 | 20,175,459,953 | 100% | ||
ahmadelhussein | 0 | 3,298,981,344 | 100% | ||
twoeightjune | 0 | 66,602,982,457 | 100% | ||
pachu | 0 | 1,620,805,490 | 100% | ||
themarkymark | 0 | 1,035,762,014,193 | 100% | ||
pyroken | 0 | 2,468,477,692 | 100% | ||
bugaev | 0 | 2,521,675,446 | 100% | ||
sanjeevm | 0 | 84,432,255,491 | 100% | ||
ralph-rennoldson | 0 | 239,695,837,321 | 100% | ||
nadyahusna | 0 | 1,455,609,930 | 100% | ||
faowna | 0 | 3,435,682,323 | 100% | ||
yoogyart | 0 | 10,153,202,717 | 40% | ||
upbloke | 0 | 80,647,494,765 | 100% | ||
faisalking | 0 | 3,373,108,481 | 100% | ||
bitstudio | 0 | 1,767,512,272 | 100% | ||
mikedeace | 0 | 279,563,257 | 100% | ||
steps | 0 | 444,409,315,359 | 100% | ||
mintvilla | 0 | 15,386,572,782 | 30% | ||
dsatria | 0 | 1,764,375,492 | 100% | ||
londonstaxx7 | 0 | 151,114,747 | 100% | ||
sreepyeldarb | 0 | 62,169,798,089 | 100% | ||
steemik | 0 | 5,245,234,918 | 100% | ||
kofspades | 0 | 82,901,709 | 10% | ||
robertking | 0 | 461,329,815,968 | 100% | ||
mantishands | 0 | 184,997,643,705 | 51% | ||
suci | 0 | 3,084,838,525 | 100% | ||
embalsespr | 0 | 1,578,693,724 | 100% | ||
muhammadalikatu | 0 | 1,633,872,141 | 100% | ||
leotrap | 0 | 1,595,288,253 | 2.5% | ||
kasho | 0 | 304,008,010,710 | 100% | ||
elysiian | 0 | 567,093,188,925 | 100% | ||
valerious | 0 | 2,154,899,256 | 100% | ||
zhenek | 0 | 2,624,455,169 | 100% | ||
steemhive | 0 | 3,078,891,271 | 100% | ||
somethingburger | 0 | 4,544,605,029 | 50% | ||
rockz | 0 | 199,269,304,861 | 100% | ||
foruni73 | 0 | 102,531,225,714 | 100% | ||
tanyaschutte | 0 | 469,655,805 | 7.5% | ||
steemitph | 0 | 11,323,993,415 | 25% | ||
stevendion | 0 | 1,577,164,942 | 100% | ||
cifer | 0 | 1,372,849,649 | 12% | ||
dream.trip | 0 | 4,674,752,740 | 100% | ||
onetin84 | 0 | 140,430,682,467 | 100% | ||
izmy.steemit | 0 | 1,862,617,452 | 100% | ||
costanza | 0 | 160,224,569,189 | 100% | ||
roman1973 | 0 | 4,174,515,550 | 100% | ||
rasif | 0 | 3,424,614,749 | 100% | ||
netraleon | 0 | 2,050,251,243 | 100% | ||
enky-petrozky | 0 | 153,483,979 | 100% | ||
mohssine | 0 | 552,713,872 | 100% | ||
dong262514 | 0 | 352,960,215,859 | 100% | ||
tigerz | 0 | 2,751,637,818 | 100% | ||
masterwriter | 0 | 1,310,914,848 | 100% | ||
djlethalskillz | 0 | 21,233,440,647 | 100% | ||
melbookermusic | 0 | 116,152,681,877 | 100% | ||
techblogger | 0 | 70,273,853,629 | 100% | ||
blackben | 0 | 245,645,888 | 50% | ||
dewdrop | 0 | 77,913,288,232 | 100% | ||
adnanmengal | 0 | 1,811,073,100 | 100% | ||
alif420 | 0 | 1,534,261,273 | 100% | ||
rocky1 | 0 | 49,440,493,668,862 | 81.97% | ||
asianetwork | 0 | 6,351,277,869 | 100% | ||
infinitelearning | 0 | 10,413,448,811 | 100% | ||
tipu | 0 | 47,396,459,475,615 | 91.18% | ||
dayoung | 0 | 13,064,921,211 | 25% | ||
crokkon | 0 | 50,908,183,391 | 50% | ||
fbslo | 0 | 8,153,962,839 | 100% | ||
akashas | 0 | 6,983,638,444 | 100% | ||
accelerator | 0 | 15,755,021,102 | 1.11% | ||
etnospace | 0 | 989,994,209 | 100% | ||
markjason | 0 | 1,941,590,090 | 50% | ||
anna-mi | 0 | 332,547,608 | 25% | ||
karcher-310 | 0 | 1,357,799,120 | 100% | ||
blokz | 0 | 552,466,413 | 100% | ||
arturoalex00 | 0 | 793,560,910 | 100% | ||
tomiscurious | 0 | 102,169,553,268 | 100% | ||
helix | 0 | 84,831,772,083 | 100% | ||
rosatravels | 0 | 130,150,674,824 | 100% | ||
cotarelo | 0 | 165,601,974,576 | 100% | ||
smafey | 0 | 193,245,610 | 24.5% | ||
scorer | 0 | 123,829,203,155 | 100% | ||
szabolcs | 0 | 126,248,187 | 100% | ||
espoem | 0 | 94,076,082,005 | 50.19% | ||
visualneo | 0 | 1,764,853,169 | 100% | ||
playitforward | 0 | 13,441,924,617 | 15% | ||
strefanetu | 0 | 82,591,230 | 5% | ||
cassyjanine | 0 | 3,551,132,776 | 100% | ||
mcfarhat | 0 | 42,007,024,532 | 28.68% | ||
bollutech | 0 | 3,622,013,646 | 100% | ||
angelol | 0 | 201,621,938,877 | 100% | ||
critic-on | 0 | 155,400,142 | 5% | ||
nabilbouasla | 0 | 543,468,933 | 100% | ||
penauthor | 0 | 273,385,104 | 2.5% | ||
mrblinddraw | 0 | 13,379,987,348 | 45% | ||
animagic | 0 | 4,176,862,998 | 50% | ||
jacobkaled | 0 | 82,092,751 | 24.5% | ||
darsn | 0 | 2,285,028,159 | 100% | ||
venzy | 0 | 1,023,846,921 | 100% | ||
imamalkimas | 0 | 161,059,377 | 25% | ||
isnochys | 0 | 60,650,587,009 | 100% | ||
rhavi | 0 | 12,924,521,062 | 100% | ||
sumsum007 | 0 | 243,165,279 | 24.5% | ||
yangpankil27 | 0 | 45,369,265,190 | 25% | ||
investegg | 0 | 754,261,788,396 | 100% | ||
pierlave | 0 | 3,569,771,245 | 100% | ||
jrawsthorne | 0 | 5,363,445,682 | 100% | ||
alex-discord | 0 | 2,637,264,626 | 100% | ||
maaz23 | 0 | 369,188,488 | 24.5% | ||
galorum | 0 | 3,159,104,553 | 100% | ||
loshcat | 0 | 3,119,205,122 | 100% | ||
rightscomet | 0 | 94,475,544 | 24.5% | ||
myjourney | 0 | 9,061,457,573 | 100% | ||
ngc | 0 | 489,602,521,447 | 5% | ||
altumanimo | 0 | 6,936,892,041 | 100% | ||
zdamna100ogebio | 0 | 2,345,391,130 | 100% | ||
gogogadgetupvote | 0 | 90,971,760,455 | 100% | ||
murattatar | 0 | 6,098,158,288 | 20% | ||
scientes | 0 | 1,572,070,550 | 100% | ||
imaginedragon | 0 | 715,750,365 | 12.5% | ||
sevenseals | 0 | 178,110,939,579 | 100% | ||
zenc | 0 | 90,403,836 | 25% | ||
alvinauh | 0 | 8,918,858,313 | 50% | ||
leopardis | 0 | 7,394,591,414 | 100% | ||
nudgent | 0 | 93,912,503 | 24.5% | ||
astrizak | 0 | 1,811,306,072 | 100% | ||
dure | 0 | 12,482,991,963 | 100% | ||
shreyasgune | 0 | 79,227,802,522 | 100% | ||
edmundang | 0 | 2,061,138,605 | 100% | ||
utopian-io | 0 | 96,451,603,639,327 | 70% | ||
wolfenlord | 0 | 4,253,931,582 | 100% | ||
photolander | 0 | 3,712,857,441 | 100% | ||
favcau | 0 | 80,935,059,192 | 100% | ||
smaeunabs | 0 | 2,982,989,185 | 25% | ||
unforgettable | 0 | 3,322,467,318 | 100% | ||
wajidali | 0 | 1,407,871,165 | 100% | ||
maxdigi | 0 | 2,729,738,530 | 100% | ||
jaff8 | 0 | 132,666,551,040 | 71.71% | ||
jm90mm | 0 | 3,977,407,896 | 100% | ||
elchin | 0 | 693,751,013 | 100% | ||
weeezzable | 0 | 3,394,478,616 | 100% | ||
steinhammer | 0 | 723,665,917 | 20% | ||
emrebeyler | 0 | 877,695,688,398 | 100% | ||
bobinson | 0 | 36,699,787,817 | 100% | ||
seanlloyd | 0 | 287,972,835 | 1% | ||
airbud23 | 0 | 1,385,709,269,763 | 100% | ||
besthelal03 | 0 | 1,544,231,646 | 100% | ||
sailingtohappy | 0 | 399,397,157,871 | 100% | ||
dizzyapple | 0 | 7,904,289,114 | 50% | ||
scuzzy | 0 | 190,932,969 | 2.5% | ||
tbaumer2 | 0 | 3,772,201,911 | 100% | ||
jhiecortez | 0 | 253,992,983 | 50% | ||
mrmaracucho | 0 | 217,223,720 | 49% | ||
aneilpatel | 0 | 2,709,155,849 | 100% | ||
craigahamilton | 0 | 2,161,635,567 | 100% | ||
spectrums | 0 | 348,145,396 | 50% | ||
smartsteem | 0 | 25,113,099,903,554 | 18.62% | ||
etherpunk | 0 | 2,096,730,579 | 2.5% | ||
nairadaddy | 0 | 1,049,690,554 | 2.5% | ||
berkaytekinsen | 0 | 913,450,786 | 50% | ||
newsrx | 0 | 193,941,542 | 12.41% | ||
jahidhossen | 0 | 1,789,844,140 | 100% | ||
jibspark | 0 | 2,977,501,590 | 100% | ||
sidp715 | 0 | 1,401,664,473 | 100% | ||
whiterabb1t | 0 | 178,345,592 | 2.75% | ||
lowlylutfur | 0 | 2,766,394,638 | 100% | ||
jeffbernst | 0 | 151,861,618 | 10% | ||
evilest-fiend | 0 | 1,760,523,723 | 50% | ||
tentalavera | 0 | 127,762,874 | 5% | ||
scipio | 0 | 16,648,114,939 | 16.66% | ||
ludevielucero | 0 | 2,978,574,515 | 100% | ||
nasim143 | 0 | 1,683,948,248 | 100% | ||
forkonti | 0 | 542,418,180 | 100% | ||
curazao | 0 | 81,496,504 | 50% | ||
sireh | 0 | 2,792,425,185 | 12.5% | ||
hery0823 | 0 | 4,359,740,413 | 50% | ||
newslady | 0 | 3,102,659,369 | 100% | ||
steemnews-fr | 0 | 6,463,880,396 | 100% | ||
hellowhale | 0 | 153,971,431 | 100% | ||
gokos | 0 | 377,870,487 | 100% | ||
proofmaster | 0 | 2,876,626,804 | 100% | ||
yousafharoonkhan | 0 | 1,985,799,445 | 100% | ||
enjoyy | 0 | 212,432,102 | 24.5% | ||
infinityroad | 0 | 69,307,846,319 | 100% | ||
kotik1 | 0 | 2,641,858,355 | 100% | ||
singhpratyush | 0 | 91,214,187 | 100% | ||
geekpowered | 0 | 45,288,340,142 | 100% | ||
berkerpeksag | 0 | 1,558,723,120 | 100% | ||
starsima | 0 | 2,426,629,473 | 100% | ||
aydant | 0 | 6,146,000,353 | 100% | ||
intelligencer | 0 | 0 | 100% | ||
luiscordon | 0 | 1,402,936,827 | 100% | ||
melanie00 | 0 | 1,465,247,385 | 100% | ||
eladnan | 0 | 3,686,793,774 | 100% | ||
thobo | 0 | 41,293,386,968 | 100% | ||
lovlu | 0 | 1,619,186,591 | 100% | ||
richeros | 0 | 4,235,441,168 | 100% | ||
owaishassankhan | 0 | 97,312,700 | 25% | ||
bustami83 | 0 | 83,651,484 | 25% | ||
aidnessanchez | 0 | 279,719,384 | 25% | ||
jpphotography | 0 | 46,239,129,576 | 25% | ||
saoirseronan | 0 | 1,497,968,422 | 100% | ||
turkolog | 0 | 396,251,257 | 100% | ||
abelardobravoh | 0 | 1,949,185,174 | 100% | ||
ataturk | 0 | 555,800,896 | 100% | ||
sagor5828 | 0 | 196,114,981 | 25% | ||
flashfiction | 0 | 1,624,515,878 | 50% | ||
jaredkhamanah | 0 | 1,574,770,849 | 100% | ||
jerseynash | 0 | 109,160,432,960 | 100% | ||
fortunex | 0 | 4,779,799,584 | 100% | ||
asyrafahamed | 0 | 574,019,646 | 15% | ||
jim888 | 0 | 234,464,817 | 100% | ||
ross-newman | 0 | 197,527,626 | 100% | ||
purple-pepper | 0 | 412,791,195 | 100% | ||
raphaelhuber | 0 | 2,930,145,750 | 100% | ||
tinowhale | 0 | 2,522,968,385 | 49% | ||
luoq | 0 | 3,224,616,560 | 100% | ||
rakibul098 | 0 | 2,839,621,957 | 100% | ||
patchi02 | 0 | 237,436,490 | 50% | ||
ewq | 0 | 208,466,234 | 6% | ||
artgirl | 0 | 6,280,685,204 | 90% | ||
fiducia | 0 | 91,852,725,769 | 100% | ||
holozaps | 0 | 151,424,256 | 50% | ||
lawrenceho | 0 | 216,574,332,645 | 100% | ||
paragon99 | 0 | 117,264,159 | 25% | ||
for91days | 0 | 30,709,398,980 | 100% | ||
bitcoinportugal | 0 | 1,054,767,157 | 100% | ||
betbuddha | 0 | 96,793,455,683 | 100% | ||
ordinari-guy | 0 | 425,915,919 | 100% | ||
hayirhah | 0 | 619,320,228 | 27.5% | ||
camillius | 0 | 167,935,837 | 25% | ||
lukecreed | 0 | 214,114,025 | 24.5% | ||
amosbastian | 0 | 185,274,190,922 | 71.71% | ||
rabihfarhat | 0 | 3,046,410,685 | 100% | ||
azaanwrites | 0 | 2,120,579,958 | 100% | ||
jonnahmatias1016 | 0 | 178,651,036 | 25% | ||
dsocer | 0 | 78,499,124,530 | 100% | ||
jackie2017 | 0 | 3,375,669,018 | 100% | ||
tdre | 0 | 79,942,640,826 | 100% | ||
mitxuxi | 0 | 1,459,108,526 | 100% | ||
fromhell2sky | 0 | 7,986,831,902 | 24.5% | ||
ydavgonzalez | 0 | 39,382,296,058 | 100% | ||
hkupvotebot | 0 | 2,460,290,408 | 100% | ||
mohamedhany | 0 | 518,343,209 | 100% | ||
predictionbot | 0 | 79,869,089,173 | 100% | ||
imnotasenuelo | 0 | 84,808,629 | 25% | ||
upmewhale | 0 | 25,451,490,798,297 | 47.06% | ||
stwbll | 0 | 2,668,092,503 | 100% | ||
grzesiekb | 0 | 238,900,082,017 | 100% | ||
troyslyre | 0 | 1,688,800,653 | 100% | ||
sauronbey | 0 | 3,866,934,445 | 100% | ||
asaj | 0 | 17,772,416,541 | 100% | ||
siralexf | 0 | 1,865,125,727 | 100% | ||
suhlaing | 0 | 11,936,270,683 | 100% | ||
yoghurt | 0 | 1,562,788,176 | 100% | ||
smjn | 0 | 283,463,730,650 | 50% | ||
ozzie1995 | 0 | 3,440,182,311 | 100% | ||
onursa | 0 | 382,956,355 | 100% | ||
crypto3d | 0 | 5,947,699,799 | 25% | ||
echavez82 | 0 | 372,548,949 | 80% | ||
pedrojunior | 0 | 131,259,566,166 | 100% | ||
jjay | 0 | 500,899,621 | 100% | ||
leslierevales | 0 | 400,862,085 | 50% | ||
ankavatar | 0 | 1,415,150,150 | 100% | ||
crankyfingers247 | 0 | 2,617,464,282 | 100% | ||
coinmeria | 0 | 675,099,894 | 35% | ||
ucmuharfli | 0 | 296,276,309 | 10% | ||
ssin | 0 | 2,247,050,641,471 | 100% | ||
gky | 0 | 99,421,842 | 25% | ||
culgin | 0 | 11,114,871,777 | 25% | ||
embesilikat | 0 | 294,347,115 | 13.75% | ||
polskiarrow | 0 | 762,001,003 | 100% | ||
itstime | 0 | 17,054,757,037 | 100% | ||
adamzi | 0 | 1,751,685,268 | 25% | ||
portugalcoin | 0 | 7,427,668,825 | 15% | ||
akira123 | 0 | 204,501,253 | 100% | ||
peppermint24 | 0 | 597,755,458 | 3.3% | ||
chorock | 0 | 88,295,019,730 | 9% | ||
adhinita | 0 | 2,709,212,941 | 100% | ||
deejee | 0 | 100,172,513 | 25% | ||
swagtoshi | 0 | 553,812,728 | 100% | ||
gandalfthewhite | 0 | 868,933,046 | 100% | ||
dedyrendra | 0 | 2,381,653,306 | 100% | ||
cfminer | 0 | 3,279,680,917 | 100% | ||
gulumserunver | 0 | 88,636,781 | 22% | ||
williamsyee | 0 | 2,588,778,962 | 100% | ||
neokuduk | 0 | 3,934,344,857 | 100% | ||
muradovv | 0 | 602,954,004 | 5% | ||
bodyscape | 0 | 2,287,861,699 | 100% | ||
emirfirlar | 0 | 568,606,300 | 24.5% | ||
xandros | 0 | 3,481,874,940 | 100% | ||
zeusqraqen | 0 | 1,580,890,791 | 100% | ||
dee-y | 0 | 1,537,807,971 | 100% | ||
chronocrypto | 0 | 4,706,146,534 | 100% | ||
bishoppeter1 | 0 | 88,356,733 | 5% | ||
literaturk | 0 | 440,920,879 | 100% | ||
reviles | 0 | 3,339,454,257 | 100% | ||
jlordc | 0 | 32,696,508,555 | 50% | ||
lunaticpandora | 0 | 51,152,643,037 | 100% | ||
minsoo.kim | 0 | 3,362,379,605 | 100% | ||
francispalo | 0 | 2,730,733,030 | 100% | ||
crypto4euro | 0 | 82,042,848 | 25% | ||
holger80 | 0 | 542,532,589,544 | 100% | ||
debruyne844 | 0 | 100,079,245 | 25% | ||
didic | 0 | 22,477,418,708 | 20% | ||
hashas120 | 0 | 176,650,415 | 50% | ||
uzerebru | 0 | 113,814,628 | 41% | ||
uzercanan | 0 | 213,205,360 | 45% | ||
warpedpoetic | 0 | 1,884,762,583 | 7.5% | ||
sndbox-alpha | 0 | 22,879,504,438 | 50% | ||
alejandromata | 0 | 2,733,109,626 | 100% | ||
semihbalkanli | 0 | 431,845,617 | 55% | ||
minerspost | 0 | 1,440,511,121 | 100% | ||
franklinjgc | 0 | 486,585,177 | 100% | ||
ahmetmertugrul | 0 | 832,386,610 | 100% | ||
samedb | 0 | 456,827,048 | 100% | ||
giftbox | 0 | 193,200,488 | 100% | ||
evansbankx | 0 | 312,581,492 | 100% | ||
tadeu | 0 | 3,837,573,324 | 100% | ||
xerox-bru | 0 | 2,216,516,921 | 100% | ||
au7ia | 0 | 1,553,707,904 | 100% | ||
imaginalex | 0 | 1,559,025,321 | 100% | ||
kaeo | 0 | 245,044,515 | 50% | ||
ameliabartlett | 0 | 1,264,623,369 | 7.5% | ||
tdogvoid | 0 | 386,432,810 | 100% | ||
kuttmoped | 0 | 344,001,363 | 100% | ||
gentmartin | 0 | 861,656,609 | 10% | ||
tuts | 0 | 553,929,752 | 100% | ||
rinbird | 0 | 246,159,735 | 50% | ||
snackaholic | 0 | 6,323,253,407 | 100% | ||
elektr1ker | 0 | 3,122,198,784 | 100% | ||
sjomeath | 0 | 137,622,442 | 5.5% | ||
henryconache | 0 | 273,623,737 | 25% | ||
tailslide | 0 | 78,327,997 | 25% | ||
agememnon | 0 | 1,111,807,055 | 49.5% | ||
thebluewin | 0 | 191,478,924,832 | 100% | ||
beladro | 0 | 987,910,682 | 25% | ||
toddjr | 0 | 2,864,215,826 | 100% | ||
tipitip | 0 | 740,594,699 | 100% | ||
hasmez | 0 | 19,862,357,951 | 100% | ||
aimei | 0 | 99,918,380 | 25% | ||
ahmeterbay | 0 | 10,361,381,341 | 100% | ||
sgupta | 0 | 2,838,879,087 | 100% | ||
sugardash | 0 | 97,350,690,782 | 100% | ||
nayif | 0 | 2,686,238,019 | 100% | ||
akifane | 0 | 641,091,807 | 100% | ||
rasit | 0 | 440,879,979 | 100% | ||
medical-hall | 0 | 208,040,493 | 50% | ||
eightbitfiction | 0 | 74,057,068 | 25% | ||
rheyss08 | 0 | 77,263,687 | 25% | ||
archet | 0 | 1,491,776,686 | 100% | ||
deeledonio | 0 | 253,191,937 | 50% | ||
ozlemkeskin | 0 | 635,687,014 | 50% | ||
yunyun3014 | 0 | 252,097,622 | 50% | ||
bekirsolak | 0 | 147,171,866,369 | 100% | ||
rickriosgarr | 0 | 2,905,269,597 | 100% | ||
adejokeade | 0 | 121,337,302 | 50% | ||
homeginkit | 0 | 118,329,582,081 | 100% | ||
navy3e | 0 | 582,866,530 | 100% | ||
rainbowlord | 0 | 211,511,098 | 44% | ||
gjones15 | 0 | 88,255,078 | 24.5% | ||
spiritrider | 0 | 3,382,999,923 | 100% | ||
backinblackdevil | 0 | 76,779,123,411 | 15% | ||
nagaclub | 0 | 91,449,392 | 24.5% | ||
herez | 0 | 3,195,198,173 | 100% | ||
ruh | 0 | 644,731,893 | 100% | ||
slausonboy | 0 | 2,734,171,563 | 100% | ||
frassman | 0 | 2,826,961,432 | 100% | ||
reazuliqbal | 0 | 39,480,822,044 | 30% | ||
maveraunnehr | 0 | 384,643,961 | 100% | ||
cliffpower | 0 | 352,086,252,623 | 100% | ||
pojgaerlan | 0 | 162,065,787 | 50% | ||
emmasumner | 0 | 1,719,458,693 | 100% | ||
lifetoday | 0 | 142,281,299 | 100% | ||
saimon312 | 0 | 370,147,295 | 80% | ||
lifediaries2nd | 0 | 120,972,459 | 25% | ||
yusrizakaria | 0 | 2,537,915,335 | 25% | ||
fairusyusri | 0 | 550,008,285 | 100% | ||
jnlhen05 | 0 | 253,171,727 | 50% | ||
bulent1976 | 0 | 1,445,149,449 | 100% | ||
intisar | 0 | 3,739,811,353 | 100% | ||
tolgahanuzun | 0 | 13,348,185,130 | 100% | ||
knightofzero | 0 | 1,386,339,442 | 100% | ||
sathyasankar | 0 | 92,580,779,301 | 100% | ||
kabir88 | 0 | 157,421,125,759 | 100% | ||
sanctuspierre | 0 | 99,394,467 | 25% | ||
ibez | 0 | 98,640,919 | 25% | ||
nguyenhiep | 0 | 1,530,236,323 | 100% | ||
muratkbesiroglu | 0 | 290,819,255,780 | 100% | ||
ahmetchef | 0 | 377,023,264 | 27.5% | ||
kutrulaju | 0 | 296,172,135 | 25% | ||
purpleviolet | 0 | 554,195,243 | 100% | ||
elizah | 0 | 237,036,719 | 50% | ||
nandaibra | 0 | 377,077,297 | 50% | ||
ivan78 | 0 | 2,104,992,155 | 100% | ||
anak123 | 0 | 257,053,529 | 25% | ||
kevirizal | 0 | 1,886,284,660 | 100% | ||
kemalyokus | 0 | 204,744,511 | 27.5% | ||
sereze | 0 | 7,721,534,407 | 100% | ||
otac | 0 | 3,334,793,370 | 100% | ||
pikasodan | 0 | 3,083,816,515 | 100% | ||
drjj | 0 | 3,064,314,938 | 100% | ||
virgo27 | 0 | 204,059,386 | 25% | ||
a-0-labon | 0 | 2,796,655,848 | 100% | ||
a-0-mita | 0 | 2,809,578,463 | 100% | ||
zcool | 0 | 188,710,821 | 10% | ||
dera123 | 0 | 174,055,752,294 | 100% | ||
carloniere | 0 | 250,422,265 | 50% | ||
kanrat | 0 | 9,462,562,999 | 100% | ||
salihp | 0 | 243,332,634 | 50% | ||
bit6in | 0 | 99,031,279 | 25% | ||
hulyadurak | 0 | 243,366,731 | 50% | ||
murhadi9 | 0 | 147,646,875 | 25% | ||
proanima | 0 | 10,696,689,284 | 54% | ||
varolleng | 0 | 206,648,012 | 55% | ||
juned0292 | 0 | 90,387,710 | 25% | ||
m2nnari | 0 | 2,771,296,884 | 100% | ||
carment | 0 | 93,774,198 | 24.5% | ||
daszod | 0 | 189,261,609 | 49% | ||
luckythebard | 0 | 3,057,778,139 | 100% | ||
androssgb | 0 | 1,778,865,313 | 100% | ||
freddio | 0 | 162,613,110,303 | 100% | ||
alekau | 0 | 1,553,807,948 | 100% | ||
abdane | 0 | 130,371,319 | 50% | ||
wirdayulahya | 0 | 161,689,224 | 50% | ||
gadrian | 0 | 18,682,238,381 | 30% | ||
barbie.doll | 0 | 295,480,023 | 50% | ||
lordbutterfly | 0 | 89,571,194,798 | 100% | ||
alcidsmujica | 0 | 2,501,511,896 | 100% | ||
therising | 0 | 9,801,220,723,182 | 8.5% | ||
olgablinova | 0 | 534,877,438 | 100% | ||
firster78 | 0 | 181,837,031 | 38.49% | ||
knot | 0 | 3,050,061,962 | 100% | ||
pretty.dorky | 0 | 2,533,035,238 | 100% | ||
desireeher | 0 | 100,335,724 | 25% | ||
black-man | 0 | 2,134,396,984 | 100% | ||
nikita13 | 0 | 424,243,296 | 100% | ||
atilay | 0 | 243,332,615 | 50% | ||
burakakdogan | 0 | 12,896,717,790 | 100% | ||
agrestic | 0 | 403,162,570 | 50% | ||
huti | 0 | 12,936,025,760 | 100% | ||
jngg87 | 0 | 371,460,823 | 80% | ||
patetemj | 0 | 392,023,724 | 80% | ||
canku | 0 | 76,587,713 | 55% | ||
heirastu | 0 | 372,930,665 | 80% | ||
soteyapanbot | 0 | 70,930,834,836 | 100% | ||
egomez | 0 | 332,711,700 | 80% | ||
trifasico | 0 | 372,182,304 | 100% | ||
quochuy | 0 | 84,927,241,560 | 100% | ||
jenisbet | 0 | 353,480,439 | 80% | ||
kgakakillerg | 0 | 11,010,115,612 | 6% | ||
aerhielle | 0 | 252,097,622 | 50% | ||
la4life | 0 | 62,956,934,729 | 100% | ||
vzacosta | 0 | 373,160,366 | 80% | ||
blockmountain | 0 | 168,606,708 | 25% | ||
mahsumakbas | 0 | 81,816,163,893 | 100% | ||
riandifc | 0 | 91,184,394 | 25% | ||
hyroniz | 0 | 83,425,270 | 25% | ||
nikkimariel | 0 | 408,951,105 | 50% | ||
abbyzd | 0 | 245,475,195 | 50% | ||
biochem | 0 | 6,168,155,464 | 100% | ||
wr212 | 0 | 82,026,263 | 25% | ||
muammark013 | 0 | 243,169,053 | 50% | ||
we-are-nigeria | 0 | 16,029,673,737 | 20% | ||
jumbot | 0 | 112,242,935,385 | 55% | ||
norlymgb | 0 | 244,701,835 | 50% | ||
kaestel | 0 | 234,375,845 | 50% | ||
tom.jkjoo | 0 | 3,130,221,511 | 100% | ||
hatuvera | 0 | 1,560,451,905 | 100% | ||
steeman220 | 0 | 76,063,856 | 24.5% | ||
andreasgrubhofer | 0 | 60,333,911,992 | 95% | ||
srijana-gurung | 0 | 3,242,103,159 | 100% | ||
screechypeachy | 0 | 2,686,244,624 | 100% | ||
prayzz | 0 | 3,282,615,681 | 100% | ||
sigmund | 0 | 206,883,665 | 25% | ||
alifridhzuan99 | 0 | 373,120,556 | 100% | ||
sbi3 | 0 | 62,544,705,673 | 7.51% | ||
mcnil | 0 | 182,655,132 | 50% | ||
gagago | 0 | 8,550,938,891 | 100% | ||
zdamna100egebio | 0 | 1,968,926,206 | 100% | ||
marklester23 | 0 | 178,882,335 | 50% | ||
matl996 | 0 | 1,585,658,942 | 100% | ||
genych | 0 | 300,340,636,087 | 100% | ||
emrethewriter | 0 | 2,484,796,967 | 100% | ||
apteacher | 0 | 1,121,994,495 | 10% | ||
tyramisoux | 0 | 5,499,877,349 | 25% | ||
dauntlesscoward | 0 | 128,014,130 | 50% | ||
saqib143 | 0 | 1,562,808,311 | 100% | ||
ryuna.siege | 0 | 208,823,461 | 100% | ||
dlux-io | 0 | 339,973,536,416 | 100% | ||
steemgamemarket | 0 | 1,886,097,364 | 100% | ||
we-are-asia | 0 | 3,946,245,355 | 100% | ||
seredina | 0 | 2,411,416,457 | 100% | ||
probaperra | 0 | 1,690,067,511 | 100% | ||
moliendocafe | 0 | 426,019,793 | 100% | ||
vanessahampton | 0 | 3,824,020,379 | 100% | ||
kryptorero | 0 | 98,591,032 | 24.5% | ||
bahagia9 | 0 | 90,815,070 | 24.5% | ||
atanas007 | 0 | 5,652,429,088 | 100% | ||
crazyluv | 0 | 98,472,410 | 25% | ||
alisari | 0 | 106,632,529 | 27.5% | ||
gydronium | 0 | 120,452,643 | 29.4% | ||
tit-andan | 0 | 2,110,266,049 | 100% | ||
hafizullah | 0 | 30,539,440,922 | 17.5% | ||
hodlorbust | 0 | 6,734,844,158 | 100% | ||
blockchainstudio | 0 | 16,296,447,562 | 100% | ||
pinkwonder | 0 | 13,641,815,612 | 100% | ||
conceptskip | 0 | 5,047,170,996 | 100% | ||
smer | 0 | 247,730,126 | 50% | ||
yardne | 0 | 1,574,543,267 | 100% | ||
achrafo | 0 | 444,652,014 | 50% | ||
senseofhumor | 0 | 554,195,243 | 100% | ||
jickirti | 0 | 89,966,093 | 25% | ||
deltakm | 0 | 27,068,261,692 | 100% | ||
bilimkurgu | 0 | 143,566,408,986 | 100% | ||
pmuchemi | 0 | 148,469,537 | 100% | ||
motochan | 0 | 1,002,927,268,401 | 100% | ||
jonalynurcales | 0 | 245,245,785 | 50% | ||
tb9124 | 0 | 1,400,527,478 | 100% | ||
hahajin | 0 | 0 | 100% | ||
chansetheguy | 0 | 2,617,382,229 | 100% | ||
daily.johny | 0 | 11,018,577,352 | 100% | ||
gena138 | 0 | 71,990,235 | 100% | ||
fernandosoder | 0 | 3,013,682,150 | 100% | ||
nervniymen | 0 | 1,809,111,420 | 100% | ||
digitaldreamer | 0 | 158,071,019 | 50% | ||
djfugly | 0 | 3,111,591,434 | 100% | ||
orange777 | 0 | 715,592,775 | 100% | ||
frieder | 0 | 447,580,636 | 100% | ||
sidneychildsh | 0 | 3,258,024,774 | 100% | ||
kalypso56 | 0 | 13,179,056,846 | 100% | ||
hakanyasinirmak | 0 | 0 | 100% | ||
big-e | 0 | 4,017,260,125 | 100% | ||
mayorblaze | 0 | 71,016,838 | 25% | ||
manuelgil64 | 0 | 1,558,599,899 | 100% | ||
zam398 | 0 | 139,075,243 | 25% | ||
vladisss | 0 | 541,232,009 | 100% | ||
nfaith | 0 | 1,038,899,582 | 50% | ||
lucky2 | 0 | 1,205,599,614,132 | 100% | ||
vietthuy | 0 | 155,286,558 | 25% | ||
proxyaccount | 0 | 96,393,584 | 50% | ||
ryanng | 0 | 3,063,928,186 | 100% | ||
sarez | 0 | 2,664,279,294 | 25% | ||
ga10 | 0 | 1,256,617,355 | 100% | ||
digital.mine | 0 | 3,626,849,919 | 1% | ||
celebritypoet | 0 | 235,001,261 | 50% | ||
smartmeme | 0 | 2,769,194,660 | 50% | ||
fitat40 | 0 | 207,227,362,356 | 100% | ||
parakazan | 0 | 220,556,922 | 100% | ||
flightphotos | 0 | 83,605,444,195 | 100% | ||
downtempo | 0 | 245,410,304 | 50% | ||
dflhs21 | 0 | 2,731,322,369 | 100% | ||
nadyr | 0 | 2,103,213,839 | 100% | ||
worldwar3 | 0 | 3,387,425,453 | 100% | ||
jumps | 0 | 58,621,794,014 | 100% | ||
hermanasquintero | 0 | 386,952,083 | 80% | ||
resteemdone | 0 | 232,315,956 | 20% | ||
blckwhtx | 0 | 2,561,510,983 | 100% | ||
patternbot | 0 | 3,346,042,522 | 100% | ||
sbd-fairy | 0 | 219,060,789 | 49% | ||
littymumma | 0 | 3,213,517,581 | 100% | ||
kakbeilya | 0 | 2,852,745,282 | 100% | ||
aracieli | 0 | 2,114,091,007 | 100% | ||
carpet.duck | 0 | 253,892,527 | 25% | ||
alkor | 0 | 4,973,761,500 | 100% | ||
dariuska2008 | 0 | 2,848,854,307 | 100% | ||
msjito | 0 | 244,634,407 | 50% | ||
salimbur | 0 | 1,493,456,964 | 100% | ||
ngocbich | 0 | 4,310,404,546 | 100% | ||
flashmob96 | 0 | 554,195,243 | 100% | ||
strategema | 0 | 1,566,837,094 | 100% | ||
mozer | 0 | 221,660,816 | 5.5% | ||
tahirozgen | 0 | 10,763,309,209 | 14% | ||
pablorg94 | 0 | 508,332,744 | 100% | ||
ozaz | 0 | 519,837,565 | 100% | ||
princezico | 0 | 187,242,919 | 50% | ||
sulwati | 0 | 93,199,551 | 24.5% | ||
themoehawk | 0 | 5,112,103,123 | 100% | ||
swaze | 0 | 553,786,937 | 100% | ||
dugan | 0 | 6,482,513,633 | 100% | ||
crystalsilver | 0 | 2,005,343,889 | 100% | ||
cafelate | 0 | 181,153,815 | 5% | ||
sirwayneweezy | 0 | 96,651,412 | 25% | ||
boyanpro | 0 | 24,531,809,440 | 100% | ||
nareg | 0 | 679,032,099 | 100% | ||
anigaver | 0 | 2,731,891,940 | 100% | ||
boukdir | 0 | 133,133,159 | 16% | ||
michaelmitnick | 0 | 540,524,499 | 100% | ||
sutter | 0 | 198,028,374 | 24.5% | ||
dmitrydao | 0 | 1,604,434,943 | 20% | ||
jamesmadrid | 0 | 1,523,423,983 | 100% | ||
justgeorgie | 0 | 426,074,511 | 100% | ||
flordemaria | 0 | 506,416,978 | 100% | ||
maravillas | 0 | 465,639,809 | 100% | ||
ulockblock | 0 | 47,319,220,292 | 16.88% | ||
imran.kkhan1 | 0 | 1,710,450,907 | 100% | ||
teneresa | 0 | 1,473,921,565 | 100% | ||
lafieraescritora | 0 | 425,121,868 | 100% | ||
fittree | 0 | 242,712,377 | 50% | ||
tarifhossain757 | 0 | 553,082,720 | 100% | ||
orthodoxnudism | 0 | 1,608,112,992 | 100% | ||
ninjavideo | 0 | 7,441,125,202 | 50% | ||
boyacun | 0 | 210,891,362 | 25% | ||
bboyabluka | 0 | 115,328,397 | 27.5% | ||
vanrzuf | 0 | 2,911,631,601 | 100% | ||
penyuteverest | 0 | 99,550,192 | 25% | ||
deepdives | 0 | 195,435,653,149 | 100% | ||
hopyt | 0 | 2,169,380,757 | 100% | ||
kryptarion | 0 | 294,715,510 | 100% | ||
master1992 | 0 | 6,447,290,772 | 100% | ||
crypto34 | 0 | 176,085,397 | 50% | ||
nayhlaingsoe | 0 | 2,883,447,372 | 100% | ||
loveforlove | 0 | 235,847,108 | 50% | ||
sumonflair | 0 | 243,952,558 | 50% | ||
zammee | 0 | 2,186,020,463 | 100% | ||
sandooo | 0 | 4,155,501,490 | 100% | ||
selce-n | 0 | 119,512,936,971 | 100% | ||
delicious-kimchi | 0 | 20,016,949,797 | 100% | ||
fastburner | 0 | 2,993,423,552 | 100% | ||
acryptolover | 0 | 554,195,243 | 100% | ||
steem-oracle | 0 | 596,647,274 | 12.5% | ||
mops2e | 0 | 587,698,945 | 40.15% | ||
ceruleanblue | 0 | 217,060,986 | 100% | ||
lucky222 | 0 | 268,666,531,116 | 100% | ||
faizazohaib | 0 | 1,523,660,764 | 100% | ||
vyaduka | 0 | 784,068,960 | 4.25% | ||
thelittlebank | 0 | 85,236,259,321 | 100% | ||
salitha | 0 | 540,686,001 | 100% | ||
diyanti86 | 0 | 881,475,561 | 25% | ||
yollardannotlar | 0 | 179,711,963 | 100% | ||
twotoedsloth | 0 | 18,112,925,952 | 25% | ||
sayeds1956 | 0 | 2,596,665,789 | 100% | ||
jacekw.dev | 0 | 2,694,273,359 | 40% | ||
beemtutorials | 0 | 350,719,065 | 100% | ||
taffel | 0 | 55,360,142 | 5% | ||
chappertron | 0 | 82,359,140,325 | 100% | ||
kanhiyachauhan | 0 | 5,497,741,673 | 55% | ||
swollness | 0 | 2,946,846,294 | 100% | ||
rgirgin | 0 | 461,926,716 | 100% | ||
raghao | 0 | 1,575,720,553 | 25% | ||
antigourmet | 0 | 2,649,931,964 | 100% | ||
mihmandar | 0 | 2,995,063,089 | 100% | ||
ali.yuce | 0 | 154,919,735 | 100% | ||
larose | 0 | 3,178,740,696 | 100% | ||
bartrobel | 0 | 2,531,012,058 | 100% | ||
jekfer | 0 | 3,351,039,428 | 100% | ||
arpello | 0 | 2,477,122,366 | 100% | ||
hashbrownhustla | 0 | 0 | 10% | ||
steemkingman | 0 | 740,601,865 | 49.5% | ||
datome | 0 | 2,510,420,289 | 100% | ||
sid000 | 0 | 101,803,124 | 50% | ||
mansi94 | 0 | 377,610,950 | 100% | ||
jsdjack | 0 | 617,901,746 | 100% | ||
cryptomeet | 0 | 3,193,790,386 | 100% | ||
cutnur | 0 | 0 | 5% | ||
gogona | 0 | 2,664,884,126 | 100% | ||
josephparker | 0 | 553,897,713 | 100% | ||
pabisovsky | 0 | 3,152,682,270 | 100% | ||
thevil | 0 | 207,726,165,011 | 100% | ||
felisaleo | 0 | 3,591,313,677 | 100% | ||
bonadicta | 0 | 1,985,530,407 | 100% | ||
poetforall | 0 | 384,721,998 | 100% | ||
mprgraffix | 0 | 1,464,575,419 | 100% | ||
ikeatl | 0 | 3,046,542,642 | 100% | ||
jairzinho | 0 | 1,648,338,805 | 100% | ||
manimanitour | 0 | 327,544,571 | 100% | ||
dunamu | 0 | 533,385,798 | 100% | ||
pedrohmc23 | 0 | 496,757,968 | 100% | ||
micksmith | 0 | 2,972,973,283 | 100% | ||
alatomz | 0 | 120,310,905 | 25% | ||
megaraz | 0 | 44,789,429 | 100% | ||
aljofer | 0 | 99,947,617 | 25% | ||
steem-ua | 0 | 1,360,703,080,027 | 12.41% | ||
roki112 | 0 | 2,449,468,205 | 100% | ||
jhonnfreiny | 0 | 84,909,260 | 25% | ||
forhadh | 0 | 158,714,897 | 25% | ||
jameswharton | 0 | 553,891,727 | 100% | ||
dominicmatias | 0 | 543,073,324 | 100% | ||
davewainwright | 0 | 552,726,051 | 100% | ||
e-arch | 0 | 2,535,787,710 | 100% | ||
gee17 | 0 | 553,891,727 | 100% | ||
anonymousteem | 0 | 194,284,101 | 100% | ||
ogdawg | 0 | 70,823,016,257 | 100% | ||
lereve | 0 | 1,309,751,383 | 1.13% | ||
simmani | 0 | 1,175,381,994 | 1.62% | ||
gameo | 0 | 198,118,964 | 100% | ||
alvinvoo | 0 | 909,422,502 | 100% | ||
boozeup2018 | 0 | 87,569,452,769 | 100% | ||
lovepreet2511 | 0 | 2,862,560,136 | 100% | ||
manimani | 0 | 1,227,923,372 | 3.09% | ||
criptomir | 0 | 756,181,785 | 100% | ||
cruis | 0 | 3,730,154,635 | 50% | ||
astrochologist | 0 | 1,630,720,081 | 100% | ||
daddywilliam | 0 | 704,777,391 | 24.5% | ||
brightsun | 0 | 0 | 5% | ||
carbodexkim | 0 | 3,090,815,683 | 100% | ||
crystalliu | 0 | 0 | 100% | ||
theycallmedan | 0 | 8,694,765,188,909 | 35% | ||
steembluepages | 0 | 1,530,556,755 | 100% | ||
efra00 | 0 | 147,444,572 | 100% | ||
wallets4sale | 0 | 2,545,339,529 | 100% | ||
bgornicki | 0 | 497,694,977 | 100% | ||
dfroberg | 0 | 1,974,140,066 | 100% | ||
teamcr | 0 | 804,924,673 | 100% | ||
kesskin | 0 | 151,316,590 | 100% | ||
sunnysmile | 0 | 0 | 3% | ||
simmania | 0 | 1,165,503,386 | 16.96% | ||
crytiblock | 0 | 7,509,815,738 | 70% | ||
dilm | 0 | 1,804,343,697 | 100% | ||
chipdip | 0 | 153,334,211,885 | 100% | ||
edriseur | 0 | 69,411,934,173 | 100% | ||
manimoa | 0 | 854,711,174 | 15.31% | ||
manimore | 0 | 853,398,893 | 24.59% | ||
steemimages | 0 | 33,511,707,752 | 100% | ||
steem-on-2020 | 0 | 4,845,552,069 | 100% | ||
simmanis | 0 | 1,024,002,998 | 19.51% | ||
sojucaps | 0 | 1,918,250,252 | 100% | ||
berie | 0 | 1,681,873,091 | 100% | ||
adriangiotto | 0 | 542,140,709 | 100% | ||
bluerobo | 0 | 5,117,055,459 | 100% | ||
offgridtinyhouse | 0 | 1,975,242,323 | 100% | ||
p15 | 0 | 1,016,062,516 | 100% | ||
j-p-bs | 0 | 356,831,592 | 20% | ||
steemjetproject | 0 | 613,702,002 | 100% | ||
aero2000 | 0 | 60,407,393,509 | 100% | ||
toheliuk | 0 | 237,913,443 | 25% | ||
explorenature | 0 | 112,277,502,055 | 100% | ||
nacis | 0 | 301,833,562 | 100% | ||
smonster | 0 | 4,198,759,830 | 100% | ||
paulo19750 | 0 | 517,607,391 | 100% | ||
enthef | 0 | 8,634,202,798 | 100% | ||
adamantino | 0 | 938,571,806 | 25% | ||
bluesniper | 0 | 199,697,096,377 | 11.47% | ||
vaultec | 0 | 2,832,963,238 | 100% | ||
hojiaxian | 0 | 8,940,577,894 | 100% | ||
jeandersempai | 0 | 520,504,614 | 100% | ||
blasero | 0 | 150,860,429 | 100% | ||
ragnarhewins90 | 0 | 3,312,775,966 | 100% | ||
ascorphat | 0 | 871,323,544 | 2.5% | ||
kelicimchi | 0 | 171,347,977 | 25% | ||
sergirety | 0 | 375,928,617 | 50% | ||
snoreball | 0 | 74,813,566,128 | 100% | ||
dr-murat | 0 | 2,075,653,545 | 100% | ||
weitoostrong | 0 | 2,241,134,137 | 100% | ||
vitasoy | 0 | 183,869,522 | 100% | ||
edithbdraw | 0 | 115,271,168 | 27% | ||
moirrey | 0 | 462,777,337 | 100% | ||
romanreign | 0 | 963,508,637 | 10% | ||
eoe | 0 | 531,981,766 | 100% | ||
rolladice | 0 | 531,772,891 | 100% | ||
circa | 0 | 26,256,636,527 | 100% | ||
caffelatte | 0 | 529,231,512 | 100% | ||
n1hal1 | 0 | 100,930,656 | 25% | ||
jiffs | 0 | 2,539,181,114 | 100% | ||
uvoteivote | 0 | 534,212,972 | 100% | ||
grimgriz | 0 | 3,663,830,080 | 100% | ||
tipu.curator | 0 | 21,267,787,728 | 50% | ||
minnowmarket | 0 | 180,550,002,271 | 100% | ||
grand.strategy | 0 | 1,406,297,059 | 100% | ||
frankdanger | 0 | 536,217,464 | 100% | ||
scoopstakes | 0 | 195,238,379,914 | 100% | ||
trademesomecoins | 0 | 2,992,718,820 | 100% | ||
nanzo-snaps | 0 | 404,324,856,689 | 100% | ||
eternalsuccess | 0 | 357,537,274 | 49% | ||
drukqs | 0 | 3,385,565,878 | 100% | ||
yosoyquintero15 | 0 | 556,000,000 | 100% | ||
hairgistix | 0 | 63,879,492,766 | 100% | ||
honmono | 0 | 533,495,962 | 100% |
Classy stuff dude!
author | abh12345 |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t212306920z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-16 21:23:06 |
last_update | 2019-01-16 21:23:06 |
depth | 1 |
children | 0 |
last_payout | 2019-01-23 21:23: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 | 18 |
author_reputation | 1,401,181,767,850,181 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 78,471,195 |
net_rshares | 0 |
Your posts are really great:) keep it up @emrebeyler
author | ahmad575447 |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190117t092834935z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["emrebeyler"],"app":"steemit/0.1"} |
created | 2019-01-17 09:28:33 |
last_update | 2019-01-17 16:27:54 |
depth | 1 |
children | 0 |
last_payout | 2019-01-24 09:28:33 |
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 | 55 |
author_reputation | 237,911,735,679 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,492,309 |
net_rshares | 520,826,371 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ahmad575447 | 0 | 520,826,371 | 100% |
I think it will be good for everybody
author | arafathsunny |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190119t132045491z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-19 13:23:51 |
last_update | 2019-01-19 13:23:51 |
depth | 1 |
children | 0 |
last_payout | 2019-01-26 13:23:51 |
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 | 37 |
author_reputation | 151,575,137,432 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,612,928 |
net_rshares | 0 |
Congratulations @emrebeyler! Your post was mentioned in the [Steem Hit Parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20190116) in the following categories: * Comments - Ranked 6 with 72 comments * Pending payout - Ranked 1 with $ 203,68
author | arcange |
---|---|
permlink | re-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t174306000z |
category | utopian-io |
json_metadata | "" |
created | 2019-01-17 16:43:45 |
last_update | 2019-01-17 16:43:45 |
depth | 1 |
children | 0 |
last_payout | 2019-01-24 16:43:45 |
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 | 257 |
author_reputation | 1,146,606,601,469,178 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,508,107 |
net_rshares | 0 |
Thanks for the information. Posted using [Partiko Android](https://steemit.com/@partiko-android)
author | ashokcan143 |
---|---|
permlink | ashokcan143-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190117t054401043z |
category | utopian-io |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-01-17 05:44:00 |
last_update | 2019-01-17 05:44:00 |
depth | 1 |
children | 0 |
last_payout | 2019-01-24 05:44:00 |
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 | 97 |
author_reputation | 18,683,289,688,917 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,485,731 |
net_rshares | -20,231,385 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cheetah | 0 | -20,231,385 | -0.08% |
Awesome work @embreyler , I'll experiment with this on my hivemind install today :)
author | ausbitbank |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190117t023101796z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["embreyler"],"app":"steemit/0.1"} |
created | 2019-01-17 02:31:03 |
last_update | 2019-01-17 02:31:03 |
depth | 1 |
children | 0 |
last_payout | 2019-01-24 02:31: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 | 83 |
author_reputation | 287,009,709,424,827 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 78,480,315 |
net_rshares | 331,668,559 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
titoleme | 0 | 331,668,559 | 100% |
Awesome stuff! I've spun up a tower install publicly available at https://hivemind.steemviz.com
author | ausbitbank |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190117t031447416z |
category | utopian-io |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":[],"links":["https://hivemind.steemviz.com"],"image":[]} |
created | 2019-01-17 03:14:48 |
last_update | 2019-01-17 03:14:48 |
depth | 1 |
children | 3 |
last_payout | 2019-01-24 03:14:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.270 HBD |
curator_payout_value | 0.117 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 95 |
author_reputation | 287,009,709,424,827 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,481,569 |
net_rshares | 2,751,823,232,108 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ausbitbank | 0 | 1,583,105,120,042 | 100% | ||
transisto | 0 | 350,976,043,182 | 100% | ||
espoem | 0 | 9,178,258,496 | 5% | ||
emrebeyler | 0 | 801,255,121,210 | 100% | ||
enforcer48 | 0 | 4,981,663,241 | 7% | ||
ascorphat | 0 | 834,232,964 | 2.5% | ||
rabbi39 | 0 | 486,933,089 | 100% | ||
titoleme | 0 | 316,659,187 | 100% | ||
dael27 | 0 | 389,811,704 | 100% | ||
hanif1 | 0 | 299,388,993 | 100% |
Wow, great! :)
author | emrebeyler |
---|---|
permlink | re-ausbitbank-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190117t035025052z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-17 03:50:24 |
last_update | 2019-01-17 03:50:24 |
depth | 2 |
children | 0 |
last_payout | 2019-01-24 03:50:24 |
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 | 14 |
author_reputation | 448,528,959,341,273 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,482,547 |
net_rshares | 0 |
no entendí me ayudas
author | freddy22 |
---|---|
permlink | re-ausbitbank-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190117t140542781z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-17 14:05:33 |
last_update | 2019-01-17 14:05:33 |
depth | 2 |
children | 0 |
last_payout | 2019-01-24 14:05:33 |
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 | 20 |
author_reputation | 1,786,902,406 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,501,672 |
net_rshares | 544,923,667 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
freddy22 | 0 | 544,923,667 | 100% |
Great Stuff!
author | shamim6122 |
---|---|
permlink | re-ausbitbank-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190118t132530965z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-18 13:25:39 |
last_update | 2019-01-18 13:25:39 |
depth | 2 |
children | 0 |
last_payout | 2019-01-25 13:25: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 | 12 |
author_reputation | 0 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,559,733 |
net_rshares | 0 |
Good!)))
author | browa |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190119t102410732z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-19 06:24:54 |
last_update | 2019-01-19 06:24:54 |
depth | 1 |
children | 0 |
last_payout | 2019-01-26 06:24:54 |
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 | 8 |
author_reputation | 2,449,352,982 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,600,344 |
net_rshares | 0 |
Steemian great joy beat me with cash. Very great deal!!
author | chrisluke |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190118t221510352z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-18 22:15:15 |
last_update | 2019-01-18 22:15:15 |
depth | 1 |
children | 0 |
last_payout | 2019-01-25 22:15:15 |
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 | 55 |
author_reputation | 2,064,928,471,416 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,586,505 |
net_rshares | -21,767,851 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cheetah | 0 | -21,767,851 | -0.08% |
I have followed you on Steemit, please be kind enough to follow me as well.
author | dilm |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190117t124316056z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-17 12:43:18 |
last_update | 2019-01-17 12:43:18 |
depth | 1 |
children | 0 |
last_payout | 2019-01-24 12:43: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 | 75 |
author_reputation | 2,481,272,883,852 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,498,418 |
net_rshares | 0 |
great!, finally some cool news for steem... Hopefully this keeps reflecting on price :)
author | dreamrafa |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190119t003146318z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-19 00:31:45 |
last_update | 2019-01-19 00:31:45 |
depth | 1 |
children | 0 |
last_payout | 2019-01-26 00:31:45 |
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 | 87 |
author_reputation | 178,378,192,142,151 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,590,126 |
net_rshares | 0 |
Very good but what programming system are you using? Is it reliable for all systems from Android windows and mac?
author | fasa |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190117t012714997z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-17 01:27:12 |
last_update | 2019-01-17 01:27:12 |
depth | 1 |
children | 1 |
last_payout | 2019-01-24 01:27: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 | 113 |
author_reputation | 72,473,962,613 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,478,238 |
net_rshares | 0 |
Fantastic
author | alayner |
---|---|
permlink | re-fasa-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190118t183702455z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-17 04:45:30 |
last_update | 2019-01-17 04:45:30 |
depth | 2 |
children | 0 |
last_payout | 2019-01-24 04:45: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 | 9 |
author_reputation | 192,492,306 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,484,156 |
net_rshares | 0 |
Aweaomees
author | fazibaba |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190117t173716004z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-17 17:37:21 |
last_update | 2019-01-17 17:37:21 |
depth | 1 |
children | 0 |
last_payout | 2019-01-24 17:37: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 | 9 |
author_reputation | 10,653,199,526 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,510,230 |
net_rshares | 0 |
I want to impove my account plz help me
author | fazibaba |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190117t173850318z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-17 17:38:54 |
last_update | 2019-01-17 17:38:54 |
depth | 1 |
children | 0 |
last_payout | 2019-01-24 17:38:54 |
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 | 39 |
author_reputation | 10,653,199,526 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,510,278 |
net_rshares | 0 |
Awesome work! This is amazing. I can't even imagine the types of things that will now be possible to develop thanks to this. This likely means that developers need to know less about the quirks of working with the blockchain and can treat it more like a standard web service.
author | geekpowered |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t172145272z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"steempeak","app":"steempeak"} |
created | 2019-01-16 17:21:45 |
last_update | 2019-01-16 17:21:45 |
depth | 1 |
children | 0 |
last_payout | 2019-01-23 17:21:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.050 HBD |
curator_payout_value | 0.016 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 275 |
author_reputation | 99,319,261,112,097 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,463,691 |
net_rshares | 110,782,009,543 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
emrebeyler | 0 | 110,782,009,543 | 14% |
Selam bu platformda yeniyim ama burası için farklı bir platform tarzı var aklımda bunu projelendirme anlamında yardımcı olabilirmisiniz?
author | hakanyasinirmak |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190124t210451310z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-24 21:04:51 |
last_update | 2019-01-24 21:04:51 |
depth | 1 |
children | 0 |
last_payout | 2019-01-31 21:04:51 |
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 | 136 |
author_reputation | 23,297,462,372 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,888,131 |
net_rshares | 541,222,728 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hakanyasinirmak | 0 | 541,222,728 | 100% |
Very nice @emrebeyler! I appreciate your great effort for the steem blockchain. I have casted two votes for you : one for your poste above and another for you as a witness. Good luck and best regards @hasmez
author | hasmez |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t205005492z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["emrebeyler","hasmez"],"app":"steemit/0.1"} |
created | 2019-01-16 19:54:48 |
last_update | 2019-01-16 19:54:48 |
depth | 1 |
children | 2 |
last_payout | 2019-01-23 19:54: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 | 207 |
author_reputation | 2,221,855,571,689 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,468,455 |
net_rshares | 0 |
Thank you for the witness vote! :)
author | emrebeyler |
---|---|
permlink | re-hasmez-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t201736386z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-16 20:17:36 |
last_update | 2019-01-16 20:17:36 |
depth | 2 |
children | 1 |
last_payout | 2019-01-23 20:17: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 | 34 |
author_reputation | 448,528,959,341,273 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,469,147 |
net_rshares | 0 |
Not at all :)
author | hasmez |
---|---|
permlink | re-emrebeyler-re-hasmez-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t215922455z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-16 21:04:06 |
last_update | 2019-01-16 21:04:06 |
depth | 3 |
children | 0 |
last_payout | 2019-01-23 21:04: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 | 13 |
author_reputation | 2,221,855,571,689 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,470,613 |
net_rshares | 0 |
- Great blog post as an intro to a project. - Awesome project that brings usefulness to this innovation that is hivemind. I look forward to see what projects will use this api. - I use this github link to be able to look at all the code at once: https://github.com/emre/tower/compare/dff87fad19876efb6dd14c253609c4e4610a63b7..883425100e0841691822e5ea9c4ad3ac7fb2e964 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/3/2-1-1-1-1-2-2-). ---- Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | helo |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t163801691z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://github.com/emre/tower/compare/dff87fad19876efb6dd14c253609c4e4610a63b7..883425100e0841691822e5ea9c4ad3ac7fb2e964","https://join.utopian.io/guidelines","https://review.utopian.io/result/3/2-1-1-1-1-2-2-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2019-01-16 16:38:00 |
last_update | 2019-01-16 16:38:00 |
depth | 1 |
children | 3 |
last_payout | 2019-01-23 16:38:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 10.624 HBD |
curator_payout_value | 3.385 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 818 |
author_reputation | 121,547,934,535,311 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,462,101 |
net_rshares | 23,085,242,655,604 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yuxi | 0 | 28,369,969,356 | 100% | ||
borislavzlatanov | 0 | 2,501,888,121 | 100% | ||
xplosive | 0 | 7,402,767,038 | 100% | ||
codingdefined | 0 | 22,740,840,866 | 20% | ||
espoem | 0 | 27,149,513,836 | 15% | ||
utopian-io | 0 | 22,433,816,890,614 | 15.77% | ||
jaff8 | 0 | 127,762,437,631 | 75% | ||
emrebeyler | 0 | 325,290,285,246 | 40% | ||
cheneats | 0 | 570,994,724 | 3% | ||
amosbastian | 0 | 70,313,673,425 | 27.77% | ||
nenya | 0 | 481,856,278 | 95% | ||
reazuliqbal | 0 | 12,528,960,519 | 10% | ||
hakancelik | 0 | 6,366,308,662 | 100% | ||
ulockblock | 0 | 13,565,525,689 | 4.98% | ||
nijn | 0 | 575,390,331 | 95% | ||
quenty | 0 | 4,026,041,160 | 71.25% | ||
ascorphat | 0 | 870,526,542 | 2.5% | ||
nimloth | 0 | 443,094,154 | 95% | ||
rabbi39 | 0 | 465,691,412 | 100% |
i want make a group exchange upvote
author | hanimardi29 |
---|---|
permlink | re-helo-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t225054062z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-16 22:50:57 |
last_update | 2019-01-16 22:50:57 |
depth | 2 |
children | 0 |
last_payout | 2019-01-23 22:50: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 | 35 |
author_reputation | -24,164,784,062 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,473,883 |
net_rshares | -102,819,134,441 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ausbitbank | 0 | -77,668,378,788 | -5% | ||
emrebeyler | 0 | -119,430,508,382 | -15% | ||
away4pro | 0 | 94,279,752,729 | 100% |
Wooo
author | salomia025 |
---|---|
permlink | re-helo-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190117t004025487z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-17 00:40:30 |
last_update | 2019-01-17 00:40:30 |
depth | 2 |
children | 0 |
last_payout | 2019-01-24 00:40: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 | 4 |
author_reputation | -1,857,138,792 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,476,806 |
net_rshares | -119,075,143,062 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
emrebeyler | 0 | -119,075,143,062 | -15% |
Thank you for your review, @helo! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t163801691z-20190119t045130z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-01-19 04:51:30 |
last_update | 2019-01-19 04:51:30 |
depth | 2 |
children | 0 |
last_payout | 2019-01-26 04:51: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 | 56 |
author_reputation | 152,955,367,999,756 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,597,815 |
net_rshares | 0 |
Thanks for the work! I noticed that you was not on my witness list... but it's fixed now :)
author | hightouch |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190120t083234924z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-20 08:32:36 |
last_update | 2019-01-20 08:32:36 |
depth | 1 |
children | 1 |
last_payout | 2019-01-27 08:32: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 | 91 |
author_reputation | 42,548,723,660,814 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,652,342 |
net_rshares | 0 |
Thank you :)
author | emrebeyler |
---|---|
permlink | re-hightouch-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190120t093750566z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-20 09:37:51 |
last_update | 2019-01-20 09:37:51 |
depth | 2 |
children | 0 |
last_payout | 2019-01-27 09:37:51 |
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 | 12 |
author_reputation | 448,528,959,341,273 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,654,402 |
net_rshares | 529,402,459 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hakanyasinirmak | 0 | 529,402,459 | 100% |
Fantastic Work! Django .. Postgresql .. REST .. Hivemind  (Yes, it still works :))
author | isnochys |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t131533084z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"image":["https://cdn.steemitimages.com/DQmVutEcKNDEd8WyVkeSk5ewa9HjbGoyitNHHTDjc4iC4jo/Screen_Shot_2019-01-14_at_8.49.58_PM.png"],"app":"steemit/0.1"} |
created | 2019-01-16 13:15:33 |
last_update | 2019-01-16 13:15:33 |
depth | 1 |
children | 1 |
last_payout | 2019-01-23 13:15:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 248 |
author_reputation | 48,488,207,358,090 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,454,491 |
net_rshares | 42,328,429,374 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
emrebeyler | 0 | 42,328,429,374 | 5% |
Good
author | soufyane94 |
---|---|
permlink | re-isnochys-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190117t014114082z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-17 00:42:27 |
last_update | 2019-01-17 00:42:27 |
depth | 2 |
children | 0 |
last_payout | 2019-01-24 00:42: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 | 4 |
author_reputation | 8,687,500 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,476,868 |
net_rshares | 556,000,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
soufyane94 | 0 | 556,000,000 | 100% |
I would be happy to do it, but I never receive votes by witnesses... *DO UT DES*... Posted using [Partiko Messaging](https://steemit.com/@partiko)
author | itegoarcanadei |
---|---|
permlink | itegoarcanadei-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190117t130636171z |
category | utopian-io |
json_metadata | {"app":"partiko","from_partiko_messaging":true} |
created | 2019-01-17 13:06:36 |
last_update | 2019-01-17 13:06:36 |
depth | 1 |
children | 0 |
last_payout | 2019-01-24 13:06: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 | 149 |
author_reputation | 9,413,067,039,884 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,499,417 |
net_rshares | 0 |
I don't know what it means...but it "sounds" like something good....best of luck.
author | itstime |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t231920771z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-16 23:19:24 |
last_update | 2019-01-16 23:19:24 |
depth | 1 |
children | 0 |
last_payout | 2019-01-23 23:19:24 |
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 | 81 |
author_reputation | 9,875,271,178,952 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,474,695 |
net_rshares | 324,060,438 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
titoleme | 0 | 324,060,438 | 100% |
How difficult is to allow querying post by multiple tags at once?
author | jent |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190118t120406520z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"community":"steempeak","app":"steempeak"} |
created | 2019-01-18 12:04:06 |
last_update | 2019-01-18 12:04:06 |
depth | 1 |
children | 0 |
last_payout | 2019-01-25 12:04: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 | 65 |
author_reputation | 125,966,929,933 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,554,550 |
net_rshares | 0 |
good please continue !!
author | karimhaiek |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190118t230855603z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-18 23:08:45 |
last_update | 2019-01-18 23:08:45 |
depth | 1 |
children | 0 |
last_payout | 2019-01-25 23:08:45 |
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 | 24 |
author_reputation | 3,548,879,157 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,587,907 |
net_rshares | 0 |
As always, awesome work @emrebeyler !
author | mcfarhat |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190117t133155521z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["emrebeyler"],"app":"steemit/0.1"} |
created | 2019-01-17 13:32:00 |
last_update | 2019-01-17 13:32:00 |
depth | 1 |
children | 1 |
last_payout | 2019-01-24 13:32:00 |
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 | 37 |
author_reputation | 150,651,671,367,256 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,500,394 |
net_rshares | 0 |
Thank you @mcfarhat! :)
author | emrebeyler |
---|---|
permlink | re-mcfarhat-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190117t193414220z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["mcfarhat"],"app":"steemit/0.1"} |
created | 2019-01-17 19:34:15 |
last_update | 2019-01-17 19:34:15 |
depth | 2 |
children | 0 |
last_payout | 2019-01-24 19:34:15 |
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 | 23 |
author_reputation | 448,528,959,341,273 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,514,015 |
net_rshares | 0 |
 *<sub>img credz: pixabay.com</sub>* *Nice, you got an awesome upgoat, thanks to @mahsumakbas* *BuildTeam wishes everyone a bullish new Year!* *Want a boost? [Minnowbooster's](https://steemit.com/minnowbooster/@minnowbooster/minnowbooster-the-holiday-magic-is-back-for-2019) got your back!*
author | minnowbooster | ||||||
---|---|---|---|---|---|---|---|
permlink | comment-1547644171100 | ||||||
category | utopian-io | ||||||
json_metadata | {"app":"⇐stoned⇔pastries⇒/¹.².³","format":"markdown","tags":["minnowbooster"]} | ||||||
created | 2019-01-16 13:09:30 | ||||||
last_update | 2019-01-16 13:09:30 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2019-01-23 13:09: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 | 430 | ||||||
author_reputation | 230,546,282,483,083 | ||||||
root_title | "Tower: A REST API implementation on the top of Hivemind" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 78,454,273 | ||||||
net_rshares | 0 |
Thanks 😊 Posted using [Partiko Android](https://steemit.com/@partiko-android)
author | mohsenone |
---|---|
permlink | mohsenone-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190118t202624736z |
category | utopian-io |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-01-18 20:26:24 |
last_update | 2019-01-18 20:26:24 |
depth | 1 |
children | 0 |
last_payout | 2019-01-25 20:26:24 |
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 | 78 |
author_reputation | 27,638,769,539 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,583,109 |
net_rshares | 0 |
I am encouraged by the possibilities of what Hivemind can bring to communities and appreciate your efforts in development. I have given you my witness votes to assist you in gaining influence to continue to work towards the sustainability of the protocol! Posted using [Partiko iOS](https://steemit.com/@partiko-ios)
author | newageinv |
---|---|
permlink | newageinv-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t144752261z |
category | utopian-io |
json_metadata | {"app":"partiko","client":"ios"} |
created | 2019-01-16 14:47:51 |
last_update | 2019-01-16 14:47:51 |
depth | 1 |
children | 2 |
last_payout | 2019-01-23 14:47:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.158 HBD |
curator_payout_value | 0.052 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 318 |
author_reputation | 260,165,069,040,222 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,457,766 |
net_rshares | 343,753,445,701 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
emrebeyler | 0 | 342,978,890,532 | 40% | ||
rabbi39 | 0 | 445,290,821 | 100% | ||
opelkus | 0 | 329,264,348 | 100% |
Thank you! Much appreciated.
author | emrebeyler |
---|---|
permlink | re-newageinv-newageinv-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t161647128z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-16 16:16:48 |
last_update | 2019-01-16 16:16:48 |
depth | 2 |
children | 0 |
last_payout | 2019-01-23 16:16: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 | 28 |
author_reputation | 448,528,959,341,273 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,461,428 |
net_rshares | 0 |
i want make a group exchange upvote ..
author | hanimardi29 |
---|---|
permlink | re-newageinv-newageinv-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t225103651z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-16 22:51:06 |
last_update | 2019-01-16 22:51:06 |
depth | 2 |
children | 0 |
last_payout | 2019-01-23 22:51: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 | 39 |
author_reputation | -24,164,784,062 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,473,887 |
net_rshares | -95,094,028,259 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ausbitbank | 0 | -187,488,496,068 | -12% | ||
away4pro | 0 | 92,394,467,809 | 100% |
This post should make $200 without any bot. Sorin is creating the best content on Steemit at the moment.
author | nildighonto |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190119t164515336z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-19 16:45:24 |
last_update | 2019-01-19 16:45:24 |
depth | 1 |
children | 0 |
last_payout | 2019-01-26 16:45:24 |
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 | 104 |
author_reputation | 72,762,473,588 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,621,979 |
net_rshares | 0 |
this is fantastic, nice work. Is adding global properties (steem supply, pricing, block number ....) on the cards at all?
author | paulag |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t210536468z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-16 21:05:36 |
last_update | 2019-01-16 21:05:36 |
depth | 1 |
children | 4 |
last_payout | 2019-01-23 21:05:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.151 HBD |
curator_payout_value | 0.049 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 122 |
author_reputation | 274,264,287,951,003 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,470,662 |
net_rshares | 330,801,592,477 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
emrebeyler | 0 | 330,366,199,056 | 42% | ||
rabbi39 | 0 | 435,393,421 | 100% |
Thanks. Yes, there is a hive_state table stores the dynamic global properties. I will add with the next iteration.
author | emrebeyler |
---|---|
permlink | re-paulag-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t211032334z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-16 21:10:33 |
last_update | 2019-01-16 21:10:33 |
depth | 2 |
children | 3 |
last_payout | 2019-01-23 21:10:33 |
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 | 114 |
author_reputation | 448,528,959,341,273 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,470,815 |
net_rshares | 0 |
fantastic. Where can I find a full list of tables or structure of the data?
author | paulag |
---|---|
permlink | re-emrebeyler-re-paulag-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t223745707z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-16 22:37:45 |
last_update | 2019-01-16 22:37:45 |
depth | 3 |
children | 2 |
last_payout | 2019-01-23 22:37:45 |
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 | 76 |
author_reputation | 274,264,287,951,003 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,473,498 |
net_rshares | 0 |
This post has been included in the latest edition of [**SOS Daily News**](https://steemit.com/steem/@pennsif/sosdailynewsnewsaboutthestateofsteem16january2019-oi1avqje52) - a digest of all you need to know about the State of Steem. *** * *Editor of the [**The State of Steem SoS Daily News**](https://steemit.com/steem/@pennsif/sosdailynewsnewsaboutthestateofsteem16january2019-oi1avqje52).* * *Promoter of [**The State of Steem SoS Weekly Forums**](https://steemit.com/dtube/@pennsif/k8811wa6).* * *Editor of the [**weekly listing of steem radio shows, podcasts & social broadcasts**](https://steemit.com/mspwaves/@pennsif/schedule-of-radio-shows-podcasts-and-social-broadcasts-week-beginning-14-january-2019).* * *Founder of the [**A Dollar A Day**](https://steemit.com/adollaraday/@adollaraday/a-dollar-a-day-charitable-giving-project-ususd-5000-donated-in-8-months-we-made-it) charitable giving project.* ***
author | pennsif |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190117t155010631z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://steemit.com/steem/@pennsif/sosdailynewsnewsaboutthestateofsteem16january2019-oi1avqje52","https://steemit.com/dtube/@pennsif/k8811wa6","https://steemit.com/mspwaves/@pennsif/schedule-of-radio-shows-podcasts-and-social-broadcasts-week-beginning-14-january-2019","https://steemit.com/adollaraday/@adollaraday/a-dollar-a-day-charitable-giving-project-ususd-5000-donated-in-8-months-we-made-it"],"app":"steemit/0.1"} |
created | 2019-01-17 15:50:12 |
last_update | 2019-01-17 15:50:12 |
depth | 1 |
children | 0 |
last_payout | 2019-01-24 15:50: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 | 919 |
author_reputation | 636,410,097,572,565 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,505,984 |
net_rshares | 0 |
How would you be able to help Me, if you become a Witness...???  IN GOD WE "TRUST" THE PLAN... January 17, 2019...
author | pocketechange |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190118t053409953z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1","image":["https://cdn.steemitimages.com/DQmbJjw8S6PMgLipK59NxiJnt2FhHe5vsaxXSQJsSGNhoX4/image.png"]} |
created | 2019-01-18 05:34:09 |
last_update | 2019-01-18 05:37:39 |
depth | 1 |
children | 0 |
last_payout | 2019-01-25 05:34: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 | 207 |
author_reputation | 227,047,329,186,111 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,535,587 |
net_rshares | 0 |
This is awesome! So you think it is possible to have a search API? Like searching for posts in specific tags, containing specific field/value in the json_metadata etc...?
author | quochuy |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190117t072043851z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-17 07:20:45 |
last_update | 2019-01-17 07:20:45 |
depth | 1 |
children | 4 |
last_payout | 2019-01-24 07:20:45 |
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 | 170 |
author_reputation | 758,372,221,814,367 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,488,600 |
net_rshares | 0 |
Yes. It's possible. But I limited the options on `posts` and `post_cache` tables because these tables are huge. To make the queries efficient I need to add indexes targeted for them. For example, Tower will support json_metadata.app filters soon.
author | emrebeyler |
---|---|
permlink | re-quochuy-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190117t072304668z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-17 07:23:03 |
last_update | 2019-01-17 07:23:21 |
depth | 2 |
children | 3 |
last_payout | 2019-01-24 07:23:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.038 HBD |
curator_payout_value | 0.001 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 246 |
author_reputation | 448,528,959,341,273 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,488,666 |
net_rshares | 83,291,759,130 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
quochuy | 0 | 83,291,759,130 | 100% |
Do you have an idea when such search API will be available? With AskSteem being shutdown, I’m looking for a replacement for my @steemtelly project Posted using [Partiko iOS](https://steemit.com/@partiko-ios)
author | quochuy |
---|---|
permlink | quochuy-re-emrebeyler-re-quochuy-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190117t072520800z |
category | utopian-io |
json_metadata | {"app":"partiko","client":"ios"} |
created | 2019-01-17 07:25:21 |
last_update | 2019-01-17 07:25:21 |
depth | 3 |
children | 2 |
last_payout | 2019-01-24 07:25: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 | 208 |
author_reputation | 758,372,221,814,367 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,488,728 |
net_rshares | 0 |
wow interesting article
author | reuven26 |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190118t124236663z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-18 12:42:39 |
last_update | 2019-01-18 12:42:39 |
depth | 1 |
children | 0 |
last_payout | 2019-01-25 12:42: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 | 23 |
author_reputation | 3,306,306,811 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,556,721 |
net_rshares | 0 |
hello sir,I have watched your Post and it was very helpful .I followed all the steps as shown in the tutorial but then also i m getting " java.lang.ClassNotFoundException: org.glassfish.jersey.servlet.ServletContainer.class " error ,why so?
author | rizwansadiq |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190117t070741880z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-17 06:07:54 |
last_update | 2019-01-17 06:07:54 |
depth | 1 |
children | 0 |
last_payout | 2019-01-24 06:07:54 |
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 | 240 |
author_reputation | 19,604,501,168 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,486,445 |
net_rshares | 0 |
Excellent work! Please be aware we just made a huge batch of updates to bring hivemind out of alpha into beta: https://github.com/steemit/hivemind -- many bugs fixed and indexes tuned/added. The latest migrations might take a while.
author | roadscape |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t192956308z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://github.com/steemit/hivemind"],"app":"steemit/0.1"} |
created | 2019-01-16 19:29:57 |
last_update | 2019-01-16 19:29:57 |
depth | 1 |
children | 4 |
last_payout | 2019-01-23 19:29: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 | 232 |
author_reputation | 27,406,317,697,121 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 78,467,692 |
net_rshares | 807,280,886,834 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sdavignon | 0 | 1,165,281,652 | 100% | ||
drakos | 0 | 467,973,996,638 | 15% | ||
espoem | 0 | 9,170,931,225 | 5% | ||
emrebeyler | 0 | 327,660,476,912 | 40% | ||
ascorphat | 0 | 833,997,563 | 2.5% | ||
rabbi39 | 0 | 476,202,844 | 100% |
Hello @roadscape i did not know in what way you can help me on steemit either by steem delegation. I have been posting on steemit but having low upvotes on my post and my account is not growing. Out of the low steem i get, i try to rebid bot to upvote my post so as to get more visibility but still not i am not getting much visiblity to my post. I would be happy if you can surely help.me out with some good amount of steem power to grow up my steem account on steemit and i would really he happy for that. Thanks for your helping hand for me to grow on steemit
author | adenijiadeshina |
---|---|
permlink | re-roadscape-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190310t105649923z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["roadscape"],"app":"steemit/0.1"} |
created | 2019-03-10 10:56:48 |
last_update | 2019-03-10 10:56:48 |
depth | 2 |
children | 0 |
last_payout | 2019-03-17 10:56: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 | 565 |
author_reputation | 36,301,706,958,332 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,007,255 |
net_rshares | 0 |
Great updates @roadscape! and congratulations on the beta milestone. Reviewing the changes while taking a backup on the primary database. Will try migrating in a cloned database first. :)
author | emrebeyler |
---|---|
permlink | re-roadscape-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t200057810z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["roadscape"],"app":"steemit/0.1"} |
created | 2019-01-16 20:01:00 |
last_update | 2019-01-16 20:01:00 |
depth | 2 |
children | 0 |
last_payout | 2019-01-23 20:01:00 |
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 | 188 |
author_reputation | 448,528,959,341,273 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,468,642 |
net_rshares | 556,000,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sigla | 0 | 556,000,000 | 100% |
Upgraded to beta. 🎉
author | emrebeyler |
---|---|
permlink | re-roadscape-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190118t121943679z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-18 12:19:45 |
last_update | 2019-01-18 12:19:45 |
depth | 2 |
children | 0 |
last_payout | 2019-01-25 12:19:45 |
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 | 19 |
author_reputation | 448,528,959,341,273 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,555,365 |
net_rshares | 0 |
i want make a group exchange upvote ....
author | hanimardi29 |
---|---|
permlink | re-roadscape-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t225112242z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-16 22:51:15 |
last_update | 2019-01-16 22:51:15 |
depth | 2 |
children | 0 |
last_payout | 2019-01-23 22:51:15 |
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 | 40 |
author_reputation | -24,164,784,062 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,473,892 |
net_rshares | -90,664,813,634 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ausbitbank | 0 | -62,315,106,050 | -4% | ||
emrebeyler | 0 | -118,896,596,173 | -15% | ||
away4pro | 0 | 90,546,888,589 | 100% |
What are your storage needs currently? I would like to do something similar, started off doing it in MySQL but getting all the data means gigs and gigs of space is needed.
author | shaunmza |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190117t090713251z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-17 09:07:12 |
last_update | 2019-01-17 09:07:12 |
depth | 1 |
children | 2 |
last_payout | 2019-01-24 09:07:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.184 HBD |
curator_payout_value | 0.061 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 171 |
author_reputation | 17,134,119,013,541 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,491,738 |
net_rshares | 397,972,832,352 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
emrebeyler | 0 | 397,517,442,144 | 51% | ||
rabbi39 | 0 | 455,390,208 | 100% |
``` postgres=# SELECT pg_size_pretty( pg_database_size('hive') ); pg_size_pretty ---------------- 181 GB (1 row) ``` 181 GB for hivemind. But beware, Hive doesn't store all the data of the blockchain.
author | emrebeyler |
---|---|
permlink | re-shaunmza-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190117t092344491z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-17 09:23:45 |
last_update | 2019-01-17 09:39:48 |
depth | 2 |
children | 1 |
last_payout | 2019-01-24 09:23:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 203 |
author_reputation | 448,528,959,341,273 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,492,172 |
net_rshares | 49,628,464,881 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
shaunmza | 0 | 49,628,464,881 | 100% |
Thanks for this, I see it's a Postgres db in the back then. I am interested in only a subset of the data. Is it possible to filter posts where the parent id is empty (i.e. only get back posts, not comments)? Going to read up a bit more.
author | shaunmza |
---|---|
permlink | re-emrebeyler-re-shaunmza-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190117t093359689z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-17 09:34:00 |
last_update | 2019-01-17 09:34:00 |
depth | 3 |
children | 0 |
last_payout | 2019-01-24 09:34:00 |
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 | 238 |
author_reputation | 17,134,119,013,541 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,492,507 |
net_rshares | 0 |
#### Hi @emrebeyler! 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-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t164722z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.14"}" |
created | 2019-01-16 16:47:24 |
last_update | 2019-01-16 16:47:24 |
depth | 1 |
children | 0 |
last_payout | 2019-01-23 16:47:24 |
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 | 289 |
author_reputation | 23,214,230,978,060 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,462,478 |
net_rshares | 0 |
This story was recommended by Steeve to its users and upvoted by one or more of them. Check @steeveapp to learn more about Steeve, an AI-powered Steem interface.
author | steevebot |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-vote-beneficiaries |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steeve/0.1","format":"markdown"} |
created | 2019-01-18 10:21:57 |
last_update | 2019-01-18 10:21:57 |
depth | 1 |
children | 0 |
last_payout | 2019-01-25 10:21: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 | 164 |
author_reputation | 1,016,697,284,644 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,549,624 |
net_rshares | 1,788,613,782 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gadrian | 0 | 1,788,613,782 | 3% |
I wish I understiod all this technical stuff about the blockchain.
author | stephen-somers |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t125157699z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-16 12:51:57 |
last_update | 2019-01-16 12:51:57 |
depth | 1 |
children | 0 |
last_payout | 2019-01-23 12:51: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 | 66 |
author_reputation | 19,280,743,077,878 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,453,691 |
net_rshares | 0 |
I have no idea what you're talking about, but still you had me at *Hivemind* :-) Does that mean we're close to Communities?
author | surfermarly |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t135038084z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-16 13:50:42 |
last_update | 2019-01-16 13:50:42 |
depth | 1 |
children | 4 |
last_payout | 2019-01-23 13:50:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.078 HBD |
curator_payout_value | 0.025 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 123 |
author_reputation | 318,958,646,866,746 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,455,731 |
net_rshares | 172,573,463,741 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
emrebeyler | 0 | 172,147,769,772 | 20% | ||
rabbi39 | 0 | 425,693,969 | 100% |
Lol, hivemind topic is hot nowadays. :) But we're not close to communities yet judging by the activity on the github repository.
author | emrebeyler |
---|---|
permlink | re-surfermarly-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t135919712z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-16 13:59:21 |
last_update | 2019-01-16 13:59:21 |
depth | 2 |
children | 1 |
last_payout | 2019-01-23 13: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 | 129 |
author_reputation | 448,528,959,341,273 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,456,016 |
net_rshares | 0 |
Hehe you bet! #hivemind will become THAT trending tag on Steem shortly. I am unable to read what's published on github, I mean i can read it but don't comprehend - so thanks for the translation here :)
author | surfermarly |
---|---|
permlink | re-emrebeyler-re-surfermarly-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t141447915z |
category | utopian-io |
json_metadata | {"tags":["utopian-io","hivemind"],"app":"steemit/0.1"} |
created | 2019-01-16 14:14:51 |
last_update | 2019-01-16 14:14:51 |
depth | 3 |
children | 0 |
last_payout | 2019-01-23 14:14:51 |
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 | 202 |
author_reputation | 318,958,646,866,746 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,456,591 |
net_rshares | 0 |
i want make a group exchange upvote ......
author | hanimardi29 |
---|---|
permlink | re-surfermarly-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t225120616z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-16 22:51:24 |
last_update | 2019-01-16 22:51:24 |
depth | 2 |
children | 1 |
last_payout | 2019-01-23 22:51:24 |
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 | 42 |
author_reputation | -24,164,784,062 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,473,898 |
net_rshares | 2,222,076,621 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ausbitbank | 0 | -77,848,070,604 | -5% | ||
fbslo | 0 | -8,666,113,727 | -100% | ||
away4pro | 0 | 88,736,260,952 | 100% |
[Source]() When you copy/paste or repeatedly type the same comments you could be mistaken for a bot. More information: [The Art of Commenting](https://steemit.com/steemcleaners/@steemcleaners/the-art-of-commenting) [Comment Classifications](https://steemcleaners.org/comment-classifications/)
author | spaminator |
---|---|
permlink | re-hanimardi29-re-surfermarly-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t225120616z-20190117t150810676z |
category | utopian-io |
json_metadata | {"app":"steemcleaners/0.3","format":"markdown+html","community":"steemcleaners"} |
created | 2019-01-17 15:08:12 |
last_update | 2019-01-17 15:08:12 |
depth | 3 |
children | 0 |
last_payout | 2019-01-24 15:08:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.040 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 301 |
author_reputation | 68,078,150,632,608 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,504,185 |
net_rshares | 88,727,189,680 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
adm | 0 | 90,787,961,619 | 0.6% | ||
brandnewaccount | 0 | -291,211,561 | -100% | ||
scruffyjunkies | 0 | -281,816,808 | -100% | ||
shit-posts | 0 | -942,677,470 | -100% | ||
dumb-as-an-ox | 0 | -545,066,100 | -100% |
ǝɹǝɥ sɐʍ ɹoʇɐɹnƆ pɐW ǝɥ┴
author | themadcurator |
---|---|
permlink | re-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t131347 |
category | utopian-io |
json_metadata | "" |
created | 2019-01-16 13:13:48 |
last_update | 2019-01-16 13:13:48 |
depth | 1 |
children | 0 |
last_payout | 2019-01-23 13:13:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.232 HBD |
curator_payout_value | 0.076 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 26 |
author_reputation | 53,938,302,377,048 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,454,421 |
net_rshares | 512,180,145,619 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
berniesanders | 0 | 20,150,640,479 | 2% | ||
thecyclist | 0 | 3,874,294,248 | 2% | ||
ngc | 0 | 202,361,801,261 | 2% | ||
z8teyb289qav9z | 0 | 285,006,349,688 | 3% | ||
ascorphat | 0 | 787,059,943 | 2.5% |
Very cool dude will check it out when I fire up a HiveMind instance.
author | themarkymark |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t130206097z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-16 13:02:06 |
last_update | 2019-01-16 13:02:06 |
depth | 1 |
children | 4 |
last_payout | 2019-01-23 13:02:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.076 HBD |
curator_payout_value | 0.025 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 68 |
author_reputation | 1,772,918,693,450,156 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,454,020 |
net_rshares | 169,839,308,050 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slowgrow | 0 | -413,736,348 | -100% | ||
emrebeyler | 0 | 118,326,397,281 | 14% | ||
ipromote | 0 | 51,926,647,117 | 50% |
✌️
author | emrebeyler |
---|---|
permlink | re-themarkymark-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t130808792z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-16 13:08:09 |
last_update | 2019-01-16 13:08:09 |
depth | 2 |
children | 3 |
last_payout | 2019-01-23 13:08: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 | 2 |
author_reputation | 448,528,959,341,273 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,454,225 |
net_rshares | 0 |
author | ackza |
---|---|
permlink | re-emrebeyler-re-themarkymark-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t152519642z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-16 15:25:21 |
last_update | 2019-01-16 15:25:21 |
depth | 3 |
children | 2 |
last_payout | 2019-01-23 15:25:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.098 HBD |
curator_payout_value | 0.032 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 34 |
author_reputation | 287,695,264,112,368 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,459,354 |
net_rshares | 215,299,806,650 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tytran | 0 | 214,883,605,518 | 100% | ||
rabbi39 | 0 | 416,201,132 | 100% |
#.... This post is very important for you.............good.........good........good.........
author | tony57 |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190117t092728794z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"image":["https://cdn.steemitimages.com/DQmRRTRHKNRVmw57bNPQjvXPj5x9VviUU4wwWH7a4Cmhi23/IMG_20181129_071229.png"],"app":"steemit/0.1"} |
created | 2019-01-17 09:27:33 |
last_update | 2019-01-17 09:27:33 |
depth | 1 |
children | 0 |
last_payout | 2019-01-24 09:27:33 |
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 | 221 |
author_reputation | -7,297,977,761 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,492,279 |
net_rshares | 0 |
Hey, @emrebeyler! **Thanks for contributing on Utopian**. Congratulations! Your contribution was Staff Picked to receive a maximum vote for the development category on Utopian for being of significant value to the project and the open source community. 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-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190117t120824z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.9"}" |
created | 2019-01-17 12:08:24 |
last_update | 2019-01-17 12:08:24 |
depth | 1 |
children | 0 |
last_payout | 2019-01-24 12:08:24 |
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 | 788 |
author_reputation | 152,955,367,999,756 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,497,159 |
net_rshares | 0 |
Too much info I do not understand Posted using [Partiko Android](https://steemit.com/@partiko-android)
author | wakeupkitty |
---|---|
permlink | wakeupkitty-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t143157978z |
category | utopian-io |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-01-16 14:31:57 |
last_update | 2019-01-16 14:31:57 |
depth | 1 |
children | 1 |
last_payout | 2019-01-23 14:31: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 | 103 |
author_reputation | 177,226,358,100,256 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,457,172 |
net_rshares | 0 |
No worries, its nerdy stuff.
author | emrebeyler |
---|---|
permlink | re-wakeupkitty-wakeupkitty-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t143951179z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-16 14:39:51 |
last_update | 2019-01-16 14:39:51 |
depth | 2 |
children | 0 |
last_payout | 2019-01-23 14:39:51 |
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 | 28 |
author_reputation | 448,528,959,341,273 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,457,460 |
net_rshares | 0 |
author | wehmoen |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t135452987z |
category | utopian-io |
json_metadata | {} |
created | 2019-01-16 13:54:54 |
last_update | 2020-06-03 06:43:12 |
depth | 1 |
children | 9 |
last_payout | 2019-01-23 13:54:54 |
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 | 1 |
author_reputation | 86,504,380,503,125 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,455,869 |
net_rshares | 0 |
Yeah, unfortunately, if you try a wide ordering on posts or posts_cache it happens since it takes a good amount of time to get the results. Try limiting and narrowing the query for a better performance, for now. What did you try?
author | emrebeyler |
---|---|
permlink | re-wehmoen-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t135746078z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-16 13:57:45 |
last_update | 2019-01-16 13:59:36 |
depth | 2 |
children | 8 |
last_payout | 2019-01-23 13:57:45 |
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 | 230 |
author_reputation | 448,528,959,341,273 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,455,959 |
net_rshares | 0 |
Muy buena información, aunque tuve que usar el traductor ;)
author | barbara2210 |
---|---|
permlink | re-emrebeyler-re-wehmoen-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t235519116z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-17 04:53:24 |
last_update | 2019-01-17 04:53:24 |
depth | 3 |
children | 0 |
last_payout | 2019-01-24 04:53:24 |
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 | 59 |
author_reputation | 7,813,695 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,484,355 |
net_rshares | 0 |
author | wehmoen |
---|---|
permlink | re-emrebeyler-re-wehmoen-re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190116t143502334z |
category | utopian-io |
json_metadata | {} |
created | 2019-01-16 14:35:03 |
last_update | 2020-06-03 06:51:30 |
depth | 3 |
children | 6 |
last_payout | 2019-01-23 14:35: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 | 1 |
author_reputation | 86,504,380,503,125 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,457,285 |
net_rshares | 0 |
nice
author | yovannyjvv |
---|---|
permlink | re-emrebeyler-tower-a-rest-api-implementation-on-the-top-of-hivemind-20190117t132854034z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-01-17 13:29:00 |
last_update | 2019-01-17 13:29:00 |
depth | 1 |
children | 0 |
last_payout | 2019-01-24 13:29:00 |
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 | 6,364,827,630 |
root_title | "Tower: A REST API implementation on the top of Hivemind" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,500,260 |
net_rshares | 0 |