 In as soon as 7 days (2018-12-07 23:00:00 UTC), the api.steemit.com endpoint will begin to route select steemd methods directly to hivemind. If you rely on this endpoint for any of the methods below, you should begin testing your applications against api.steemitdev.com as soon as possible. This is in preparation for the removal of `tags` and `follows` plugins from our full nodes, the functionality of which has been ported to the hivemind service. While hivemind attempts to mimic the existing request/response format as well as all of the underlying logic, there are notable exceptions which will be outlined in this post. As we disclosed in our [last post](https://steemit.com/steem/@ned/2fajh9-steemit-update), Steemit Inc.’s top priority is dramatically lowering the cost of running a Steem node. By routing these API calls to Hivemind, we greatly decrease the amount of resources our full nodes use. <h2>Background</h2> Hive's `condenser_api` implementation goal is to port a relevant subset of steemd's `tags` and `follows` functionalities to support instances of `condenser` with minimal changes required. This allows node operators to lower `steemd` resource requirements while laying the infrastructure for next-generation social APIs. While we have attempted to ensure relevant data is still available, in some cases this is simply impossible. A prime example of this is the `get_state` call, whose response is a monolith which attempts to account for an extremely wide variety of data. Portions of the returned data is irrelevant to most apps, and some of it is entirely out of hive's scope (example: witness schedule). As another example, when loading a discussion thread, all involved accounts objects are returned *in full* (including balances, authorities, statistics). This results in a lot of extra bandwidth used when only a small fraction of the information is relevant. In some cases, portions of API responses unused by `condenser` have simply not been implemented in hive -- either to save time or complexity. In other cases, expected values may be slightly different but of a compatible format. Hive cannot guarantee data is accurate as of the latest block. Because interfaces often rely on supporting information such as `steem_per_vests` or `feed_price`, hive does store and return some marginally-out-of-scope-yet-accessible data, but it will be cached with a TTL of up to several minutes. Those values can still be obtained through other API calls to steemd. ----- <h1>API Changes - Overview</h1> We will migrate the API by *overriding* specific steemd methods passed to api.steemit.com. These methods will now be served by hivemind: ``` Follows Queries get_followers [following, start_follower, follow_type, limit] get_following [follower, start_following, follow_type, limit] get_follow_count [account] Content Monolith get_state [path] Trending Tags get_trending_tags [start_tag, limit] (!) only supports ('', 250) Discussion Queries get_discussions_by_trending {tag, limit, start_author, start_permlink} trending get_discussions_by_hot {tag, limit, start_author, start_permlink} hot get_discussions_by_promoted {tag, limit, start_author, start_permlink} promoted get_discussions_by_created {tag, limit, start_author, start_permlink} created get_discussions_by_blog {tag, limit, start_author, start_permlink} account-blog get_discussions_by_feed {tag, limit, start_author, start_permlink} account-feed get_discussions_by_comments {limit, start_author, start_permlink} account-comments get_replies_by_last_update [author, permlink, limit]; account-replies ``` #### Exceptions These calls will NOT be forwarded to hivemind, and will be forwarded to a light steemd node: ``` get_state.params=['@<user>/transfers'] get_state.params=['~witnesses'] ``` ### Not ported ``` Deprecated/Unused Discussion Queries - NOT ported! get_post_discussions_by_payout {tag, limit, start_author, start_permlink} payout get_comment_discussions_by_payout {tag, limit, start_author, start_permlink} payout_comments get_discussions_by_cashout {tag, limit, start_author, start_permlink} UNUSED/cashout get_discussions_by_children {tag, limit, start_author, start_permlink} UNUSED/responses get_discussions_by_votes {tag, limit, start_author, start_permlink} UNUSED/votes get_discussions_by_active {tag, limit, start_author, start_permlink} DEPRECATED get_discussions_by_trending30 {tag, limit, start_author, start_permlink} DEPRECATED (DNE) get_discussions_by_payout {tag, limit, start_author, start_permlink} UNUSED (DNE) get_discussions_by_author_before_date [author, start_permlink, before_date, limit] UNUSED ``` <br> Additionally, the following have not been ported, which means they may become unavailable. ``` get_feed_entries() get_feed() get_blog_entries() get_blog() get_account_reputations() get_reblogged_by() get_blog_authors() get_tags_used_by_author() ``` <br> These *may* be available for some time, but will be served by a light node. We cannot guarantee their availability. Many of these calls are very similar (or identical) to one of the supported methods. If this is not the case, please leave a comment and we'll evaluate the options. <h3>Not ported, still available through steemd's condenser_api</h3> As these are still part of consensus and consumers often expect them to be 100% accurate and up-to-date, they are not currently served by hivemind and will continue to be available through steemd. ``` Content Primitives get_content [author, permlink] get_content_replies [parent_author, parent_permlink] get_active_votes [author, permlink] get_account_votes [account] ``` <h2>Steemd configuration changes</h2> After a period of testing, the `follow` and `tags` plugins will be removed from our API nodes. We will however add the `reputation` plugin, which allows us to continue using the existing reputation metrict. It used to be a subset of `follow` plugin functionality, and it's the only piece logic which is not easily reproducible outside of steemd. If you were relying on reputation methods provided by `follow_api`, you will need to update your code to use `reputation_api`. ----- ## API Changes - Detail ### Legacy `call` method ``` call ['condenser_api', method, params] ``` The legacy-style `call` method takes `[api, method, [params]]` as parameters. Hive routes these calls to the appropriate internal method. ##### Concerns - `api` *must* be set to `condenser_api` - It is not recommended to use this method --- ### Follows Queries ``` condenser_api.get_followers condenser_api.get_following condenser_api.get_follow_count ``` These are straightforward, simple replacements. ##### Concerns - steemd follows plugin can hold multiple follow 'states'; hive enforces one - the feature is undocumented but small chance of edge cases - internally, hive follow state must be blank, followed or muted --- ### Content Primitives ``` condenser_api.get_content condenser_api.get_content_replies ``` <br> **Important**: while hive offers these methods as part of its `condenser_api`, api.steemit.com will continue to serve these directly from `steemd`. However, hive does leverage it internally to build responses for `get_state` as well as the various `get_discussions_*` methods. ##### Concerns - hive's `comment` response format is a subset of steemd's. - deprecated/useless fields have been removed or normalized - some fields of questionable utility are not unimplemented --- ### Content Monolith ``` condenser_api.get_state ``` Notice! Hive will refuse to serve these routes: - `/@account/transfers` - `/witnesses` and `/~witnesses` Hive does serve these routes, requested by condenser, which are not mapped to anything, but steemd handles them anyway: - `/@account/followed` - dummy - `/@account/followers` - dummy - `/@account/permissions` - dummy - `/@account/password` - dummy - `/@account/settings` - dummy ##### Concerns - embedded get_dynamic_global_properties data is truncated - hive does not keep up-to-date keys for accounts.. but on `/@account/xxx` pages, it still serves minimal account data. --- ### Trending Tags ``` condenser_api.get_trending_tags ``` ##### Concerns - the parameters `[start_tag, limit]` must be left blank or passed as `['', 250]` - only primary tags ("category") counted in these stats (not all tags, as per current implementation) --- ### Discussion Queries **Global** ``` condenser_api.get_discussions_by_trending condenser_api.get_discussions_by_hot condenser_api.get_discussions_by_promoted condenser_api.get_discussions_by_created ``` **Account/blog-specific** ``` condenser_api.get_discussions_by_blog condenser_api.get_discussions_by_feed condenser_api.get_discussions_by_comments condenser_api.get_replies_by_last_update ``` ##### Concerns - all `get_content` concerns apply here; otherwise identical ------ <h2>Testing & Feedback</h2> **If your app or service relies on any of the above calls and uses api.steemit.com, please begin testing against api.steemitdev.com as soon as possible.** If there is an unsupported API call on which you are critically relying on, let us know in the comments and we'll find a solution. Note that at this time, no `steemd` APIs are changing -- only the API as provided by api.steemit.com. If any apps are still relying on `get_state`, we highly recommend ceasing use as soon as possible. _The Steemit Team_
author | steemitdev |
---|---|
permlink | upcoming-changes-to-api-steemit-com |
category | steemit |
json_metadata | {"tags":["steemit","api","hivemind","hive"],"image":["https://cdn.steemitimages.com/DQmP3ZHBdc18DFVUzQSnyZbTME6rP4FMS8k3kNCpRuu8FTi/API%20changes.jpg"],"links":["https://steemit.com/steem/@ned/2fajh9-steemit-update"],"app":"steemit/0.1","format":"markdown"} |
created | 2018-12-01 00:11:12 |
last_update | 2018-12-01 00:11:12 |
depth | 0 |
children | 73 |
last_payout | 2018-12-08 00:11: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 | 10,017 |
author_reputation | 17,757,631,438,715 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 76,172,748 |
net_rshares | 103,142,746,851,229 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
analisa | 0 | 39,087,788,329 | 1% | ||
pharesim | 0 | 54,452,240,297 | 100% | ||
roadscape | 0 | 6,624,707,458,843 | 100% | ||
xeroc | 0 | 635,003,900,056 | 100% | ||
ajvest | 0 | 127,940,533,783 | 90% | ||
simba | 0 | 18,059,182,911 | 90% | ||
donkeypong | 0 | 135,645,939,849 | 1% | ||
konelectric | 0 | 40,955,418,313 | 21% | ||
bhokor | 0 | 15,178,933,733 | 90% | ||
chris4210 | 0 | 506,205,760,758 | 90% | ||
void | 0 | 593,627,709,999 | 100% | ||
makishart | 0 | 71,040,041,161 | 90% | ||
tshering-tamang | 0 | 172,722,144,582 | 90% | ||
nenad-ristic | 0 | 40,482,968,235 | 90% | ||
atomrigs | 0 | 975,946,514,629 | 90% | ||
dedmatvey | 0 | 12,205,418 | 90% | ||
jademont | 0 | 391,774,594,829 | 90% | ||
onealfa | 0 | 581,677,494,191 | 90% | ||
dan-atstarlite | 0 | 659,568,729,061 | 90% | ||
thecryptofiend | 0 | 97,755,460,408 | 90% | ||
the-alien | 0 | 3,229,063,576 | 100% | ||
thecryptodrive | 0 | 456,449,703,183 | 90% | ||
peter-parker | 0 | 168,028,751,537 | 90% | ||
ola-haukland | 0 | 20,944,619,643 | 90% | ||
g-dubs | 0 | 37,715,542,391 | 90% | ||
foma17 | 0 | 709,816,977 | 90% | ||
sean-king | 0 | 6,247,500,198,496 | 90% | ||
albertogm | 0 | 1,280,288,410 | 90% | ||
lukestokes | 0 | 3,168,283,461,896 | 100% | ||
tim-rumford | 0 | 300,229,366 | 90% | ||
mauricemikkers | 0 | 923,227,809 | 90% | ||
angusleung100 | 0 | 132,285,258 | 90% | ||
jonnyrevolution | 0 | 75,443,443,552 | 90% | ||
claraking | 0 | 207,154,509,580 | 90% | ||
bitbarrie | 0 | 29,349,116,906 | 90% | ||
roelandp | 0 | 3,734,381,293,368 | 100% | ||
slowwalker | 0 | 863,166,818,235 | 5% | ||
btcshare7 | 0 | 386,218,859 | 90% | ||
okkiedot | 0 | 76,462,264,676 | 90% | ||
yury-vas | 0 | 173,700,857 | 1% | ||
vi1son | 0 | 181,879,327,069 | 90% | ||
gikitiki | 0 | 34,342,725,692 | 90% | ||
blockchainbilly | 0 | 9,287,222,733 | 90% | ||
cloh76 | 0 | 65,510,635,286 | 90% | ||
nepalipahad | 0 | 14,170,556,451 | 90% | ||
toxonaut | 0 | 473,693,928 | 90% | ||
incomemonthly | 0 | 31,315,248,928 | 90% | ||
thelindvall | 0 | 179,037,367,234 | 90% | ||
edrivegom | 0 | 9,099,285,929 | 90% | ||
donatello | 0 | 36,876,699,772 | 90% | ||
juvyjabian | 0 | 8,937,138,230 | 90% | ||
jza | 0 | 54,617,473,514 | 90% | ||
luisucv34 | 0 | 726,894,093 | 90% | ||
inertia | 0 | 885,644,232,025 | 100% | ||
arcange | 0 | 33,774,731,333 | 4% | ||
shawnamawna | 0 | 65,798,174,422 | 90% | ||
fiveboringgames | 0 | 128,849,300,372 | 90% | ||
fiona777 | 0 | 239,171,004 | 90% | ||
coininstant | 0 | 19,087,626,484 | 90% | ||
calaber24p | 0 | 72,851,845,657 | 90% | ||
xpilar | 0 | 1,217,698,116,921 | 90% | ||
thylbom | 0 | 144,146,205 | 90% | ||
pcste | 0 | 22,837,586,190 | 90% | ||
bola | 0 | 30,779,561,634 | 90% | ||
sauravrungta | 0 | 1,092,690,689,206 | 90% | ||
qonq99 | 0 | 1,928,946,121 | 100% | ||
tokyodude | 0 | 33,069,368,850 | 90% | ||
steemed-open | 0 | 619,599,924,839 | 90% | ||
jedau | 0 | 111,745,372,430 | 90% | ||
ajay555 | 0 | 28,190,418,730 | 90% | ||
raphaelle | 0 | 2,149,711,171 | 4% | ||
moon32walker | 0 | 85,252,288,814 | 90% | ||
stea90 | 0 | 100,833,925,350 | 90% | ||
daynewright | 0 | 27,853,068,149 | 90% | ||
krabgat | 0 | 77,038,499,866 | 90% | ||
kooshikoo | 0 | 10,127,803,989 | 90% | ||
team-leibniz | 0 | 183,313,568,393 | 90% | ||
brianphobos | 0 | 270,971,245,093 | 90% | ||
fabien | 0 | 1,366,804,945,367 | 100% | ||
kenjiby | 0 | 17,068,649,362 | 90% | ||
famunger | 0 | 44,960,853,217 | 90% | ||
vandeberg | 0 | 4,028,226,975,383 | 100% | ||
rainbowdash | 0 | 1,081,539,107 | 90% | ||
timcliff | 0 | 1,192,477,520,804 | 85% | ||
musicsteem | 0 | 2,155,739,106 | 90% | ||
kdtkaren | 0 | 1,411,952,480 | 90% | ||
kview | 0 | 333,319,530,786 | 90% | ||
germansailor | 0 | 97,397,170,531 | 90% | ||
sabine-reichert | 0 | 37,179,395,084 | 90% | ||
themagus | 0 | 36,021,363,598 | 90% | ||
brian-rhodes | 0 | 197,562,330,737 | 90% | ||
veerprit | 0 | 1,979,243,058 | 90% | ||
sirwinchester | 0 | 185,827,068,006 | 90% | ||
kpine | 0 | 271,994,753,507 | 1% | ||
olegw | 0 | 38,458,646,446 | 90% | ||
kiddarko | 0 | 113,286,209,632 | 90% | ||
borran | 0 | 167,908,159,956 | 90% | ||
mr-meteorologist | 0 | 159,333,934 | 90% | ||
rivalhw | 0 | 1,784,211,600,277 | 90% | ||
stylo | 0 | 4,965,307,202 | 90% | ||
thegoldencookie | 0 | 86,584,627,065 | 90% | ||
johnvibes | 0 | 28,753,274,631 | 90% | ||
dgarsan | 0 | 2,021,349,430 | 90% | ||
telos | 0 | 61,053,496,570 | 90% | ||
protegeaa | 0 | 220,435,185,125 | 90% | ||
jimmco | 0 | 14,757,595,954 | 90% | ||
andrewawerdna | 0 | 438,201,226 | 90% | ||
generation.easy | 0 | 55,611,427,484 | 90% | ||
erikaharris | 0 | 375,577,399,087 | 90% | ||
nomadnessie | 0 | 365,862,982 | 90% | ||
sature | 0 | 57,271,378,375 | 90% | ||
inchonbitcoin | 0 | 27,704,936 | 90% | ||
pery | 0 | 20,233,264,322 | 90% | ||
themonetaryfew | 0 | 128,341,132,251 | 100% | ||
etcmike | 0 | 20,576,721,078 | 10% | ||
carrinm | 0 | 632,841,096,871 | 90% | ||
uwelang | 0 | 1,165,461,071,363 | 90% | ||
yzomri | 0 | 280,029,584 | 90% | ||
wesleybos | 0 | 39,501,929,848 | 100% | ||
perspective | 0 | 354,787,226 | 90% | ||
jrhughes | 0 | 20,339,243,276 | 90% | ||
jimbobbill | 0 | 23,627,910,843 | 90% | ||
cornerstone | 0 | 1,192,309,178,963 | 90% | ||
masonmiler | 0 | 60,119,941,656 | 90% | ||
kyusho | 0 | 1,028,113,531 | 90% | ||
leunghakkwun | 0 | 169,262,832 | 100% | ||
benjamin.still | 0 | 12,683,528,659 | 90% | ||
edgarsart | 0 | 5,584,742,450 | 90% | ||
maarnio | 0 | 272,910,162,949 | 90% | ||
robcubbon | 0 | 3,017,268,393 | 90% | ||
mjhomb | 0 | 165,072,971,961 | 100% | ||
geke | 0 | 34,414,795,897 | 90% | ||
z3r0d4yz | 0 | 150,091,137 | 100% | ||
boxcarblue | 0 | 170,840,460,154 | 90% | ||
mikkolyytinen | 0 | 3,272,355,630 | 90% | ||
saamychristen | 0 | 14,272,984,663 | 90% | ||
echoesinthemind | 0 | 14,741,730,057 | 100% | ||
pickoum | 0 | 29,306,852,705 | 90% | ||
arama | 0 | 1,075,431,886,161 | 90% | ||
lellabird60 | 0 | 48,906,021,551 | 90% | ||
lonilush | 0 | 97,935,072 | 90% | ||
koskl | 0 | 0 | 0% | ||
ancapwarren | 0 | 20,932,226,164 | 90% | ||
lloyddavis | 0 | 22,972,083,454 | 90% | ||
aksinya | 0 | 86,072,210,326 | 90% | ||
timbot606 | 0 | 16,065,465,692 | 90% | ||
bmwrider | 0 | 29,011,830,029 | 90% | ||
dylanhobalart | 0 | 3,572,761,278 | 15% | ||
stacee | 0 | 7,526,051,069 | 90% | ||
mikepicker | 0 | 16,616,389,812 | 90% | ||
aldentan | 0 | 56,502,678,294 | 90% | ||
mitchelljaworski | 0 | 19,740,835,970 | 90% | ||
freiheit50 | 0 | 111,705,739,782 | 90% | ||
steemtruth | 0 | 28,410,128,035 | 90% | ||
onthax | 0 | 158,569,402 | 90% | ||
dgiors | 0 | 178,359,036,810 | 90% | ||
pilgrimtraveler | 0 | 158,421,760,784 | 90% | ||
michelleh82 | 0 | 53,477,961,575 | 90% | ||
elumni | 0 | 2,981,541,743 | 90% | ||
superstar | 0 | 357,392,700,074 | 90% | ||
steem-meme | 0 | 248,651,015 | 90% | ||
revostrike | 0 | 3,000,680,050 | 90% | ||
k-syusteem | 0 | 644,118,134 | 22.5% | ||
garethnelsonuk | 0 | 829,446,473 | 100% | ||
steemsportsfund | 0 | 201,637,569,168 | 90% | ||
sunscape | 0 | 59,530,288,961 | 90% | ||
anicasteem | 0 | 0 | 90% | ||
thejohalfiles | 0 | 608,255,598,211 | 100% | ||
arfa | 0 | 16,996,068,228 | 90% | ||
ebryans | 0 | 1,010,428,938 | 90% | ||
daniel.errey | 0 | 90,226,945,175 | 90% | ||
starrkravenmaf | 0 | 7,142,241,888 | 90% | ||
garvofe | 0 | 1,760,458,140 | 90% | ||
innafanz | 0 | 543,849,210 | 90% | ||
steemit-health | 0 | 1,321,717,707 | 90% | ||
djvidov | 0 | 133,914,337 | 90% | ||
johngentry | 0 | 3,895,853,419 | 90% | ||
steemvoter | 0 | 10,990,602,446 | 90% | ||
demartini | 0 | 1,346,905,569 | 90% | ||
floridagypsy | 0 | 47,712,944,242 | 90% | ||
grildrig | 0 | 10,374,204,850 | 90% | ||
spaceginger | 0 | 29,811,552,294 | 90% | ||
hopehuggs | 0 | 33,574,323,356 | 90% | ||
apsu | 0 | 65,584,695,207 | 90% | ||
igormuba | 0 | 4,463,463,817 | 100% | ||
teamhumble | 0 | 128,678,545,741 | 90% | ||
dayleeo | 0 | 100,349,696,564 | 90% | ||
sellergenius | 0 | 7,154,460,529 | 90% | ||
ethandsmith | 0 | 318,319,067,107 | 90% | ||
vcelier | 0 | 5,275,989,815,257 | 90% | ||
mallorcaman | 0 | 732,684,554 | 90% | ||
saleg25 | 0 | 5,681,778,715 | 90% | ||
aidancloquell | 0 | 8,171,153 | 90% | ||
dragon40 | 0 | 21,292,134,823 | 90% | ||
revdocwelch | 0 | 20,494,974,328 | 98% | ||
sebastianjago | 0 | 545,823,253,056 | 90% | ||
galinamaximova | 0 | 6,516,169 | 90% | ||
kristy1 | 0 | 20,794,878,006 | 90% | ||
mytechcrunch | 0 | 492,790,956 | 90% | ||
dovetail | 0 | 3,754,482,487 | 90% | ||
steembot-general | 0 | 271,891,192 | 90% | ||
elizacheng | 0 | 119,216,670,149 | 90% | ||
rafelchato | 0 | 249,504,290 | 90% | ||
steembot-colonel | 0 | 55,254,303 | 90% | ||
steembot-soldier | 0 | 169,662,087 | 90% | ||
themadgoat | 0 | 5,847,294,874 | 90% | ||
theghost1980 | 0 | 89,417,091,237 | 90% | ||
honusurf | 0 | 12,626,423,422 | 90% | ||
tarazkp | 0 | 206,358,748,748 | 20% | ||
goodvibrations | 0 | 701,472,950,244 | 90% | ||
maninayton | 0 | 64,336,571,744 | 90% | ||
gomatthew | 0 | 27,757,608,496 | 90% | ||
marcelbraendle | 0 | 20,797,069,099 | 90% | ||
sudutpandang | 0 | 1,517,133,768 | 10% | ||
markperandin | 0 | 129,520,348 | 90% | ||
lances | 0 | 10,421,772,946 | 90% | ||
kbeller | 0 | 350,521,185,204 | 90% | ||
gmedley | 0 | 13,335,587,815 | 90% | ||
evimeria | 0 | 8,006,977,456 | 90% | ||
teammo | 0 | 10,063,657,271 | 90% | ||
sjmstem | 0 | 1,634,514,833,157 | 90% | ||
anwarabdullah | 0 | 754,893,247 | 90% | ||
lordkalki8 | 0 | 329,045,622 | 90% | ||
frocush | 0 | 132,918,315 | 90% | ||
vikx | 0 | 8,851,382,326 | 100% | ||
zeuss11 | 0 | 44,790,740,877 | 90% | ||
honeybeee | 0 | 100,312,447,302 | 90% | ||
r2cornell | 0 | 721,193,239,898 | 90% | ||
kam.ila | 0 | 225,741,460,306 | 90% | ||
fronttowardenemy | 0 | 35,843,513,610 | 90% | ||
ghostwriter82 | 0 | 75,557,275,980 | 90% | ||
harleymechanix | 0 | 10,025,245,206 | 90% | ||
ilovedietcoke | 0 | 18,754,540,301 | 90% | ||
nasgu | 0 | 303,817,639,483 | 90% | ||
flatearth | 0 | 46,121,404,659 | 90% | ||
destinysaid | 0 | 310,700,967,491 | 90% | ||
leviarcoin | 0 | 151,924,076 | 90% | ||
gmichelbkk | 0 | 19,912,585,631 | 90% | ||
thomasgutierrez | 0 | 4,751,719,660 | 90% | ||
iamsgr | 0 | 10,809,735,495 | 90% | ||
soo.chong163 | 0 | 41,684,966,350 | 90% | ||
bitcoinandcoffee | 0 | 1,478,214,417 | 90% | ||
austinsandersco | 0 | 953,325,422 | 90% | ||
michelios | 0 | 5,266,169,005 | 90% | ||
randykrafft | 0 | 51,560,991,695 | 90% | ||
almvide | 0 | 29,212,763,922 | 90% | ||
detlev | 0 | 155,481,854,928 | 90% | ||
jakechalmers | 0 | 1,895,844,720 | 90% | ||
domenicthomas | 0 | 493,775,719 | 90% | ||
marxrab | 0 | 72,531,191,300 | 90% | ||
suorbe | 0 | 758,590,778 | 90% | ||
honeychum | 0 | 662,876,175 | 90% | ||
joebloggs67 | 0 | 21,803,200,944 | 90% | ||
liberty-minded | 0 | 65,016,099,723 | 90% | ||
gurunayak | 0 | 335,190,162 | 90% | ||
gordonovich | 0 | 126,186,988 | 90% | ||
mes | 0 | 155,484,494,701 | 50% | ||
tremendospercy | 0 | 61,863,902,916 | 90% | ||
rerez | 0 | 18,697,736,492 | 90% | ||
federacion45 | 0 | 65,776,039,575 | 90% | ||
stargarden | 0 | 5,770,067,423 | 90% | ||
foways | 0 | 692,864,164 | 45% | ||
gindor | 0 | 74,323,205,785 | 90% | ||
tamsguitar | 0 | 30,404,433,790 | 90% | ||
reconnectnature | 0 | 71,259,577,320 | 90% | ||
popponayashelly | 0 | 76,477,807 | 90% | ||
investlimestone | 0 | 54,979,297,802 | 90% | ||
raffael | 0 | 450,565,289 | 90% | ||
epicdesigns | 0 | 31,629,311,456 | 90% | ||
beckenbauer | 0 | 45,530,186,998 | 90% | ||
nenio | 0 | 59,562,553,865 | 90% | ||
surfyogi | 0 | 1,499,858,585,900 | 90% | ||
adriansky | 0 | 109,852,586,580 | 90% | ||
nrajesh | 0 | 19,328,422,048 | 90% | ||
bargolis | 0 | 13,526,647,211 | 90% | ||
shawnfishbit | 0 | 123,703,616 | 90% | ||
forykw | 0 | 40,576,607,364 | 90% | ||
eggmeister | 0 | 24,343,355,478 | 90% | ||
steemchiller | 0 | 29,001,377,695 | 25% | ||
jraysteem | 0 | 5,342,347,352 | 90% | ||
cryptocat | 0 | 197,783,369 | 90% | ||
kingtate | 0 | 1,157,525,665 | 90% | ||
iveta | 0 | 21,563,935,307 | 90% | ||
unlockrs | 0 | 3,408,272,461 | 90% | ||
indiantraveller | 0 | 372,288,120 | 90% | ||
cryptastic | 0 | 25,375,733,690 | 90% | ||
aurimo | 0 | 20,828,485,103 | 90% | ||
agrostis | 0 | 56,742,120,546 | 90% | ||
jagged | 0 | 591,652,200 | 90% | ||
cabbagepatch | 0 | 45,677,750,871 | 90% | ||
shellyduncan | 0 | 127,902,371,162 | 90% | ||
bhmcintosh | 0 | 319,924,040 | 90% | ||
doqstrader | 0 | 638,509,602 | 90% | ||
world-travel-pro | 0 | 184,850,382,042 | 90% | ||
dinoo | 0 | 236,667,679 | 90% | ||
rt395 | 0 | 32,855,303,861 | 90% | ||
sneakgeekz | 0 | 861,623,441 | 90% | ||
jkkim | 0 | 643,612,343 | 90% | ||
ebejammin | 0 | 5,485,424,128 | 90% | ||
mal402 | 0 | 636,932,566 | 90% | ||
onsomewavyshit | 0 | 12,591,551,500 | 90% | ||
dabeckster | 0 | 16,414,274,405 | 90% | ||
gohba.handcrafts | 0 | 82,306,438,739 | 90% | ||
nicolicreer | 0 | 82,162,593 | 90% | ||
swelker101 | 0 | 30,841,514,906 | 90% | ||
daumantas | 0 | 55,507,554,511 | 90% | ||
ericarthurblair | 0 | 43,793,717,082 | 90% | ||
goodaytraders | 0 | 139,196,451 | 90% | ||
sportsdesk | 0 | 471,998,520 | 90% | ||
alokchitri | 0 | 26,891,838,970 | 90% | ||
qwasert | 0 | 10,044,779,366 | 90% | ||
catboy | 0 | 495,709,109 | 90% | ||
kubbyelizabeth | 0 | 68,798,135,753 | 90% | ||
joechiappetta | 0 | 101,099,647,354 | 90% | ||
scandinavianlife | 0 | 81,180,730,484 | 90% | ||
coffeetime | 0 | 39,842,229,732 | 90% | ||
landern | 0 | 19,456,512,361 | 90% | ||
rahulyadav | 0 | 342,039,735 | 90% | ||
thinksalot | 0 | 133,133,181 | 90% | ||
altportal | 0 | 168,276,961 | 90% | ||
jeffreytong | 0 | 1,930,167,779 | 90% | ||
tizswa | 0 | 260,192,329,886 | 90% | ||
happychau123 | 0 | 8,130,738,194 | 90% | ||
revelim | 0 | 66,639,076,586 | 90% | ||
artwithflo | 0 | 47,133,005,903 | 90% | ||
dreamcity | 0 | 1,163,438,474 | 90% | ||
ekavieka | 0 | 37,428,877,300 | 90% | ||
yehey | 0 | 6,251,604,224 | 10% | ||
freethink | 0 | 889,671,707 | 90% | ||
berlinmoonlight | 0 | 366,720,678 | 90% | ||
brandocrypto | 0 | 16,759,621,818 | 90% | ||
efsane | 0 | 678,260,729 | 90% | ||
paulyaces76 | 0 | 164,007,115 | 90% | ||
cryptohustler | 0 | 27,718,468,509 | 90% | ||
kontora | 0 | 52,332,406,433 | 90% | ||
goofyu | 0 | 19,228,705,137 | 90% | ||
eqko | 0 | 81,590,710,489 | 90% | ||
masterthematrix | 0 | 45,121,598,519 | 90% | ||
cecicastor | 0 | 58,015,401,090 | 90% | ||
amiramnoam | 0 | 794,678,158,294 | 90% | ||
drwom | 0 | 45,587,974,433 | 90% | ||
arrliinn | 0 | 19,994,165,780 | 90% | ||
abishai | 0 | 872,265,664 | 90% | ||
michaelwilshaw | 0 | 41,773,881,763 | 90% | ||
kemal13 | 0 | 5,591,838,170 | 90% | ||
ligit | 0 | 41,463,686,360 | 90% | ||
whiessl | 0 | 0 | 90% | ||
testing123 | 0 | 876,150,558,448 | 90% | ||
evoman1 | 0 | 170,440,177 | 90% | ||
jockey | 0 | 11,599,933,077 | 90% | ||
ilbarone623 | 0 | 28,011,430,340 | 90% | ||
marty-art | 0 | 28,369,139,905 | 90% | ||
cstrimel | 0 | 20,710,594,447 | 90% | ||
breshepard | 0 | 173,253,413 | 90% | ||
carlosd15 | 0 | 30,434,576,051 | 90% | ||
diggerdugg | 0 | 8,830,712,897 | 90% | ||
burnedpixel | 0 | 26,638,157,384 | 90% | ||
djluka14 | 0 | 44,320,427,818 | 90% | ||
johnlue | 0 | 7,703,242,752 | 90% | ||
aaronli | 0 | 53,036,661,750 | 90% | ||
andrewgenaille | 0 | 24,202,427,783 | 90% | ||
kwakumax | 0 | 40,693,176,337 | 90% | ||
tastetwist | 0 | 578,035,759 | 90% | ||
crimsonclad | 0 | 52,202,638,099 | 15% | ||
welovegaming | 0 | 995,535,368 | 90% | ||
saffisara | 0 | 6,479,011,365 | 50% | ||
soymanu | 0 | 316,712,782 | 90% | ||
gokulnk | 0 | 17,527,534,225 | 90% | ||
drakos | 0 | 2,535,383,605,012 | 100% | ||
boyelleq | 0 | 6,143,617,679 | 90% | ||
shenchensucc | 0 | 2,955,777,758 | 90% | ||
myday | 0 | 183,204,540 | 90% | ||
digitalking | 0 | 14,971,053,803 | 90% | ||
mcsamm | 0 | 17,383,220,921 | 90% | ||
xxcynicalkidxx | 0 | 331,377,798 | 90% | ||
walkinharmony | 0 | 30,285,285,287 | 90% | ||
mamadini | 0 | 41,583,895,062 | 90% | ||
offoodandart | 0 | 186,608,029,202 | 90% | ||
johnthompson | 0 | 4,778,809,577 | 90% | ||
tzap90 | 0 | 4,784,083,686 | 90% | ||
progressivechef | 0 | 127,221,590,634 | 90% | ||
mitchiesfoodrace | 0 | 32,431,286,791 | 90% | ||
gpenco | 0 | 12,606,453,564 | 90% | ||
saunter | 0 | 44,287,608,118 | 90% | ||
mirhimayun | 0 | 1,319,277,234 | 90% | ||
zneeke | 0 | 13,609,700,926 | 90% | ||
lewis831 | 0 | 7,531,452,847 | 90% | ||
sensation | 0 | 391,682,271 | 100% | ||
grapthar | 0 | 39,260,221,253 | 90% | ||
diabolika | 0 | 83,379,620,045 | 90% | ||
nezbong | 0 | 37,187,482,769 | 90% | ||
nicolaepavelean | 0 | 6,282,283,241 | 90% | ||
truth-be-told | 0 | 59,733,538,301 | 90% | ||
sidibeat | 0 | 2,558,824,175 | 90% | ||
tyvain | 0 | 18,628,014,642 | 90% | ||
bulleric | 0 | 1,269,787,962 | 90% | ||
cryptopet | 0 | 198,554,983 | 90% | ||
cryptokraze | 0 | 16,244,784,870 | 90% | ||
ulfr | 0 | 561,248,247,212 | 90% | ||
clemdane | 0 | 22,049,003,959 | 90% | ||
whynotdoit | 0 | 1,675,053,644 | 90% | ||
achlord | 0 | 1,223,466,613 | 90% | ||
plumey | 0 | 20,542,789,811 | 90% | ||
st3llar | 0 | 15,923,268,353 | 90% | ||
summertooth | 0 | 48,610,914,026 | 90% | ||
jefflombardo | 0 | 758,089,902 | 90% | ||
vallesleoruther | 0 | 65,194,926,078 | 90% | ||
joeblack1 | 0 | 0 | 0% | ||
discordiant | 0 | 3,853,586,637 | 15% | ||
pastbastard | 0 | 13,075,752,077 | 90% | ||
chron | 0 | 21,674,974,784 | 90% | ||
prosirius | 0 | 22,826,135,834 | 90% | ||
breakthrough | 0 | 29,947,387,739 | 90% | ||
yenipaola | 0 | 17,036,372,953 | 90% | ||
tweeprise | 0 | 497,105,281 | 90% | ||
theguruasia | 0 | 13,587,657,522 | 100% | ||
redfishpillar | 0 | 39,414,573,747 | 90% | ||
mfconcept | 0 | 36,758,986,129 | 90% | ||
masteranibal | 0 | 231,499,108 | 90% | ||
karencarrens | 0 | 31,619,428,655 | 90% | ||
fivefiveeleven | 0 | 18,787,173,600 | 90% | ||
uzdc | 0 | 137,688,486 | 90% | ||
sweetieprincess | 0 | 57,065,681,901 | 90% | ||
steemmeupscotty | 0 | 161,244,509,967 | 90% | ||
jaredwood | 0 | 7,956,938,593 | 90% | ||
patricksanlin | 0 | 74,708,819,091 | 90% | ||
ratticus | 0 | 54,602,656,714 | 90% | ||
steemitbc | 0 | 8,820,233,605 | 90% | ||
nyinyiwin | 0 | 21,982,856,849 | 90% | ||
fiftysixnorth | 0 | 24,255,999,296 | 90% | ||
owenwat | 0 | 7,609,834,777 | 90% | ||
inquiringtimes | 0 | 26,556,029,155 | 90% | ||
ralph-rennoldson | 0 | 23,417,459,456 | 90% | ||
thorthur22 | 0 | 125,676,087,769 | 90% | ||
kona | 0 | 33,055,588,923 | 90% | ||
toxichustle | 0 | 21,911,719,021 | 90% | ||
dijital | 0 | 38,293,949,779 | 90% | ||
joe.nobel | 0 | 19,323,485,260 | 90% | ||
jonasthomas | 0 | 652,377,826 | 90% | ||
angela.ghkh | 0 | 168,396,812 | 90% | ||
mandrea | 0 | 143,152,889 | 90% | ||
glitterbooster | 0 | 20,610,923,675 | 90% | ||
g0nr0gue | 0 | 10,712,165,776 | 100% | ||
tfame3865 | 0 | 34,100,923,348 | 90% | ||
clumsysilverdad | 0 | 113,242,710,005 | 90% | ||
smyle | 0 | 9,154,015,891 | 90% | ||
cuttie1979 | 0 | 3,265,680,617 | 90% | ||
jasonbu | 0 | 37,554,148,349 | 90% | ||
pretzelgirlsandy | 0 | 57,228,557,005 | 90% | ||
vimukthi | 0 | 1,339,642,514 | 1% | ||
deluge | 0 | 27,551,652,484 | 90% | ||
kunani | 0 | 485,095,845 | 90% | ||
vikar | 0 | 1,528,565,661 | 90% | ||
pepskaram | 0 | 19,949,199,054 | 90% | ||
cschrader | 0 | 399,402,429 | 90% | ||
unrared | 0 | 63,154,068,634 | 90% | ||
agusscout | 0 | 388,474,290 | 45% | ||
jasonshick | 0 | 336,890,542,273 | 90% | ||
johnwjr7 | 0 | 18,462,922,804 | 90% | ||
tagsplanet | 0 | 7,945,866,074 | 90% | ||
bl0ckchained125 | 0 | 1,089,985,471 | 90% | ||
steemit-foodie | 0 | 15,953,554,742 | 90% | ||
chandrayunita | 0 | 1,310,483,856 | 45% | ||
chrisdavidphoto | 0 | 40,733,777,254 | 90% | ||
ashleypeat | 0 | 162,290,402 | 90% | ||
ayobami99 | 0 | 26,184,143,237 | 90% | ||
autofreak | 0 | 10,600,892,228 | 90% | ||
ffodie | 0 | 473,254,423 | 90% | ||
emonemolover | 0 | 178,819,107 | 90% | ||
felander | 0 | 117,741,434,926 | 90% | ||
razack-pulo | 0 | 163,129,105,735 | 90% | ||
cryptoeagle | 0 | 18,993,180,584 | 90% | ||
unomas | 0 | 19,326,574,087 | 90% | ||
techblogger | 0 | 147,796,397,361 | 90% | ||
wisekricket | 0 | 475,071,849 | 45% | ||
yandot | 0 | 41,043,003,376 | 90% | ||
allizz | 0 | 25,885,302,773 | 90% | ||
pele23 | 0 | 3,461,422,215 | 7% | ||
randyw | 0 | 12,854,080,237 | 90% | ||
olusolaemmanuel | 0 | 231,036,827 | 4.5% | ||
dcrypto | 0 | 13,640,367 | 90% | ||
redwood419 | 0 | 28,768,922,377 | 90% | ||
peacefulpatriot | 0 | 760,622,477 | 90% | ||
shawkr13 | 0 | 2,340,970,920 | 90% | ||
moderndayhippie | 0 | 4,576,865,337 | 90% | ||
salim001 | 0 | 203,348,077 | 100% | ||
massivevibration | 0 | 58,376,939,336 | 90% | ||
soul-thru-da-ink | 0 | 0 | 90% | ||
braini | 0 | 26,104,351,870 | 90% | ||
steemmillionaire | 0 | 1,925,546,871 | 10% | ||
wholeself-in | 0 | 6,449,729,367 | 100% | ||
fernowl13 | 0 | 19,651,651,682 | 90% | ||
cryptoprofessor | 0 | 16,460,939,891 | 90% | ||
kamikaze | 0 | 2,307,779,455,594 | 100% | ||
zaiageist | 0 | 33,398,902,086 | 90% | ||
arrihan | 0 | 19,376,470,375 | 90% | ||
bestlife | 0 | 40,967,225,862 | 90% | ||
therealwolf | 0 | 857,695,505,454 | 100% | ||
bssman | 0 | 28,240,537,018 | 90% | ||
karlin | 0 | 38,703,074,181 | 90% | ||
mikeaga888 | 0 | 186,811,732 | 90% | ||
f1assistance | 0 | 2,028,375,139 | 100% | ||
ambmicheal | 0 | 8,813,429,632 | 90% | ||
revisesociology | 0 | 213,840,494,936 | 90% | ||
moemyint | 0 | 407,115,090 | 100% | ||
sandalphon | 0 | 277,852,313,738 | 90% | ||
honolulu | 0 | 31,997,651,918 | 90% | ||
anothersteemer | 0 | 36,903,964,541 | 90% | ||
omra-sky | 0 | 18,862,631,558 | 90% | ||
pkalra | 0 | 2,945,461,805 | 90% | ||
micaldaviddin | 0 | 354,920,516 | 100% | ||
martusamak | 0 | 20,471,268,525 | 90% | ||
bigdizzle91 | 0 | 28,823,500,226 | 90% | ||
cryptoandzen | 0 | 19,286,172,273 | 90% | ||
toocurious | 0 | 30,272,226,446 | 90% | ||
aldoman-75 | 0 | 9,348,453,857 | 90% | ||
hkniazi | 0 | 167,148,510 | 90% | ||
movieperminute | 0 | 32,750,628,174 | 90% | ||
hogansch | 0 | 15,710,647,134 | 90% | ||
andywong31 | 0 | 85,653,833,991 | 90% | ||
calvinwilliams | 0 | 209,339,143 | 90% | ||
bwar | 0 | 4,088,219,172 | 90% | ||
bartosz546 | 0 | 16,992,832,435 | 90% | ||
svashta | 0 | 25,311,509,211 | 90% | ||
steembirds | 0 | 48,761,768,908 | 90% | ||
pataty69 | 0 | 30,768,188,937 | 90% | ||
tixinhacapitinha | 0 | 5,242,853,611 | 25% | ||
spencervogel | 0 | 33,268,830,165 | 90% | ||
gcalex | 0 | 1,096,974,127,384 | 100% | ||
yourfinesight | 0 | 7,427,679,877 | 90% | ||
winniex | 0 | 32,094,092,256 | 90% | ||
alvinauh | 0 | 21,005,253,420 | 90% | ||
altertrader | 0 | 1,323,569,250 | 90% | ||
natachayacinthe1 | 0 | 37,661,289,768 | 90% | ||
weavingwords | 0 | 55,114,357,172 | 90% | ||
coretan | 0 | 12,462,359,062 | 90% | ||
nat5an | 0 | 2,707,200,849 | 90% | ||
shyshy | 0 | 557,991,184 | 100% | ||
michaeljn | 0 | 15,257,698,070 | 90% | ||
kansa | 0 | 470,088,243 | 100% | ||
simarlar | 0 | 557,909,603 | 100% | ||
parpar | 0 | 557,807,473 | 100% | ||
monewar | 0 | 494,246,983 | 100% | ||
sharnsharn | 0 | 557,641,010 | 100% | ||
poungpoung | 0 | 557,655,634 | 100% | ||
aiteran | 0 | 152,474,179 | 100% | ||
learnandteach01 | 0 | 577,741,013 | 58.5% | ||
ashleykalila | 0 | 2,403,570,428 | 90% | ||
panamapilgrim | 0 | 375,718,557 | 100% | ||
nitro.live | 0 | 231,735,483 | 90% | ||
davidsmith1 | 0 | 557,943,494 | 100% | ||
wolfje | 0 | 4,768,152,115 | 90% | ||
toffer | 0 | 18,962,270,959 | 90% | ||
shaungyan | 0 | 557,905,737 | 100% | ||
axeman | 0 | 27,972,336,458 | 90% | ||
sho-t | 0 | 36,302,387,880 | 90% | ||
mgood | 0 | 5,255,569,930 | 90% | ||
lordnigel | 0 | 3,706,704,678 | 90% | ||
chann | 0 | 16,526,091,967 | 90% | ||
teukurival | 0 | 1,237,951,157 | 45% | ||
votebank | 0 | 50,368,744,693 | 90% | ||
marvel1206 | 0 | 6,081,613,959 | 45% | ||
jmurphy074 | 0 | 0 | 90% | ||
mikenero | 0 | 4,850,999,978 | 90% | ||
amaiman | 0 | 1,744,219,933 | 100% | ||
newsrx | 0 | 1,382,116,865 | 100% | ||
steemsports-ita | 0 | 13,120,880,855 | 90% | ||
earthnation | 0 | 39,003,073,708 | 90% | ||
tosuccess | 0 | 1,619,900,736 | 90% | ||
helmibireuen | 0 | 5,836,270,303 | 90% | ||
mela65 | 0 | 95,166,665 | 45% | ||
engineeringsteem | 0 | 111,516,051,891 | 90% | ||
josephsavage | 0 | 23,965,306,653 | 90% | ||
taryn0221 | 0 | 454,580,851 | 90% | ||
percygeorge | 0 | 9,158,824,984 | 90% | ||
matthewwarn | 0 | 42,039,746,774 | 90% | ||
oyvindsabo | 0 | 3,007,948,384 | 100% | ||
awolesigideon | 0 | 273,740,035 | 45% | ||
brianturner | 0 | 138,446,309,486 | 90% | ||
tommy-gun | 0 | 410,226,837 | 100% | ||
sneakyninja | 0 | 6,063,367,323 | 90% | ||
williams-owb | 0 | 437,919,002 | 45% | ||
spiritabsolute | 0 | 961,602,273 | 100% | ||
takeone | 0 | 141,372,347 | 90% | ||
adasq | 0 | 3,333,229,857 | 100% | ||
cryptogem | 0 | 1,471,417,250 | 90% | ||
rabonee | 0 | 156,477,639 | 100% | ||
fourfourfun | 0 | 20,772,835,184 | 90% | ||
jerseynash | 0 | 112,503,017,522 | 90% | ||
consciousangel7 | 0 | 26,209,769,704 | 90% | ||
nelkeljdm | 0 | 29,137,969,359 | 90% | ||
kingsolo | 0 | 1,485,366,872 | 90% | ||
magmadrome26 | 0 | 26,128,565,362 | 90% | ||
tychoxi | 0 | 3,912,719,500 | 100% | ||
daltono | 0 | 116,128,593,279 | 90% | ||
groovekeeper | 0 | 19,215,996,729 | 90% | ||
stahlberg | 0 | 34,811,722,453 | 90% | ||
datascience | 0 | 347,291,496 | 90% | ||
yoo1900 | 0 | 12,868,877,816,804 | 83.4% | ||
mountainjewel | 0 | 101,602,579,946 | 90% | ||
wehmoen | 0 | 10,273,278,525 | 100% | ||
positivibes | 0 | 18,525,975,483 | 90% | ||
joshbillings | 0 | 18,453,302,779 | 90% | ||
triviastreak | 0 | 74,949,532,440 | 90% | ||
nice2us | 0 | 52,562,890 | 100% | ||
smjn | 0 | 75,575,223,070 | 25% | ||
echoatmajaputra | 0 | 134,468,118 | 45% | ||
spenceryan | 0 | 57,626,152,960 | 90% | ||
epan35 | 0 | 279,752,609,499 | 90% | ||
pharmacy-jinni | 0 | 23,410,584,717 | 90% | ||
blogger-funda | 0 | 333,330,801 | 90% | ||
ghaisan | 0 | 223,499,819 | 45% | ||
sittishabir | 0 | 821,726,137 | 45% | ||
zacharylutes | 0 | 189,812,680 | 90% | ||
inspiration101 | 0 | 182,555,839 | 45% | ||
iamfo | 0 | 224,101,081 | 45% | ||
dedyrendra | 0 | 891,708,569 | 45% | ||
yunidf | 0 | 210,407,406 | 45% | ||
yallapapi | 0 | 18,932,692,339 | 90% | ||
jerrywjl | 0 | 364,045,631 | 90% | ||
timmylace | 0 | 101,650,740 | 90% | ||
nilfanif | 0 | 14,761,237,740 | 90% | ||
didic | 0 | 89,723,302,614 | 90% | ||
cryptosludge | 0 | 1,080,771,956 | 90% | ||
claret | 0 | 13,338,948,097 | 90% | ||
yasu | 0 | 316,132,085,355 | 90% | ||
dominiqueguitars | 0 | 17,412,421,880 | 100% | ||
kaylog | 0 | 97,192,455 | 45% | ||
mcmusic | 0 | 274,053,065 | 45% | ||
joaorafael | 0 | 3,120,375,266 | 70% | ||
warmcracklesound | 0 | 1,186,899,392 | 90% | ||
sisygoboom | 0 | 13,266,882,209 | 50% | ||
micaelacf | 0 | 3,566,152,503 | 90% | ||
preciousimo | 0 | 307,075,049 | 45% | ||
kingsman2 | 0 | 219,502,075 | 45% | ||
dr-frankenstein | 0 | 398,667,084 | 90% | ||
mysearchisover | 0 | 657,976,596 | 1% | ||
maboklagi | 0 | 74,579,552 | 45% | ||
thebluewin | 0 | 43,172,348,501 | 100% | ||
lymepoet | 0 | 12,983,742,235 | 90% | ||
archet | 0 | 2,918,508,434 | 90% | ||
harvhat | 0 | 16,585,223 | 10% | ||
btccurrency1 | 0 | 66,137,213 | 100% | ||
richmanoloriegbe | 0 | 141,826,125 | 45% | ||
blinkybill | 0 | 23,267,456,530 | 90% | ||
yeni | 0 | 590,801,823 | 45% | ||
phoethar01 | 0 | 544,027,200 | 100% | ||
dreday20 | 0 | 0 | 90% | ||
fikar22 | 0 | 297,475,059 | 22.5% | ||
hendrimirza | 0 | 1,062,819,147 | 45% | ||
jonnyla08 | 0 | 2,298,099,055 | 90% | ||
silversupplement | 0 | 602,393,680 | 90% | ||
steemdragon | 0 | 141,987,900 | 45% | ||
mindszai | 0 | 315,916,312 | 45% | ||
mohsen63 | 0 | 18,047,789,503 | 90% | ||
emmasumner | 0 | 833,435,076 | 100% | ||
movingman | 0 | 16,614,336,408 | 90% | ||
lovlu2 | 0 | 93,907,305 | 90% | ||
saidqautsar | 0 | 205,304,083 | 45% | ||
postnice | 0 | 792,377,956 | 90% | ||
siratl | 0 | 36,194,282,891 | 90% | ||
majordon | 0 | 410,701,260 | 100% | ||
inespereira | 0 | 287,002,799 | 70% | ||
dnaingkhan | 0 | 460,830,056 | 100% | ||
azharmaulana | 0 | 154,831,969 | 45% | ||
jauharialz | 0 | 1,591,574,805 | 90% | ||
kutrulaju | 0 | 804,640,156 | 45% | ||
agusriandi | 0 | 222,610,403 | 45% | ||
biggy-ewu | 0 | 165,707,170 | 90% | ||
d-zero | 0 | 1,024,245,905 | 100% | ||
drowkeudrow | 0 | 429,363,498 | 45% | ||
tidylive | 0 | 12,968,288,969 | 90% | ||
beekerst | 0 | 2,081,967,748 | 90% | ||
tobaloidee | 0 | 36,443,490,946 | 90% | ||
virtaco300cc | 0 | 215,808,711 | 45% | ||
misbahjuli | 0 | 493,775,719 | 90% | ||
awesomegames007 | 0 | 1,840,928,538 | 25% | ||
steem-rescue | 0 | 331,959,306 | 45% | ||
zaim4d1 | 0 | 1,866,280,817 | 81% | ||
jalaluddinmusa | 0 | 1,109,535,834 | 90% | ||
sblue | 0 | 824,229,933 | 90% | ||
z3ll | 0 | 2,189,415,355 | 100% | ||
theagriculturist | 0 | 223,086,670 | 45% | ||
laimarkan | 0 | 470,674,466 | 100% | ||
thihan | 0 | 557,875,174 | 100% | ||
arrahman90 | 0 | 245,784,664 | 45% | ||
salanlan | 0 | 557,999,390 | 100% | ||
wolf09 | 0 | 3,520,145,574 | 90% | ||
odinsplayground | 0 | 12,539,783,351 | 90% | ||
yassine2014 | 0 | 5,721,631,685 | 90% | ||
ballpin | 0 | 494,257,819 | 100% | ||
chanhon | 0 | 470,196,632 | 100% | ||
danielwooddesign | 0 | 347,638,478 | 90% | ||
lstack | 0 | 22,711,868,484 | 90% | ||
hendragunawan | 0 | 142,434,110 | 45% | ||
galakdroneuh | 0 | 221,887,860 | 45% | ||
ainede | 0 | 556,565,939 | 100% | ||
andrewharland | 0 | 27,721,818,949 | 90% | ||
fadmer | 0 | 552,030,594 | 100% | ||
brightex | 0 | 221,887,860 | 45% | ||
enlighted | 0 | 423,042,125 | 90% | ||
salynn | 0 | 443,351,229 | 100% | ||
midnight-snack | 0 | 41,642,509,642 | 90% | ||
heruwahyudi | 0 | 221,887,860 | 45% | ||
kejora05 | 0 | 140,701,585 | 45% | ||
mldav | 0 | 221,887,860 | 45% | ||
alhidayat | 0 | 1,079,153,359 | 45% | ||
unlimitedorizons | 0 | 3,502,154,317 | 45% | ||
cecyle | 0 | 181,847,706 | 45% | ||
jonas.inuk | 0 | 12,525,524,700 | 90% | ||
sfa | 0 | 614,362,400 | 90% | ||
magali | 0 | 674,208,760 | 100% | ||
holsturr | 0 | 20,927,276 | 90% | ||
muhibpaya2 | 0 | 146,973,682 | 45% | ||
gumbotrader | 0 | 124,808,142 | 90% | ||
ingapete | 0 | 310,972,590,405 | 90% | ||
darrenclaxton | 0 | 14,311,714,767 | 90% | ||
sanne | 0 | 487,188,666 | 90% | ||
bullsvsbears | 0 | 3,541,546,077 | 45% | ||
ghosty5 | 0 | 435,055,330 | 100% | ||
ghost2 | 0 | 417,617,839 | 100% | ||
elangzone | 0 | 85,943,930 | 22.5% | ||
zharifa | 0 | 174,883,145 | 45% | ||
lousapphire | 0 | 377,513,851 | 90% | ||
imtase | 0 | 8,083,364,248 | 90% | ||
achim03 | 0 | 14,560,173,092 | 90% | ||
bulma | 0 | 221,887,860 | 45% | ||
sitapak | 0 | 223,602,217 | 45% | ||
femseen | 0 | 196,904,350 | 45% | ||
xlbooster | 0 | 221,825,172 | 45% | ||
steemspeed | 0 | 205,771,751 | 45% | ||
resteemvoter | 0 | 368,475,770 | 90% | ||
dlayshan | 0 | 443,336,761 | 100% | ||
stater | 0 | 443,875,624 | 100% | ||
tharshan | 0 | 439,775,238 | 100% | ||
galannar | 0 | 443,831,523 | 100% | ||
remind-me | 0 | 4,057,577,349 | 100% | ||
rikanurrizki | 0 | 505,146,559 | 45% | ||
fadliloways | 0 | 86,427,278 | 22.5% | ||
emmywell | 0 | 92,844,151 | 45% | ||
martinphoto | 0 | 95,280,758,260 | 90% | ||
bibirider | 0 | 27,406,274,218 | 90% | ||
mauerpark | 0 | 13,873,265,804 | 90% | ||
technoguy | 0 | 222,610,403 | 45% | ||
rtick | 0 | 222,816,919 | 45% | ||
mandra | 0 | 223,181,691 | 45% | ||
portalbireuen | 0 | 176,922,120 | 45% | ||
glanter22 | 0 | 310,819,948 | 100% | ||
ntamntam | 0 | 320,594,563 | 100% | ||
calicabre | 0 | 302,222,715 | 100% | ||
moelout | 0 | 383,558,495 | 100% | ||
zabatar | 0 | 482,480,302 | 100% | ||
konlon | 0 | 311,230,398 | 100% | ||
zaibkang | 0 | 0 | 100% | ||
atalgyi | 0 | 493,308,578 | 100% | ||
winewinelal | 0 | 469,670,521 | 100% | ||
measureable | 0 | 319,162,414 | 100% | ||
ekafao | 0 | 273,487,430 | 45% | ||
julietj | 0 | 401,904,511 | 100% | ||
ttay | 0 | 404,710,182 | 100% | ||
zanis | 0 | 222,651,229 | 45% | ||
berlin-park | 0 | 13,951,243,612 | 90% | ||
blockchaindeal | 0 | 223,271,834 | 45% | ||
wai1 | 0 | 327,148,884 | 100% | ||
muhdine | 0 | 210,259,787 | 45% | ||
collect1 | 0 | 498,345,145 | 100% | ||
truthly | 0 | 360,626,684 | 100% | ||
ddmouse | 0 | 470,214,165 | 100% | ||
shorelee | 0 | 471,445,977 | 100% | ||
goldsmile | 0 | 403,908,168 | 100% | ||
payi | 0 | 494,205,233 | 100% | ||
andtal | 0 | 472,899,599 | 100% | ||
beelin | 0 | 427,468,522 | 100% | ||
land1 | 0 | 415,269,673 | 100% | ||
matpetar | 0 | 402,537,630 | 100% | ||
dvice | 0 | 961,061,746 | 100% | ||
kaybee1 | 0 | 402,237,327 | 100% | ||
strongminded | 0 | 401,897,921 | 100% | ||
tenacious | 0 | 404,399,603 | 100% | ||
dival | 0 | 602,447,665 | 100% | ||
bamboozled | 0 | 3,998,055,353 | 90% | ||
tbtek | 0 | 743,761,397 | 25% | ||
dekpah | 0 | 211,566,218 | 45% | ||
star-wars-77 | 0 | 14,099,973,620 | 90% | ||
delicious-kimchi | 0 | 0 | 0% | ||
duarte9sousa | 0 | 7,848,428,113 | 9% | ||
torrey.blog | 0 | 25,818,206,478 | 100% | ||
munhenhos | 0 | 6,336,249,431 | 90% | ||
waihein | 0 | 525,952,409 | 100% | ||
chrisrice | 0 | 1,324,206,678 | 100% | ||
zemer | 0 | 15,128,518,022 | 90% | ||
diginomad | 0 | 15,806,414,795 | 90% | ||
zhef | 0 | 0 | 90% | ||
bhaski | 0 | 7,240,272,137 | 90% | ||
lkvictor2005 | 0 | 7,684,035,556 | 90% | ||
yeungpingchi | 0 | 131,570,936 | 100% | ||
diana.feuerberg | 0 | 90,886,925,030 | 90% | ||
badripanda | 0 | 0 | 10% | ||
kaczynski | 0 | 51,593,015 | 100% | ||
ryanlj | 0 | 28,634,475,021 | 70% | ||
eccles | 0 | 1,642,436,412 | 100% | ||
ab4uw | 0 | 788,227,350 | 90% | ||
cryptobutton | 0 | 141,858,605 | 45% | ||
steemexplorers | 0 | 1,779,466,540 | 90% | ||
monstermadness | 0 | 1,834,734,361 | 90% | ||
dftba | 0 | 122,679,882 | 45% | ||
gigatoride | 0 | 165,254,387 | 1% | ||
ozgurcinarli | 0 | 577,130,958 | 45% | ||
sleepingcowboy | 0 | 514,135,565 | 100% | ||
sparrider | 0 | 554,195,243 | 100% | ||
dstors | 0 | 5,183,625,179,756 | 100% | ||
stricker | 0 | 0 | 100% | ||
zeroex | 0 | 121,806,675 | 100% | ||
steemfucker | 0 | 254,416,727 | 100% | ||
proof-of-stake | 0 | 0 | 100% | ||
ilmadacosta | 0 | 486,979,156 | 100% | ||
asraful-mim | 0 | 0 | 100% | ||
meeseeks6 | 0 | 1,986,310,565 | 100% | ||
yifeiliu | 0 | 356,074,609 | 100% | ||
cafedecoral | 0 | 394,282,162 | 100% | ||
byaritzab | 0 | 0 | 100% |
Hi guys. If I want to get the list of @user's posts, how can I do it instead of get_blog? <sub>Posted using [Steeve](https://www.steeve.app/@steeveapp), an AI-powered Steem interface</sub>
author | cardboard |
---|---|
permlink | re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t032610667z |
category | steemit |
json_metadata | {"tags":["steemit"],"format":"markdown","app":"steeve/0.1"} |
created | 2018-12-01 03:26:57 |
last_update | 2018-12-01 03:26:57 |
depth | 1 |
children | 10 |
last_payout | 2018-12-08 03:26:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.235 HBD |
curator_payout_value | 0.077 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 189 |
author_reputation | 31,522,757,177,122 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,178,744 |
net_rshares | 514,453,953,297 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
roadscape | 0 | 457,605,936,037 | 7% | ||
nicniezgrublem | 0 | 43,921,761,194 | 100% | ||
reazuliqbal | 0 | 10,895,279,236 | 10.54% | ||
bluengel | 0 | 2,030,976,830 | 10% |
author | crokkon |
---|---|
permlink | re-cardboard-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t060922690z |
category | steemit |
json_metadata | "{"app": ""}" |
created | 2018-12-01 06:09:24 |
last_update | 2022-09-18 10:08:42 |
depth | 2 |
children | 7 |
last_payout | 2018-12-08 06:09: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 | 1 |
author_reputation | 81,214,366,861,104 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,183,760 |
net_rshares | 3,214,338,355 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jblew | 0 | 912,312,902 | 100% | ||
cardboard | 0 | 2,302,025,453 | 100% |
Thank you!
author | cardboard |
---|---|
permlink | re-crokkon-re-cardboard-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t114854497z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-12-01 11:48:54 |
last_update | 2018-12-01 11:48:54 |
depth | 3 |
children | 6 |
last_payout | 2018-12-08 11:48: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 | 10 |
author_reputation | 31,522,757,177,122 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,193,791 |
net_rshares | 0 |
Walk account history
author | themarkymark |
---|---|
permlink | re-cardboard-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t044006512z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-12-01 04:40:06 |
last_update | 2018-12-01 04:40:06 |
depth | 2 |
children | 1 |
last_payout | 2018-12-08 04:40:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.019 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 1,784,334,923,424,849 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,181,209 |
net_rshares | 41,573,919,405 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cardboard | 0 | 2,255,055,573 | 100% | ||
dustsweeper | 0 | 39,318,863,832 | 6.2% |
Thanks!
author | cardboard |
---|---|
permlink | re-themarkymark-re-cardboard-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t114848606z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-12-01 11:48:48 |
last_update | 2018-12-01 11:48:48 |
depth | 3 |
children | 0 |
last_payout | 2018-12-08 11:48: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 | 7 |
author_reputation | 31,522,757,177,122 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,193,787 |
net_rshares | 0 |
what will be the percent increase in odds of hacking?
author | clumsysilverdad |
---|---|
permlink | re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t021318402z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-12-01 02:13:12 |
last_update | 2018-12-01 02:13:12 |
depth | 1 |
children | 1 |
last_payout | 2018-12-08 02:13: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 | 53 |
author_reputation | 28,166,630,869,767 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,176,340 |
net_rshares | 0 |
None, these are all read-only APIs.
author | roadscape |
---|---|
permlink | re-clumsysilverdad-re-steemitdev-upcoming-changes-to-api-steemit-com-20181203t184904372z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-12-03 18:49:03 |
last_update | 2018-12-03 18:49:03 |
depth | 2 |
children | 0 |
last_payout | 2018-12-10 18:49: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 | 35 |
author_reputation | 27,406,317,697,121 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 76,307,525 |
net_rshares | 0 |
Hive has been one of the things I've been most ready to see get up and really rolling. I'm going to be very interested in seeing the spread of findings and needs of the dApps out there as they start testing.
author | crimsonclad |
---|---|
permlink | re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t004344558z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-12-01 00:43:39 |
last_update | 2018-12-01 00:43:39 |
depth | 1 |
children | 3 |
last_payout | 2018-12-08 00:43:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.307 HBD |
curator_payout_value | 0.038 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 208 |
author_reputation | 323,763,088,722,311 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,173,688 |
net_rshares | 672,115,216,947 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
roadscape | 0 | 65,481,610,949 | 1% | ||
acidyo | 0 | 112,844,465,419 | 1% | ||
hedge-x | 0 | 63,241,265,942 | 100% | ||
mattclarke | 0 | 112,083,496,117 | 28% | ||
followbtcnews | 0 | 314,820,234,678 | 29% | ||
bluengel | 0 | 2,035,056,566 | 10% | ||
eccles | 0 | 1,609,087,276 | 100% |
do you think 1 week is gonna be enough for them?
author | jarvie |
---|---|
permlink | re-crimsonclad-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t013536580z |
category | steemit |
json_metadata | {"tags":["steemit"],"community":"steempeak","app":"steempeak"} |
created | 2018-12-01 01:35:39 |
last_update | 2018-12-01 01:35:39 |
depth | 2 |
children | 2 |
last_payout | 2018-12-08 01:35: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 | 48 |
author_reputation | 388,515,652,617,149 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,175,129 |
net_rshares | 0 |
Hive has been running for many months now. We're just moving more data over to it. We can always switch from Hive back to steemd very quickly and I believe this is actually part of the testing plans. More details coming, but this is a very low risk change due to it being so easily reversible and having nothing to do with the blockchain.
author | andrarchy |
---|---|
permlink | re-jarvie-re-crimsonclad-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t151503171z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-12-01 15:15:03 |
last_update | 2018-12-01 15:15:03 |
depth | 3 |
children | 0 |
last_payout | 2018-12-08 15:15: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 | 338 |
author_reputation | 230,168,201,522,782 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 76,201,233 |
net_rshares | 296,726,168,919 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
theycallmedan | 0 | 296,726,168,919 | 1% |
Andy beat me to the punch. I do hope so. We've seen hive making things faster and smoother in some cases for a while now already, but tags and follows especially is a biggie, hurdle wise. One week should be enough to suss out if things aren't forwarding properly, I imagine... It just means that people actually *have* to point their services at it sometime in the next week and see if it all goes tits up. Won't know if people don't try.
author | crimsonclad |
---|---|
permlink | re-jarvie-re-crimsonclad-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t212154758z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-12-01 21:21:54 |
last_update | 2018-12-01 21:21:54 |
depth | 3 |
children | 0 |
last_payout | 2018-12-08 21:21: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 | 438 |
author_reputation | 323,763,088,722,311 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,214,031 |
net_rshares | 0 |
Are there any public nodes available anymore, there used to be all these but they are all offline to me? http://steemistry.com/nodes/
author | cryptofunk |
---|---|
permlink | re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t011653933z |
category | steemit |
json_metadata | {"tags":["steemit"],"links":["http://steemistry.com/nodes/"],"app":"steemit/0.1"} |
created | 2018-12-01 01:16:57 |
last_update | 2018-12-01 01:16:57 |
depth | 1 |
children | 4 |
last_payout | 2018-12-08 01:16: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 | 133 |
author_reputation | 22,006,702,786,195 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,174,508 |
net_rshares | 0 |
This is our old page and it's wildly out of date/broken since a few changes ago, with me not having had a chance to get back to it! I recommend checking https://geo.steem.pl. This is a good kick in the ass reminder to fix it.
author | crimsonclad |
---|---|
permlink | re-cryptofunk-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t090937235z |
category | steemit |
json_metadata | {"tags":["steemit"],"links":["https://geo.steem.pl"],"app":"steemit/0.1"} |
created | 2018-12-01 09:09:36 |
last_update | 2018-12-01 09:09:36 |
depth | 2 |
children | 3 |
last_payout | 2018-12-08 09:09:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 225 |
author_reputation | 323,763,088,722,311 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,189,171 |
net_rshares | 38,911,390,752 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptofunk | 0 | 15,936,781,506 | 100% | ||
milky-concrete | 0 | 22,974,609,246 | 41.17% |
Are there any wss connections, I built an old script based on piston?
author | cryptofunk |
---|---|
permlink | re-crimsonclad-re-cryptofunk-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t182208590z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-12-01 18:22:09 |
last_update | 2018-12-01 18:22:18 |
depth | 3 |
children | 2 |
last_payout | 2018-12-08 18:22: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 | 69 |
author_reputation | 22,006,702,786,195 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,208,283 |
net_rshares | 0 |
get_reblogged_by is no longer supported? Is there a replacement or should I read 30,000,000 blocks to find out who is resteeming my articles? I also use get_discussions_by_author_before_date get_feed get_content get_active_votes get_account_votes
author | ennosan |
---|---|
permlink | re-steemitdev-upcoming-changes-to-api-steemit-com-20190113t152311561z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2019-01-13 15:23:12 |
last_update | 2019-01-13 15:23:12 |
depth | 1 |
children | 0 |
last_payout | 2019-01-20 15:23: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 | 248 |
author_reputation | 5,418,187,494,175 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 78,320,770 |
net_rshares | 571,965,947 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cheneats | 0 | 571,965,947 | 4% |
please, the only thing I request is to take a break from adding and changing functionalities and spend some weeks on building easier and better documentation and tutorials! Really the API is amazing, but the documentation is not beginner friendly at all! I am working on a tutorial series trying to make things simple for non programmers to understand because I want people to be bottlenecked by their creativity only, not their technical knowledge, but I alone can't do it, please, take your time to make a tutorial series, does not matter if you "steal" my students and my earnings from the tutorials but put more effort on making tutorials and noob friendly documentation, this is a must for scalability! people just can't understand easily how to use your API to the fullest, you can add and modify as many functionalities as you want, but if steem dapps development stays intellectually elitist we won't have mass adoption because some people might have great ideas for simple apps but they can't execute it without breaking their backs trying to understand how does it work! Posted using [Partiko Android](https://steemit.com/@partiko-android)
author | igormuba |
---|---|
permlink | igormuba-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t002616840z |
category | steemit |
json_metadata | {"app":"partiko"} |
created | 2018-12-01 00:26:18 |
last_update | 2018-12-01 00:26:18 |
depth | 1 |
children | 3 |
last_payout | 2018-12-08 00:26: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 | 1,151 |
author_reputation | 129,826,667,899,336 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,173,185 |
net_rshares | 10,084,811,977 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
johnspalding | 0 | 4,609,978,504 | 100% | ||
arteaga-juan | 0 | 5,474,833,473 | 100% |
> spend some weeks on building easier and better documentation and tutorials! @igormuba, nope that's up to the community now.
author | inertia |
---|---|
permlink | re-igormuba-igormuba-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t011416265z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["igormuba"],"app":"steemit/0.1"} |
created | 2018-12-01 01:14:15 |
last_update | 2018-12-01 01:14:15 |
depth | 2 |
children | 2 |
last_payout | 2018-12-08 01:14: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 | 126 |
author_reputation | 346,568,901,399,561 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,174,433 |
net_rshares | 2,335,263,477 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
libert | 0 | 1,851,267,343 | 5% | ||
lolicorn | 0 | 483,996,134 | 10% |
I don't deny the community should also do something, as part of my witness campaign I am trying the best I can to make beginner friendly tutorials and translate them to 2 languages, but I am just only person and I feel overwhelmed by some many things and tasks left to do, sadly I can't find other people that care about bringing Steem API development to the masses... Posted using [Partiko Android](https://steemit.com/@partiko-android)
author | igormuba |
---|---|
permlink | igormuba-re-inertia-re-igormuba-igormuba-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t012141073z |
category | steemit |
json_metadata | {"app":"partiko"} |
created | 2018-12-01 01:21:42 |
last_update | 2018-12-01 01:21:54 |
depth | 3 |
children | 1 |
last_payout | 2018-12-08 01:21:42 |
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 | 438 |
author_reputation | 129,826,667,899,336 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,174,684 |
net_rshares | 0 |
Hello, I'm using Steem.js personally and I'm trying to to filter trending query with multiple tags but can't find a way to do this from official docs. Is this still possible? Select_tags : [tag1, tag2] doesn't work anymore with hivemind it seems.
author | igster |
---|---|
permlink | pt1fcz |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2019-06-13 12:43:48 |
last_update | 2019-06-13 12:44:24 |
depth | 1 |
children | 0 |
last_payout | 2019-06-20 12:43: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 | 247 |
author_reputation | 17,415,198,441,969 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,557,941 |
net_rshares | 0 |
Ok we shall have @asgarth take a look for @steempeak functionality. Didn't realize it would be 2 days after the announcements and 7 days notice. But it is what it is we will make it
author | jarvie |
---|---|
permlink | re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t012942319z |
category | steemit |
json_metadata | {"tags":["steemit"],"community":"steempeak","app":"steempeak"} |
created | 2018-12-01 01:29:45 |
last_update | 2018-12-01 01:29:45 |
depth | 1 |
children | 1 |
last_payout | 2018-12-08 01:29:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.324 HBD |
curator_payout_value | 0.107 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 183 |
author_reputation | 388,515,652,617,149 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,174,939 |
net_rshares | 710,718,999,957 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
roadscape | 0 | 590,968,071,809 | 9% | ||
mattclarke | 0 | 103,588,863,044 | 26% | ||
reazuliqbal | 0 | 14,122,920,626 | 13.61% | ||
bluengel | 0 | 2,039,144,478 | 10% |
Oh I should update... we're ready to go thanks @roadscape for the help along the way. Hopefully asgarth helped test the system nicely.
author | jarvie |
---|---|
permlink | re-jarvie-re-steemitdev-upcoming-changes-to-api-steemit-com-20181206t112814246z |
category | steemit |
json_metadata | {"tags":["steemit"],"community":"steempeak","app":"steempeak"} |
created | 2018-12-06 11:28:21 |
last_update | 2018-12-06 11:28:21 |
depth | 2 |
children | 0 |
last_payout | 2018-12-13 11:28: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 | 134 |
author_reputation | 388,515,652,617,149 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,444,667 |
net_rshares | 0 |
Good to see that the first steps are already being made to cut costs. Posted using [Partiko Android](https://steemit.com/@partiko-android)
author | masterthematrix |
---|---|
permlink | masterthematrix-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t023314058z |
category | steemit |
json_metadata | {"app":"partiko"} |
created | 2018-12-01 02:33:15 |
last_update | 2018-12-01 02:33:15 |
depth | 1 |
children | 0 |
last_payout | 2018-12-08 02:33: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 | 139 |
author_reputation | 9,868,666,626,842 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,176,996 |
net_rshares | 0 |
hello when i using "get_discussions_by_blog" with "filter_tags" or "select_tags ", i come across with this error "filter_tags not supported (hivemind-alpha)" Can I not use this combination? this is my code: http://dpaste.com/13ZHMKC thank you
author | navidgoalpure |
---|---|
permlink | re-steemitdev-upcoming-changes-to-api-steemit-com-20190507t081258666z |
category | steemit |
json_metadata | {"tags":["steemit"],"links":["http://dpaste.com/13ZHMKC"],"app":"steemit/0.1"} |
created | 2019-05-07 08:13:00 |
last_update | 2019-05-07 08:13:00 |
depth | 1 |
children | 0 |
last_payout | 2019-05-14 08:13: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 | 244 |
author_reputation | 40,665,243,400 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 84,394,251 |
net_rshares | 0 |
As long as everything is well documented, I'm sure there won't be any significant issues.
author | oyvindsabo |
---|---|
permlink | re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t002029063z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-12-01 00:20:30 |
last_update | 2018-12-01 00:20:30 |
depth | 1 |
children | 0 |
last_payout | 2018-12-08 00:20: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 | 89 |
author_reputation | 1,341,628,885,463 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,173,028 |
net_rshares | 4,123,343,229 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steemian-bank | 0 | 4,123,343,229 | 100% |
How can I keep using the discussion queries in Steem.JS like steem.api.getDiscussionsByBlog() or steem.api.getDiscussionsByTrending()? When I try these functions on api.steemit**dev**.com I get this error: RPCError: Server error.
author | penguinpablo |
---|---|
permlink | re-steemitdev-upcoming-changes-to-api-steemit-com-20181203t100157939z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-12-03 10:01:57 |
last_update | 2018-12-03 10:01:57 |
depth | 1 |
children | 11 |
last_payout | 2018-12-10 10:01:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.367 HBD |
curator_payout_value | 0.121 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 230 |
author_reputation | 792,312,678,950,166 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,285,562 |
net_rshares | 786,443,755,924 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
roadscape | 0 | 726,425,112,335 | 11% | ||
curx | 0 | 17,894,953,890 | 43.94% | ||
reazuliqbal | 0 | 17,438,196,637 | 16.73% | ||
codebull | 0 | 10,212,667,428 | 100% | ||
zayedsakib | 0 | 12,425,480,739 | 50% | ||
bluengel | 0 | 2,047,344,895 | 10% |
Hi @penguinpablo, could you share the exact request? Working to get better error details exposed from the server but the most common cause is omitting some arguments.
author | roadscape |
---|---|
permlink | re-penguinpablo-re-steemitdev-upcoming-changes-to-api-steemit-com-20181203t184954793z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["penguinpablo"],"app":"steemit/0.1"} |
created | 2018-12-03 18:49:54 |
last_update | 2018-12-03 18:49:54 |
depth | 2 |
children | 10 |
last_payout | 2018-12-10 18:49: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 | 166 |
author_reputation | 27,406,317,697,121 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 76,307,553 |
net_rshares | 0 |
Hi @roadscape! Thanks for your response. Here's the Javascript code: ```javascript steem.api.setOptions({url:'https://api.steemitdev.com'}); steem.api.getDiscussionsByBlog({tag:'penguinpablo',limit:1}, function(err, result) { console.log(err); }); ``` Results in: ``` RPCError: Server error ``` It works using api.steemit.com, but not on api.steemitdev.com.
author | penguinpablo |
---|---|
permlink | re-roadscape-re-penguinpablo-re-steemitdev-upcoming-changes-to-api-steemit-com-20181203t192843048z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["roadscape"],"app":"steemit/0.1"} |
created | 2018-12-03 19:28:42 |
last_update | 2018-12-03 19:29:21 |
depth | 3 |
children | 9 |
last_payout | 2018-12-10 19:28:42 |
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 | 361 |
author_reputation | 792,312,678,950,166 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,309,058 |
net_rshares | 0 |
Wow finally deciding to Optimize, that means you guys weren't doing it along the way... That's why Agile programming practices suck! You did not have a Chief Architect and Lead Designers and the classic top down hierarchy. These issues would have been caught early QA and you wouldn't be in the desperate situation your in now @ned. Hopefully you've learned your lesson and get someone in there who has built a firm from the 15 to 200 employee stage and then bring in someone else to move the firm to the next level. A Leader who sees the both the good and more importantly the pitfalls from experience and inspires people to come up with solutions and think when it is right to go tried and true and when outside the box is needed. Not a Boss who just tells people what has to go on. You need to learn something from the AMC show run of "Halt or Catch Fire.".
author | richatvns |
---|---|
permlink | re-steemitdev-upcoming-changes-to-api-steemit-com-20181204t122520536z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["ned"],"app":"steemit/0.1"} |
created | 2018-12-04 12:25:21 |
last_update | 2018-12-04 12:25:21 |
depth | 1 |
children | 0 |
last_payout | 2018-12-11 12: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 | 868 |
author_reputation | 243,323,637,506,719 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,342,212 |
net_rshares | 470,027,434 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cheneats | 0 | 470,027,434 | 1.4% |
I'm using 'get_discussions_by_author_before_date' in my tools because it returns the account's posts without the resteems and I can load up to 100 posts with only one call. Is there any way to achieve this with 'get_discussions_by_blog'? I've seen that there was a resteems-filter in earlier versions (params.hide == "resteemed", later by setting a discussion_query_filter with params.filter_by), but it seems not to be possible anymore in newer versions. I think that's an important thing to think about because it will otherwise create much overhead for loading 100 posts and I guess many apps would use that instead of filtering the received posts on the client-side.
author | steemchiller |
---|---|
permlink | re-steemitdev-upcoming-changes-to-api-steemit-com-20181203t160057923z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-12-03 16:00:57 |
last_update | 2018-12-03 16:00:57 |
depth | 1 |
children | 13 |
last_payout | 2018-12-10 16:00:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.681 HBD |
curator_payout_value | 0.222 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 672 |
author_reputation | 219,937,669,501,793 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,300,528 |
net_rshares | 1,468,811,907,078 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
roadscape | 0 | 728,001,522,792 | 11% | ||
double-u | 0 | 702,607,906,061 | 100% | ||
ennosan | 0 | 0 | 100% | ||
cheneats | 0 | 514,144,497 | 1.6% | ||
curx | 0 | 18,106,703,531 | 44.07% | ||
reazuliqbal | 0 | 17,538,389,615 | 16.77% | ||
bluengel | 0 | 2,043,240,582 | 10% |
Hi @steemchiller, adding support for this call as it's become clear there is no replacement for it. As far as I can tell, the `before_date` parameter is broken, is that true? Do you paginate at all via `start_permlink`?
author | roadscape |
---|---|
permlink | re-steemchiller-re-steemitdev-upcoming-changes-to-api-steemit-com-20181203t184821406z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["steemchiller"],"app":"steemit/0.1"} |
created | 2018-12-03 18:48:21 |
last_update | 2018-12-03 18:48:21 |
depth | 2 |
children | 12 |
last_payout | 2018-12-10 18:48: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 | 219 |
author_reputation | 27,406,317,697,121 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 76,307,501 |
net_rshares | 28,088,698,415 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steemchiller | 0 | 28,088,698,415 | 25% |
Thanks @roadscape, great to hear! Yes, if I remember correctly, both the `before_date` and `start_permlink` parameters did never really work. I don't need them currently but would be nice to get the `start_permlink` param to work in future.
author | steemchiller |
---|---|
permlink | re-roadscape-re-steemchiller-re-steemitdev-upcoming-changes-to-api-steemit-com-20181203t200150124z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["roadscape"],"app":"steemit/0.1"} |
created | 2018-12-03 20:01:51 |
last_update | 2018-12-03 20:01:51 |
depth | 3 |
children | 11 |
last_payout | 2018-12-10 20:01:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.349 HBD |
curator_payout_value | 0.115 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 240 |
author_reputation | 219,937,669,501,793 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,310,309 |
net_rshares | 756,486,711,624 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
double-u | 0 | 643,449,864,215 | 100% | ||
roleerob | 0 | 112,522,653,643 | 100% | ||
cheneats | 0 | 514,193,766 | 1.6% |
This post has been selected by the Steemvoter (SV) Guild, standby for incoming vote support courtesy of @buildteam and @steemvoter. <center>https://steemitimages.com/DQmQyUEXjJ16T7Gz76ZxrsykLPgrN2SYW26ike8kWpKJ3ea/image.png</center>
author | steemvoter |
---|---|
permlink | re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t003609009z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["buildteam","steemvoter"],"image":["https://steemitimages.com/DQmQyUEXjJ16T7Gz76ZxrsykLPgrN2SYW26ike8kWpKJ3ea/image.png"],"app":"steemit/0.1"} |
created | 2018-12-01 00:36:09 |
last_update | 2018-12-01 00:36:09 |
depth | 1 |
children | 0 |
last_payout | 2018-12-08 00:36:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.128 HBD |
curator_payout_value | 0.036 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 235 |
author_reputation | 205,124,311,476,054 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,173,453 |
net_rshares | 282,471,007,638 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
roadscape | 0 | -326,407,843,337 | -5% | ||
thecryptodrive | 0 | 627,134,012,542 | 100% | ||
ats-david | 0 | -30,663,086,568 | -100% | ||
steemvoter | 0 | 12,407,925,001 | 100% |
Reducing the resource cost of full nodes is great news, thanks for this. standby for some additional votes incoming for further visibility.
author | thecryptodrive |
---|---|
permlink | re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t003106208z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-12-01 00:31:06 |
last_update | 2018-12-01 00:31:06 |
depth | 1 |
children | 0 |
last_payout | 2018-12-08 00:31: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 | 139 |
author_reputation | 103,594,115,164,820 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,173,319 |
net_rshares | 7,655,657,743 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
clumsysilverdad | 0 | 6,111,374,864 | 5% | ||
eccles | 0 | 1,544,282,879 | 100% |
@steemitdev, Sounds good and wanna see how it works soon! One more thing, cost deduction is a good idea, but try to manage it while keeping Steem future at the bright side! Cheers~
author | theguruasia |
---|---|
permlink | re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t034708751z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["steemitdev"],"app":"steemit/0.1"} |
created | 2018-12-01 03:47:06 |
last_update | 2018-12-01 03:47:06 |
depth | 1 |
children | 0 |
last_payout | 2018-12-08 03:47:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.108 HBD |
curator_payout_value | 0.035 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 181 |
author_reputation | 72,767,896,727,210 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,179,445 |
net_rshares | 237,455,118,826 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jadabug | 0 | 921,447,843 | 2.4% | ||
minnowspower | 0 | 74,980,146,928 | 100% | ||
asimo | 0 | 145,815,699,557 | 100% | ||
bot2020 | 0 | 15,737,824,498 | 100% |
Exactly what I want to see. Great progress! Testing asap.
author | therealwolf |
---|---|
permlink | re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t004052692z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-12-01 00:40:51 |
last_update | 2018-12-01 00:40:51 |
depth | 1 |
children | 0 |
last_payout | 2018-12-08 00:40:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.029 HBD |
curator_payout_value | 0.008 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 57 |
author_reputation | 582,208,885,469,814 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,173,591 |
net_rshares | 64,790,884,567 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
masterthematrix | 0 | 9,604,956,374 | 10% | ||
johnspalding | 0 | 4,704,669,695 | 100% | ||
luegenbaron | 0 | 8,269,728,798 | 45% | ||
dustsweeper | 0 | 39,338,177,209 | 6.24% | ||
chrisrice | 0 | 1,297,018,739 | 100% | ||
eccles | 0 | 1,576,333,752 | 100% |
So if I use steemit.js with a call like `steem.api.getState` how do I go about converting/updating. This couldn't have come at a worse time for me as I'm moving house. Will probably have to put @steeming-hot out of action for a while
author | thevillan |
---|---|
permlink | re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t022815334z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["steeming-hot"],"app":"steemit/0.1"} |
created | 2018-12-01 02:28:15 |
last_update | 2018-12-01 02:28:15 |
depth | 1 |
children | 6 |
last_payout | 2018-12-08 02:28:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.016 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 233 |
author_reputation | 60,795,561,647,995 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,176,846 |
net_rshares | 36,864,810,283 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thevillan | 0 | 36,569,132,124 | 30% | ||
cheneats | 0 | 295,678,159 | 0.9% |
You should first see if your app works with `getState` on `api.steemitdev.com`. If it does, you're good. If not, this is how to switch if you were using dsteem: https://developers.steem.io/tutorials-javascript/get_state_replacement_api But the general point is, if you use their `getState(‘witnesses’)`, use `databaseAPI.call('get_witnesses_by_vote', ['', 10]) ` instead.
author | inertia |
---|---|
permlink | re-thevillan-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t061929475z |
category | steemit |
json_metadata | {"tags":["steemit"],"links":["https://developers.steem.io/tutorials-javascript/get_state_replacement_api"],"app":"steemit/0.1"} |
created | 2018-12-01 06:19:30 |
last_update | 2018-12-01 06:19:30 |
depth | 2 |
children | 2 |
last_payout | 2018-12-08 06:19:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.016 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 375 |
author_reputation | 346,568,901,399,561 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,184,071 |
net_rshares | 35,308,777,502 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thevillan | 0 | 34,823,715,987 | 30% | ||
lolicorn | 0 | 485,061,515 | 10% |
Hey thanks @inertia I don't think I will have to modify the code as i use `steem.api.getState('@username/blog', function(err, result)` Guess I will find out next weekend :)
author | thevillan |
---|---|
permlink | re-inertia-re-thevillan-re-steemitdev-upcoming-changes-to-api-steemit-com-20181201t090842485z |
category | steemit |
json_metadata | {"tags":["steemit"],"users":["inertia"],"app":"steemit/0.1"} |
created | 2018-12-01 09:08:42 |
last_update | 2018-12-01 09:08:42 |
depth | 3 |
children | 1 |
last_payout | 2018-12-08 09:08:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.342 HBD |
curator_payout_value | 0.112 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 173 |
author_reputation | 60,795,561,647,995 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,189,135 |
net_rshares | 742,610,598,929 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lolicorn | 0 | 482,738,868 | 10% | ||
frogcake | 0 | 742,127,860,061 | 100% |
All you do is change the endpoint from `api.steemit.com` to `api.stemitdev.com` and make sure your scripts still work :-)
author | roadscape |
---|---|
permlink | re-thevillan-re-steemitdev-upcoming-changes-to-api-steemit-com-20181203t163519614z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-12-03 16:35:18 |
last_update | 2018-12-03 16:35:18 |
depth | 2 |
children | 2 |
last_payout | 2018-12-10 16:35: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 | 121 |
author_reputation | 27,406,317,697,121 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 0.000 HBD |
percent_hbd | 10,000 |
post_id | 76,302,062 |
net_rshares | 36,306,607,123 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thevillan | 0 | 36,306,607,123 | 30% |
So I'm guessing as long as I pull the steem.js file from the steemit cdn it should update accordingly
author | thevillan |
---|---|
permlink | re-roadscape-re-thevillan-re-steemitdev-upcoming-changes-to-api-steemit-com-20181203t194434551z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-12-03 19:44:36 |
last_update | 2018-12-03 19:44:36 |
depth | 3 |
children | 1 |
last_payout | 2018-12-10 19:44:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.142 HBD |
curator_payout_value | 0.045 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 101 |
author_reputation | 60,795,561,647,995 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,309,637 |
net_rshares | 309,899,127,800 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
o07 | 0 | 37,720,389,031 | 100% | ||
thevillan | 0 | 33,633,384,813 | 30% | ||
lolicorn | 0 | 484,477,992 | 10% | ||
contestkings | 0 | 238,060,875,964 | 30% |
Hi, I use `steem.api.getRebloggedBy` in my bot, whats an alternative to this as it no longer works. Thanks :)
author | thevillan |
---|---|
permlink | re-steemitdev-upcoming-changes-to-api-steemit-com-20181225t050006295z |
category | steemit |
json_metadata | {"tags":["steemit"],"app":"steemit/0.1"} |
created | 2018-12-25 05:00:06 |
last_update | 2018-12-25 05:00:06 |
depth | 1 |
children | 0 |
last_payout | 2019-01-01 05:00:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.020 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 109 |
author_reputation | 60,795,561,647,995 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 77,348,068 |
net_rshares | 47,499,424,489 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thevillan | 0 | 46,980,510,684 | 50% | ||
ztz | 0 | 518,913,805 | 100% |
To listen to the audio version of this article click on the play image. [](http://ec2-52-72-169-104.compute-1.amazonaws.com/steemitdev__upcoming-changes-to-api-steemit-com.mp3) Brought to you by [@tts](https://steemit.com/tts/@tts/introduction). If you find it useful please consider upvoting this reply.
author | tts |
---|---|
permlink | re-upcoming-changes-to-api-steemit-com-20181201t004107 |
category | steemit |
json_metadata | "" |
created | 2018-12-01 00:41:06 |
last_update | 2018-12-01 00:41:06 |
depth | 1 |
children | 0 |
last_payout | 2018-12-08 00:41: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 | 357 |
author_reputation | -4,535,154,553,995 |
root_title | "Upcoming Changes to api.steemit.com" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 76,173,598 |
net_rshares | 0 |