<center>[](https://pixabay.com/en/server-space-the-server-room-dark-2160321/)</center> [A few months ago, I announced anyx.io, a high performance Full-Node API.](https://steemit.com/steem/@anyx/announcing-https-anyx-io-a-public-high-performance-full-api) The goal of this infrastructure project is to create a high throughput, high availability alternative to Steemit Inc's own API offering (api.steemit.com). Furthermore, the idea is to promote and increase the decentralization of Steem: if everyone uses Steemits' severs, we lose the ability to publicly audit the information they provide us, and moreover, succumb to to any censorship they might enact. In this post, I wanted to outline a few of the things I've been working on since the announcement. To summarize, here's whats new: 1. Hivemind full-node queries are now available at https://hive.anyx.io. 2. Legacy API Support Continues at https://anyx.io. 3. HTTP (non-ssl, port 80) support now offered. 4. Improvements to custom middleware solution (Jussi replacement). 5. Bugfixes (e.g. large payload issues). # 1. Hivemind Support Now Offered [Steemit recently announced the use of Hivemind in production.](https://steemit.com/hivemind/@steemitblog/hivemind-is-live) What this means for application developers is that many API offerings have changed, and going forward, certain API's traditionally offered have become deprecated. In this sense, api.steemit.com no longer provides a "full node" as we are used to, but has moved to a different standard. In the goal of increasing decentralization of API services, I have added a new stack to my infrastructure that includes a full hivemind node, accessible at hive.anyx.io. This offers a public alternative to the same semantics that api.steemit.com offers. How this was done specifically will be explained in part 4, but one important note that needs to be made about hive is that it *requires a steemd node to link into* in order to build its state. I've noticed that some people offer hivemind nodes but are not clear about what steemd node provides the back end, and indeed, if one uses api.steemit.com to fill the information in the hive node, it's not really auditing the information. In my case, the steemd node it retrieves its information from is part of the anyx.io stack. # 2. Legacy API Support Continues Since Steemit dropped support for previous "full node" semantics quite quickly, many developers were caught unprepared and have not updated their applications yet. To support these developers, anyx.io will continue to support the legacy "full node" API for as long as it's economical to do so. (Please consider voting for me as a witness!) In addition to the "full node" semantics, websocket support continues for legacy applications such as [the desktop wallet Vessel](https://github.com/aaroncox/vessel). Adding hive.anyx.io is intended to aid developers using my infrastructure to try out their applications with the new API semantics without having to rely on api.steemit.com. Eventually legacy support will likely end, and so developers relying on legacy support should try out their applications sooner rather than later! # 3. HTTP Support Added Previously, anyx.io was only reachable via SSL (https, port 443). The reason for this was due to a limitation of Jussi, Steemit's provided middleware. As I have dropped this and replaced it with my own middleware (see part 4), I now have also opened regular http (port 80) support. For most users, you should continue to use https. Honestly, if you don't know why you would want to use http instead, you should certainly continue to use https. Only those who know and understand the trade-offs and ramifications of http-only should consider it. That being said, for anyone testing latency as opposed to throughput as a performance metric (looking at you @holger80), testing http://anyx.io is preferable, as it is slightly more optimized for latency. https://anyx.io continues to be optimized for throughput. For those that don't understand the difference: Latency is a metric of how quickly you can retrieve a response back after you request it. Throughput is how many total requests can be served. As an example, if 100 clients can retrieve data every 1 second, the throughput is 100 r/s with a latency of 1s. However, if 500 clients can retrieve data once every 2 seconds, the throughput is 250 r/s with a latency of 2s. At a high level, the entirety of the anyx.io stack is optimized for *throughput*, as the intent is to offer a public node that gives fairness to many, many concurrent clients. # 4. Custom Router Development As mentioned previously, I have replaced Jussi (Steemit's middleware solution) with my own custom solution. There were several reasons for avoiding Jussi, primarily: - Lack of support for port management - Poor performance in throughput - Caching often too overzealous - Does not support unix sockets For the replacement, I built a custom solution in Golang that connects to steemd via unix sockets ([this is I feature I added to Steem itself, here](https://github.com/steemit/steem/pull/3205), for much better local performance and to avoid the tcp/ip stack where possible) and offers better performance in general due to being a compiled, static language rather than a dynamic one (how python operates). As an outcome, I've noticed a drastic decrease in timeouts compared to jussi, as all requests are served concurrently with excellent throughput. For caching, my solution is less zealous and will attempt to retrieve new information as soon as possible. In general, this will mean more up-to-date results compared to solutions with heavy caching. Finally, hivemind support was added to the stack. If your request is made to hive.anyx.io instead of anyx.io, the hivemind API calls [(which can be found here)](https://github.com/steemit/hivemind) are intercepted by this middleware and sent to the hivemind stack, but any other calls will continue to the anyx.io stack as usual. Notably, with this new middleware has come a few issues -- as semantics do not perfectly match those of Jussi (which many other API's offer). As such, this is a work-in-progress, so if you notice any discrepancies between my API node and any others, please feel free to let me know. # 5. Bugfixes and Performance Improvements A side note that's important to mention is that tweaks and improvements are ongoing! Certain issues like caching returning out-of-date results have been resolved (opting to be more sensitive to time), and some nginx edge-cases like payload size causing interference have been fixed (see [this hivemind issue](https://github.com/steemit/hivemind/issues/181)). I also recently added support for batched requests (of limited size) since certain application developers require it. If you run into any issues, please feel free to poke me so that I can resolve them! The goal is to provide a feature-complete API alternative to remove dependency and reliance on Steemit Inc., and so any improvements I can make will help me reach that goal. --- --- **Like what I'm doing for Steem? You can read more about my witness candidacy here:** https://steemit.com/witness/@anyx/updated-witness-application **Then please consider voting for me as a witness here!** https://steemit.com/~witnesses
author | anyx |
---|---|
permlink | updates-to-anyx-io-infrastructure-including-hivemind-support |
category | steem |
json_metadata | {"tags":["steem","api","witness-category","witness-update","hivemind"],"users":["holger80"],"image":["https://cdn.steemitimages.com/DQmSGZrvLgKpQru9VHy8GcZgoQPpTyS5ft9WHyzmf55DQ6f/server-2160321_1920.jpg"],"links":["https://pixabay.com/en/server-space-the-server-room-dark-2160321/","https://steemit.com/steem/@anyx/announcing-https-anyx-io-a-public-high-performance-full-api","https://hive.anyx.io","https://anyx.io","https://steemit.com/hivemind/@steemitblog/hivemind-is-live","https://github.com/aaroncox/vessel","http://anyx.io","https://github.com/steemit/steem/pull/3205","https://github.com/steemit/hivemind","https://github.com/steemit/hivemind/issues/181","https://steemit.com/witness/@anyx/updated-witness-application","https://steemit.com/~witnesses"],"app":"steemit/0.1","format":"markdown"} |
created | 2019-02-08 23:10:45 |
last_update | 2019-02-08 23:42:06 |
depth | 0 |
children | 36 |
last_payout | 2019-02-15 23:10:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 53.892 HBD |
curator_payout_value | 17.413 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7,454 |
author_reputation | 98,676,136,100,181 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,593,779 |
net_rshares | 153,323,628,483,511 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
blocktrades | 0 | 68,782,275,281,420 | 100% | ||
roadscape | 0 | 6,624,707,458,843 | 100% | ||
teamsteem | 0 | 60,271,656,146 | 100% | ||
acidyo | 0 | 3,879,014,609,940 | 32% | ||
dan-atstarlite | 0 | 793,637,638,452 | 100% | ||
mark-waser | 0 | 33,989,010,381 | 25% | ||
lukestokes | 0 | 2,499,409,523,468 | 75% | ||
honeythief | 0 | 60,827,641,462 | 100% | ||
gtg | 0 | 8,359,187,306,865 | 100% | ||
roelandp | 0 | 1,069,292,379,056 | 100% | ||
ausbitbank | 0 | 1,583,194,059,489 | 100% | ||
vortac | 0 | 5,605,891,766 | 0.15% | ||
anyx | 0 | 1,064,891,007,826 | 100% | ||
jesta | 0 | 1,402,844,439,430 | 100% | ||
transisto | 0 | 359,910,826,860 | 100% | ||
inertia | 0 | 1,431,040,582,077 | 100% | ||
arcange | 0 | 107,719,054,362 | 10% | ||
pcste | 0 | 6,736,237,380 | 37.5% | ||
raphaelle | 0 | 6,580,818,120 | 10% | ||
ace108 | 0 | 142,124,130,974 | 8% | ||
logic | 0 | 5,406,101,208 | 100% | ||
remlaps | 0 | 12,496,362,179 | 100% | ||
steem-engine | 0 | 629,614,097 | 100% | ||
bryan-imhoff | 0 | 171,755,267,951 | 50% | ||
anotherjoe | 0 | 518,240,898,593 | 50% | ||
escapeamericanow | 0 | 19,829,254,270 | 50% | ||
krnel | 0 | 352,572,907,430 | 25% | ||
sammie | 0 | 4,423,839,408 | 100% | ||
holoz0r | 0 | 24,636,633,437 | 100% | ||
davidjkelley | 0 | 0 | 25% | ||
digital-wisdom | 0 | 22,199,969 | 25% | ||
ethical-ai | 0 | 0 | 25% | ||
jwaser | 0 | 6,195,083,615 | 25% | ||
maarnio | 0 | 15,478,840,537 | 5% | ||
bwaser | 0 | 1,440,835,328 | 25% | ||
ellepdub | 0 | 352,485,497 | 25% | ||
herpetologyguy | 0 | 40,823,556,909 | 25% | ||
fortinbuff | 0 | 692,385,396 | 50% | ||
handyman | 0 | 0 | 25% | ||
strong-ai | 0 | 0 | 25% | ||
vannour | 0 | 589,476,047 | 0.75% | ||
expat | 0 | 155,005,116 | 50% | ||
astral | 0 | 39,194,972,639 | 100% | ||
expatembassy | 0 | 172,094,947 | 50% | ||
technoprogressiv | 0 | 0 | 25% | ||
timm | 0 | 634,217,968,407 | 50% | ||
v4vapid | 0 | 15,586,308,789,715 | 100% | ||
anthonyadavisii | 0 | 34,399,331,754 | 37.5% | ||
javirid | 0 | 12,340,867,604 | 100% | ||
olegst | 0 | 0 | 100% | ||
borislavzlatanov | 0 | 101,868,347,849 | 100% | ||
ganjafarmer | 0 | 6,054,325,218 | 100% | ||
alexrickard86 | 0 | 172,265,457 | 37.5% | ||
msg768 | 0 | 8,175,691,456 | 2% | ||
bloom | 0 | 351,048,499,135 | 100% | ||
steemchiller | 0 | 149,873,597,946 | 100% | ||
jkkim | 0 | 26,862,208 | 10% | ||
satoshibit | 0 | 29,481,613,980 | 100% | ||
rabbot | 0 | 25,600,328,865 | 100% | ||
joejoekeys | 0 | 7,164,420,973 | 50% | ||
pennsif | 0 | 28,456,656,787 | 10% | ||
drakos | 0 | 2,882,088,764,516 | 100% | ||
kiokizz | 0 | 9,038,811,083 | 37.5% | ||
toofasteddie | 0 | 8,246,328,061 | 7.5% | ||
smartdeveloper | 0 | 268,612,448 | 69% | ||
themarkymark | 0 | 1,140,346,853,127 | 100% | ||
smartcash | 0 | 8,664,000,744 | 52% | ||
powpow420 | 0 | 1,243,671,921 | 50% | ||
jeanlucsr | 0 | 1,056,959,574 | 55% | ||
valerious | 0 | 2,155,099,996 | 100% | ||
izmy.steemit | 0 | 1,862,617,452 | 100% | ||
roman1973 | 0 | 4,182,741,338 | 100% | ||
netraleon | 0 | 2,050,451,983 | 100% | ||
steemstatistics | 0 | 334,387,597 | 64% | ||
tigerz | 0 | 2,752,159,623 | 100% | ||
karcher-310 | 0 | 1,357,799,120 | 100% | ||
therealwolf | 0 | 1,193,795,010,740 | 100% | ||
thedarkhorse | 0 | 2,054,249,431 | 3.75% | ||
yabapmatt | 0 | 2,067,400,285,942 | 100% | ||
mcfarhat | 0 | 42,979,752,952 | 25% | ||
cookingwithzumi | 0 | 7,355,132,015 | 100% | ||
darsn | 0 | 2,285,349,331 | 100% | ||
pierlave | 0 | 2,685,521,050 | 100% | ||
artem.timofeev | 0 | 334,646,344 | 100% | ||
zdamna100ogebio | 0 | 2,345,752,417 | 100% | ||
stonergirls | 0 | 718,357,207 | 100% | ||
heyimsnuffles | 0 | 2,833,965,718 | 15% | ||
cryptonik | 0 | 641,152,738 | 37.5% | ||
emrebeyler | 0 | 649,349,624,191 | 100% | ||
mariska.lubis | 0 | 31,162,474,244 | 100% | ||
infidel1258 | 0 | 275,781,293 | 5% | ||
yogajill | 0 | 49,419,421,031 | 100% | ||
funtraveller | 0 | 5,711,881,222 | 1% | ||
josephnsowah | 0 | 543,324,574 | 100% | ||
precisesound | 0 | 542,163,403 | 100% | ||
steemitag | 0 | 3,348,484,486 | 10% | ||
ervinneb | 0 | 22,989,820,468 | 25% | ||
holozaps | 0 | 139,762,505 | 50% | ||
kevinli | 0 | 2,753,679,139 | 5% | ||
mathowl | 0 | 7,678,896,850 | 18.75% | ||
smjn | 0 | 282,293,674,918 | 50% | ||
videosteemit | 0 | 1,123,501,136 | 100% | ||
souperman | 0 | 1,808,817,034 | 100% | ||
holger80 | 0 | 499,139,562,073 | 84% | ||
bringolo | 0 | 34,899,200,901 | 99.71% | ||
llfarms | 0 | 124,558,312,727 | 100% | ||
harvhat | 0 | 303,962,784 | 50% | ||
olimiesma | 0 | 1,834,958,770 | 10% | ||
lionsuit | 0 | 739,910,167 | 5% | ||
scoora82 | 0 | 53,319,276 | 25% | ||
jplaughing | 0 | 6,394,061,934 | 22.5% | ||
sholi | 0 | 7,495,252,700 | 80% | ||
mariusfebruary | 0 | 6,103,923,885,386 | 50% | ||
biochem | 0 | 6,175,260,061 | 100% | ||
kendallron | 0 | 215,669,530 | 15% | ||
flagawhale | 0 | 17,101,873,268 | 37.5% | ||
zdamna100egebio | 0 | 1,969,086,791 | 100% | ||
abuses | 0 | 349,899,178 | 100% | ||
seredina | 0 | 2,411,777,744 | 100% | ||
probaperra | 0 | 1,690,067,511 | 100% | ||
luegenbaron | 0 | 24,875,732,991 | 100% | ||
astis-brian | 0 | 551,716,586 | 100% | ||
indayclara | 0 | 301,219,684 | 7.5% | ||
atanas007 | 0 | 5,404,607,998 | 100% | ||
techcoderx | 0 | 9,400,486,587 | 100% | ||
deltakm | 0 | 25,946,977,372 | 100% | ||
gena138 | 0 | 298,548,315 | 100% | ||
photocircle | 0 | 3,697,890,942 | 1% | ||
neutralizer | 0 | 1,109,166,212 | 37.5% | ||
randohealer | 0 | 1,419,256,910 | 37.5% | ||
nervniymen | 0 | 1,809,111,420 | 100% | ||
orange777 | 0 | 715,592,775 | 100% | ||
koljabonke | 0 | 0 | -100% | ||
jekon80 | 0 | 380,427,065 | 100% | ||
mitrin | 0 | 1,258,993,053 | 50% | ||
smartmeme | 0 | 1,745,617,857 | 37.5% | ||
greenunion | 0 | 1,189,026,275 | 100% | ||
gormogon | 0 | 19,587,522,196 | 25% | ||
apshamilton | 0 | 177,008,963,655 | 100% | ||
vanessag | 0 | 288,862,941 | 100% | ||
kingabesh1 | 0 | 308,667,501 | 60% | ||
gatica | 0 | 319,881,819 | 100% | ||
seemaabbasi | 0 | 0 | 5% | ||
cowboyblazerfan | 0 | 249,988,996 | 50% | ||
boukdir | 0 | 128,746,180 | 16% | ||
bestofph | 0 | 6,431,543,961 | 15% | ||
hamismsf | 0 | 142,545,827,693 | 25% | ||
flordemaria | 0 | 12,510,037 | 12% | ||
robinhoodupme | 0 | 207,820,195 | 12% | ||
mypride | 0 | 362,063,069 | 100% | ||
mdraju | 0 | 0 | 100% | ||
gonanmaco | 0 | 516,323,988 | 100% | ||
icvierapas | 0 | 533,282,566 | 100% | ||
nieloagranca | 0 | 3,889,862,092 | 8% | ||
steemchoose | 0 | 27,656,945,068 | 5% | ||
steeming-hot | 0 | 0 | 0.05% | ||
witnesspage | 0 | 8,759,215,084 | 27% | ||
tilestar | 0 | 500,971,524 | 100% | ||
rokoarte | 0 | 97,313,035 | 100% | ||
teampdx | 0 | 718,395,264 | 100% | ||
teamoregon | 0 | 660,256,031 | 100% | ||
asforex | 0 | 359,043,240 | 100% | ||
lauren432 | 0 | 525,829,722 | 100% | ||
brianna00 | 0 | 524,426,182 | 100% | ||
encrawunria | 0 | 540,028,050 | 100% | ||
glascyconhard | 0 | 534,371,717 | 100% | ||
prodobfqualbet | 0 | 526,069,959 | 100% | ||
chaegriltesubt | 0 | 535,943,574 | 100% | ||
mcadevinar | 0 | 527,927,485 | 100% | ||
ganjafarmers | 0 | 816,698,321 | 100% | ||
boykeren | 0 | 37,814,692 | 100% | ||
bonadicta | 0 | 1,985,731,147 | 100% | ||
merlin7 | 0 | 690,342,078 | 0.02% | ||
ezzet | 0 | 691,448,732 | 100% | ||
theycallmedan | 0 | 16,182,082,760,025 | 50% | ||
paparex | 0 | 110,923,848 | 30% | ||
steemexpress | 0 | 2,191,119,453 | 4.04% | ||
stmpay | 0 | 6,268,414,088 | 2.49% | ||
edgarare1 | 0 | 3,558,452,888 | 16% | ||
etnentiwgy | 0 | 536,351,799 | 100% | ||
antiabuse | 0 | 26,097,262,006 | 75% | ||
bluesniper | 0 | 2,366,567,233 | 0.49% | ||
sfr-mod-fund | 0 | 1,772,619,949 | 37.5% | ||
ascorphat | 0 | 1,867,143,424 | 2.5% | ||
romanreign | 0 | 1,058,277,628 | 10% | ||
alexusbrave | 0 | 551,983,937 | 100% | ||
pgshow | 0 | 1,153,485,391 | 3% | ||
realgoodcontent | 0 | 1,303,525,649 | 25.9% | ||
mgranja | 0 | 5,538,465,292 | 4% | ||
emmanuelboahen | 0 | 1,609,084,008 | 90% | ||
scripsio | 0 | 782,362,428,365 | 37.5% | ||
themadcurator | 0 | 4,083,606,701,004 | 71% | ||
cristhianarturo | 0 | 402,769,582 | 100% | ||
irwingobin7 | 0 | 299,814,855 | 100% | ||
cyberdyn | 0 | 1,171,330,803 | 100% | ||
neno001hr | 0 | 394,515,430 | 100% | ||
kggymlife | 0 | 5,961,909,103 | 15% | ||
stephanys | 0 | 33,184,089 | 100% | ||
himynameis | 0 | 189,026,240 | 100% | ||
gabo1920 | 0 | 403,843,362 | 100% | ||
lobojt | 0 | 77,278,339 | 100% | ||
elmami | 0 | 128,997,284 | 100% | ||
twistedcheshire | 0 | 230,031,864 | 50% | ||
cryptopiaan | 0 | 5,302,110,372 | 100% | ||
afrin-shorna | 0 | 394,019,487 | 100% | ||
superlocobs | 0 | 332,586,884 | 100% | ||
yunaremaia | 0 | 359,397,352 | 100% | ||
mightyking | 0 | 356,876,285 | 100% | ||
alexis.madrid | 0 | 499,704,853 | 100% | ||
rosmelismoreno | 0 | 332,071,825 | 100% | ||
javier2216 | 0 | 505,701,672 | 100% | ||
haythempugile | 0 | 0 | 100% | ||
bernieflenders | 0 | 0 | -100% | ||
thejaffarkhan | 0 | 0 | 100% | ||
joseballes | 0 | 0 | 100% | ||
marina88 | 0 | 0 | 100% | ||
kratomuzanto | 0 | 0 | 80% | ||
karanbholyan0001 | 0 | 0 | 100% | ||
shan121 | 0 | 0 | 100% |
Great work! Jussi was a weak point so its great that you've designed a replacement. Looking forward to it being open source.
author | apshamilton |
---|---|
permlink | re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190212t135103425z |
category | steem |
json_metadata | {"tags":["steem"],"community":"steempeak","app":"steempeak/1.7.2b"} |
created | 2019-02-12 13:51:03 |
last_update | 2019-02-12 13:51:03 |
depth | 1 |
children | 0 |
last_payout | 2019-02-19 13:51:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.174 HBD |
curator_payout_value | 0.054 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 124 |
author_reputation | 212,442,236,070,075 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,768,628 |
net_rshares | 457,976,669,219 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
elviento | 0 | 405,986,669 | 0.5% | ||
gingerninja | 0 | 1,098,076,036 | 5% | ||
jadabug | 0 | 1,337,711,741 | 1% | ||
hamismsf | 0 | 455,134,894,773 | 80% |
Throughput is how many total requests can be served.
author | arafathsunny |
---|---|
permlink | re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190209t033539029z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-02-09 03:35:51 |
last_update | 2019-02-09 03:35:51 |
depth | 1 |
children | 1 |
last_payout | 2019-02-16 03:35: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 | 52 |
author_reputation | 151,575,137,432 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,601,529 |
net_rshares | 0 |
'Total' is volume. Throughput is volume per unit of time.
author | anyx |
---|---|
permlink | re-arafathsunny-re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190209t191320619z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-02-09 19:13:21 |
last_update | 2019-02-09 19:13:21 |
depth | 2 |
children | 0 |
last_payout | 2019-02-16 19:13: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 | 57 |
author_reputation | 98,676,136,100,181 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,632,339 |
net_rshares | 0 |
Congratulations @anyx! Your post was mentioned in the [Steem Hit Parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20190208) in the following category: * Pending payout - Ranked 7 with $ 69,66
author | arcange |
---|---|
permlink | re-updates-to-anyx-io-infrastructure-including-hivemind-support-20190208t164600000z |
category | steem |
json_metadata | "" |
created | 2019-02-09 15:46:15 |
last_update | 2019-02-09 15:46:15 |
depth | 1 |
children | 0 |
last_payout | 2019-02-16 15:46: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 | 209 |
author_reputation | 1,146,633,784,083,859 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,625,121 |
net_rshares | 0 |
Эй чёрт ебаный, ты ещё не здох? Твой пидорас гепард перешёл мне дорогу. Я Русскоя мафия, я найду тебя и отрежу тебе голову, если ты всё не исправишь гандон.
author | asket13 |
---|---|
permlink | prz1zl |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-05-23 19:26:15 |
last_update | 2019-05-23 19:26:15 |
depth | 1 |
children | 0 |
last_payout | 2019-05-30 19:26: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 | 156 |
author_reputation | -988,818,064,646 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 85,377,299 |
net_rshares | -21,363,697 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cheetah | 0 | -21,363,697 | -0.08% |
Cheetah-appeals Good morning, Anyx. I got your info from Logic, I tried messaging you in discord but I’m not computer savvy enough I guess, it said we didn’t share the same server?? Whatever that means. 🤔 Hey man, I’m here because cheetah hits our @foodfightfriday blog, a weekly cooking initiative, every.single.friday. I was told because our opening is the same on the page every week. Will you please take a look at our initiative and call off cheetah? I appreciate what cheetah does, trust me! In this case, however, it’s negative energy that isn’t necessary, there’s no plagiarism going on, we’re simply using our own personal format. From there, we’re featuring multiple chefs every week, I’m the one responsible for putting our contender posts together, I have between an hour and two hours vested into each post, every week, and each week we’re interrupted by cheetah. Thank you!
author | dandays |
---|---|
permlink | re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190326t114309077z |
category | steem |
json_metadata | {"tags":["steem"],"users":["foodfightfriday"],"app":"steemit/0.1"} |
created | 2019-03-26 11:43:09 |
last_update | 2019-03-26 11:43:09 |
depth | 1 |
children | 2 |
last_payout | 2019-04-02 11:43: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 | 891 |
author_reputation | 253,596,081,930,457 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,980,456 |
net_rshares | 0 |
@anyx. @foodfightfriday, we’ve even began switching up our opening paragraph and, every week, the images are different chefs cover images, a new picture each week. What else do we have to do to get off @cheetah’s list. Thank you, on behalf of @foodfightfriday.
author | dandays |
---|---|
permlink | re-dandays-re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190408t001754250z |
category | steem |
json_metadata | {"tags":["steem"],"users":["anyx","foodfightfriday","cheetah"],"app":"steemit/0.1"} |
created | 2019-04-08 00:17:54 |
last_update | 2019-04-08 00:17:54 |
depth | 2 |
children | 1 |
last_payout | 2019-04-15 00:17:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.088 HBD |
curator_payout_value | 0.029 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 261 |
author_reputation | 253,596,081,930,457 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 82,663,678 |
net_rshares | 189,260,874,747 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gentlebot | 0 | 189,260,874,747 | 15% |
I’m @foodfightfriday and I approve this message!
author | foodfightfriday |
---|---|
permlink | re-dandays-re-dandays-re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190408t001939847z |
category | steem |
json_metadata | {"tags":["steem"],"users":["foodfightfriday"],"app":"steemit/0.1"} |
created | 2019-04-08 00:19:39 |
last_update | 2019-04-08 00:19:39 |
depth | 3 |
children | 0 |
last_payout | 2019-04-15 00:19: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 | 22,973,214,033,581 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 82,663,751 |
net_rshares | 0 |
Awesome, I'll try to catch up just after going back from my trip.
author | gtg |
---|---|
permlink | re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190209t032659428z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-02-09 03:26:54 |
last_update | 2019-02-09 03:26:54 |
depth | 1 |
children | 0 |
last_payout | 2019-02-16 03:26:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.071 HBD |
curator_payout_value | 0.023 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 65 |
author_reputation | 461,833,023,867,897 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,601,264 |
net_rshares | 203,518,952,220 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anyx | 0 | 203,518,952,220 | 20% |
Cheetah-Appeals Hi, your Cheetah Bot has blackliste my own content and is flagging me since february. I am only copying my own disclaimer at the end of each post and content of my own website. It is a bad idea to flag and blacklist users own content each time. So it would be a good thing to remove me from the blacklist of this stupid bot who is blacklisting me, because I publish my own content of my website, even of the past years. Best regards and thanks in advance. IT24
author | indextrader24 |
---|---|
permlink | re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190218t195521429z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-02-18 19:55:18 |
last_update | 2019-02-18 19:55:18 |
depth | 1 |
children | 0 |
last_payout | 2019-02-25 19:55: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 | 483 |
author_reputation | 464,445,293,253,484 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,061,604 |
net_rshares | -15,247,529 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cheetah | 0 | -15,247,529 | -0.08% |
Hello! As far as the golos.io community is aware, you delegated your golos power to olegst for support the @kulturagolosa project. And everything would be fine, but the problem is that the one to whom golospower, was delegated obviously abuses it and behaves like a victim of the “watchman’s syndrome” - (this is when a useless, but malicious and envious person accidentally get some power and he begins to use this power in order to revenge and settle accounts with old foes). If you follow the activity, and in particular, olegst, you can clearly see that all of its flags are not a reduction of really junk content but the desire to harm those people who he does not like personally.. For example, the conflict with @cognition community and @lindsay: https://golos.io/ru--megagalxyan/@cognition/analitika-21-02-2019-vecher https://golos.io/ru--megagalxyan/@lindsay/zlaya-nastya-znakomimsya-zanovo-ili-kak-nachinalas-istoriya-o-dvukh-kapitanakh In response to any attempt to object, in response to any request to substantiate the correctness of the punishment, Oleg responds in this way: he sets flags to all posts of this author. Rather, on all posts that are waiting for payments to show: "I have great strength, I will do whatever I want and no one will bother me" Most of the community do not think that this posts deserves whale flags (its flag was the first, then with the support came his friends whom he called and only then the clash began in comments), and this is not the first time. This man asserts himself in such a petty way. - having gotten a whale power in his hands, he bullied a girl for the fact that once she once quite rightly told him everything she thinks of him. And provokes on purpose, knowing how emotional she is and how acutely it reacts to whale flags, which cutting off substantial amounts from the post and lowering the reputation. As a result, the situation turns out that a person is clearly wrong, but even to argue with him is impossible because his only argument is the whale flag. This conflict is already beginning to develop into completely unacceptable forms, a critical mass of dissatisfied people is recruited, on the sidelines of the chats there is already talk of deanonymization and “courtesy visit” to Oleg in real life. Also not very kind words are said about you, because you provided so much authority power to a person with such dubious moral and human qualities. On the one hand, I am a friend of Nastya, on the other hand, I love your @cheetah very much and respect you very much for the work you do. Knowing that you are an authority on both sides of the conflict, I beg you to play the role of the mediator until the conflict has gone too far and something bad has happened. And if you can not or do not want, then I ask you to at least think about whether your golos power is used as you would like it to be used? Regards, @kamelotan
author | kamelotan |
---|---|
permlink | re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190428t120550693z |
category | steem |
json_metadata | {"tags":["steem"],"users":["kulturagolosa","cognition","lindsay","cheetah","kamelotan"],"links":["https://golos.io/ru--megagalxyan/@cognition/analitika-21-02-2019-vecher","https://golos.io/ru--megagalxyan/@lindsay/zlaya-nastya-znakomimsya-zanovo-ili-kak-nachinalas-istoriya-o-dvukh-kapitanakh"],"app":"steemit/0.1"} |
created | 2019-04-28 12:05:57 |
last_update | 2019-04-28 12:05:57 |
depth | 1 |
children | 0 |
last_payout | 2019-05-05 12:05: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 | 2,902 |
author_reputation | 149,512,608,024 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 83,886,993 |
net_rshares | 0 |
Good job. Hivemind seems good, but how does one use it? How are requests made, what are the methods/functions and their parameters to retrieve data? Can you help developers find information in this regard? The github for Hivemind doesn't even demonstrate how this can be used by an app/site, for instance. Thanks!
author | krnel |
---|---|
permlink | re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190209t022808131z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-02-09 02:28:06 |
last_update | 2019-02-09 02:28:06 |
depth | 1 |
children | 2 |
last_payout | 2019-02-16 02:28:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.071 HBD |
curator_payout_value | 0.023 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 313 |
author_reputation | 1,343,547,270,297,082 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,599,610 |
net_rshares | 204,329,202,368 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anyx | 0 | 204,329,202,368 | 20% |
Indeed, the sparsity of "how to use it" is one of the reasons many developers were left out when steemit quickly jumped over. Basically, it has taken many of the API calls, such as those from here: https://developers.steem.io/apidefinitions/#apidefinitions-follow-api And replaced the way they are responded to with a different program, in an attempt to save costs. The GitHub shows which calls were replaced. Otherwise, it should be the same semantics for using an API node -- it's the back end that a front end like an app talks to.
author | anyx |
---|---|
permlink | re-krnel-re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190209t191109500z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://developers.steem.io/apidefinitions/#apidefinitions-follow-api"],"app":"steemit/0.1"} |
created | 2019-02-09 19:11:12 |
last_update | 2019-02-09 19:11:12 |
depth | 2 |
children | 1 |
last_payout | 2019-02-16 19: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 | 538 |
author_reputation | 98,676,136,100,181 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,632,279 |
net_rshares | 0 |
Ты пидор гнойный, я убью тебя и всю твою семью.
author | asket13 |
---|---|
permlink | prz21v |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-05-23 19:27:36 |
last_update | 2019-05-23 19:27:36 |
depth | 3 |
children | 0 |
last_payout | 2019-05-30 19:27: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 | 47 |
author_reputation | -988,818,064,646 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 85,377,345 |
net_rshares | -21,363,697 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cheetah | 0 | -21,363,697 | -0.08% |
Your post has been good. I love it. This type of post further did.I would like to see more about this.
author | naeem61 |
---|---|
permlink | re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190209t142002085z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-02-09 14:20:09 |
last_update | 2019-02-09 14:20:09 |
depth | 1 |
children | 2 |
last_payout | 2019-02-16 14:20: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 | 102 |
author_reputation | -96,578,456,034 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,620,823 |
net_rshares | 0 |
Ты любишь сосать член?
author | asket13 |
---|---|
permlink | prz231 |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-05-23 19:28:18 |
last_update | 2019-05-23 19:28:18 |
depth | 2 |
children | 0 |
last_payout | 2019-05-30 19:28: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 | 22 |
author_reputation | -988,818,064,646 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 85,377,367 |
net_rshares | -21,363,697 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cheetah | 0 | -21,363,697 | -0.08% |
🎁 Dear @naeem61,<br /><p>SteemBet Seed round SPT sale is about to <strong><a href="https://steem-bet.com/">start in 2 days!</a></strong></p><p>When our started the development of SteemBet Dice game, we couldn’t imagine that our game would go so viral and that SteemBet would become one of the pioneers in this field. </p><p>In order to give back to our beloved community, we’ll distribute <a href="https://steem-bet.com/"><strong>4000 STEEM</strong> to SPT holders immediately</a> after Seed sale. Plus, investors in this earliest round will be given <a href="https://steem-bet.com/"><strong>60% more tokens</strong></a> as reward and overall <a href="https://steem-bet.com/">Return on Investment is estimated at 300%!</a></p><p>Join the whitelist on <strong><a href="https://steem-bet.com/">SteemBet webiste</a></strong> now and start investing! Feel free to ask us anything on <a href="https://discord.gg/tNWJEAD"><strong>Discord https://discord.gg/tNWJEAD</strong></a></p>
author | steem-bet |
---|---|
permlink | re-naeem61-re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190420t221727652z |
category | steem |
json_metadata | {} |
created | 2019-04-20 22:17:30 |
last_update | 2019-04-20 22:17:30 |
depth | 2 |
children | 0 |
last_payout | 2019-04-27 22:17: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 | 1,111 |
author_reputation | 18,461,529,615,904 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 83,466,101 |
net_rshares | -13,966,423,840 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abusereports | 0 | -13,966,423,840 | -0.5% |
I have a question for @anyx. Is there any danger that my posts will get flag/vote/comment from @cheetah or @steemcleaners if I use @dlike or @share2steem? Posted using [Partiko Android](https://steemit.com/@partiko-android)
author | ond |
---|---|
permlink | ond-re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190210t173602819z |
category | steem |
json_metadata | "{\"app\":\"partiko\",\"client\":\"android\"}" |
created | 2019-02-10 17:36:03 |
last_update | 2019-02-10 17:36:03 |
depth | 1 |
children | 2 |
last_payout | 2019-02-17 17:36: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 | 224 |
author_reputation | 2,599,620,590,431 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,672,701 |
net_rshares | 0 |
Cheetah might pop up if you copy and paste a lot of text, that's what she does -- finds copy and paste. She doesn't flag though, just comments. Steemcleaners would only come after you if you're performing some kind of fraud like identity theft or stealing other peoples content. Regardless of which platform you use, the above apply.
author | anyx |
---|---|
permlink | re-ond-ond-re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190210t230422476z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-02-10 23:04:21 |
last_update | 2019-02-10 23:04:21 |
depth | 2 |
children | 1 |
last_payout | 2019-02-17 23:04: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 | 335 |
author_reputation | 98,676,136,100,181 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,684,899 |
net_rshares | 0 |
Я убью тебя конченый пендос, перережу тебе глотку.
author | asket13 |
---|---|
permlink | prz24w |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-05-23 19:29:24 |
last_update | 2019-05-23 19:29:24 |
depth | 3 |
children | 0 |
last_payout | 2019-05-30 19:29: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 | 50 |
author_reputation | -988,818,064,646 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 85,377,394 |
net_rshares | -21,363,697 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cheetah | 0 | -21,363,697 | -0.08% |
This post has been included in the latest edition of [**SoS Daily News**](https://steemit.com/steem/@pennsif/sosdailynewsnewsaboutthestateofsteem8february2019-3kapdz8agz) - a digest of all you need to know about the State of Steem.
author | pennsif |
---|---|
permlink | re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190210t004231876z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/steem/@pennsif/sosdailynewsnewsaboutthestateofsteem8february2019-3kapdz8agz"],"app":"steemit/0.1"} |
created | 2019-02-10 00:42:33 |
last_update | 2019-02-10 00:42:33 |
depth | 1 |
children | 0 |
last_payout | 2019-02-17 00:42: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 | 232 |
author_reputation | 636,410,097,572,565 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,641,884 |
net_rshares | 0 |
### Congratulations @anyx you won the 11th place on Who makes the difference on Steem Poll! https://steemit.com/dpoll/@psos/and-the-winner-is-s9nlytcf  Posted using [Partiko Android](https://steemit.com/@partiko-android)
author | psos |
---|---|
permlink | psos-re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190226t204623292z |
category | steem |
json_metadata | {"app":"partiko","client":"android"} |
created | 2019-02-26 20:46:24 |
last_update | 2019-02-26 20:46:24 |
depth | 1 |
children | 0 |
last_payout | 2019-03-05 20:46: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 | 376 |
author_reputation | 39,092,181,285,787 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,458,329 |
net_rshares | 0 |
Nice work! Do you plan to release your router as open source so others can use and improve upon it?
author | reggaemuffin |
---|---|
permlink | re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190209t121305307z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-02-09 12:13:03 |
last_update | 2019-02-09 12:13:03 |
depth | 1 |
children | 2 |
last_payout | 2019-02-16 12:13:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.299 HBD |
curator_payout_value | 0.095 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 99 |
author_reputation | 37,964,839,695,531 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,615,914 |
net_rshares | 846,441,315,373 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anyx | 0 | 10,034,135,129 | 1% | ||
scaredycatguide | 0 | 97,923,878,661 | 83.2% | ||
cnfund | 0 | 62,737,433,517 | 15.85% | ||
elviento | 0 | 820,061,670 | 0.97% | ||
nolnocluap | 0 | 59,189,425,688 | 100% | ||
ribalinux | 0 | 14,007,400,530 | 20.24% | ||
upbloke | 0 | 72,803,316,160 | 100% | ||
sbi2 | 0 | 491,037,692,793 | 73.4% | ||
gritata | 0 | 37,887,971,225 | 100% |
Yep, definitely. It's not actually that complex, but it was basically designed directly for my stack... so I'll clean it up a little first then throw it on GitHub sometime soon.
author | anyx |
---|---|
permlink | re-reggaemuffin-re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190209t190317435z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-02-09 19:03:18 |
last_update | 2019-02-09 19:03:18 |
depth | 2 |
children | 0 |
last_payout | 2019-02-16 19:03:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.146 HBD |
curator_payout_value | 0.048 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 177 |
author_reputation | 98,676,136,100,181 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,632,043 |
net_rshares | 416,468,395,002 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
reggaemuffin | 0 | 416,468,395,002 | 4% |
Хули ты жопу лижишь членосос.
author | asket13 |
---|---|
permlink | prz20k |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-05-23 19:26:48 |
last_update | 2019-05-23 19:26:48 |
depth | 2 |
children | 0 |
last_payout | 2019-05-30 19:26: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 | 29 |
author_reputation | -988,818,064,646 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 85,377,314 |
net_rshares | -21,363,697 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cheetah | 0 | -21,363,697 | -0.08% |
Great work! Just tested ur node in SteemWallet, works flawless. (as expected :D) - nice that you redirect any non hivemind calls to the "regular" full node. https://cdn.steemitimages.com/DQmRNG5rra1U7pEMyyqW7S5YBYLkFSYSbYayUPq5XumbS2D/IMG_A59A26C2F7F7-1.jpeg
author | roelandp |
---|---|
permlink | re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190208t233705111z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1","image":["https://cdn.steemitimages.com/DQmRNG5rra1U7pEMyyqW7S5YBYLkFSYSbYayUPq5XumbS2D/IMG_A59A26C2F7F7-1.jpeg"]} |
created | 2019-02-08 23:37:06 |
last_update | 2019-02-08 23:37:30 |
depth | 1 |
children | 1 |
last_payout | 2019-02-15 23:37:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.071 HBD |
curator_payout_value | 0.023 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 260 |
author_reputation | 662,943,317,989,456 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,594,848 |
net_rshares | 204,953,674,975 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anyx | 0 | 204,953,674,975 | 20% |
Great! Do you actually use hivemind calls though? If not just use anyx.io :)
author | anyx |
---|---|
permlink | re-roelandp-re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190208t234628475z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-02-08 23:46:27 |
last_update | 2019-02-08 23:46:27 |
depth | 2 |
children | 0 |
last_payout | 2019-02-15 23:46: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 | 76 |
author_reputation | 98,676,136,100,181 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,595,173 |
net_rshares | 0 |
That's an amazing infrastructure! Community on Steem should vote for you! Snax wants Steem to grow, and to become larger than ever before and we want to help Steem. People can earn more money on their posts, with Snax and without leaving Steem or other socials: https://steemit.com/steemit/@snaxteam/decentralizing-social-media-rewards-steem-and-snax-comparison
author | snaxteam |
---|---|
permlink | re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190312t194756095z |
category | steem |
json_metadata | {"tags":["steem"],"links":["https://steemit.com/steemit/@snaxteam/decentralizing-social-media-rewards-steem-and-snax-comparison"],"app":"steemit/0.1"} |
created | 2019-03-12 19:47:57 |
last_update | 2019-03-12 19:47:57 |
depth | 1 |
children | 0 |
last_payout | 2019-03-19 19:47: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 | 362 |
author_reputation | 13,750,477,203,164 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,165,988 |
net_rshares | 0 |
thanks so much for running a node, I see its an option on steempeak and good to know there are other options out there instead of using steemit's api.
author | solominer |
---|---|
permlink | re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190521t103203844z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-05-21 10:32:06 |
last_update | 2019-05-21 10:32:06 |
depth | 1 |
children | 0 |
last_payout | 2019-05-28 10:32: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 | 150 |
author_reputation | 1,871,172,269,679,554 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 85,236,889 |
net_rshares | 0 |
Dear anyx: We are SteemBet, the next generation STEEM based gaming platform. We are honored to invite you to join our first fantastic dice game, which is just the beginning of SteemBet game series. Our dividend system has now launched. The prize pool has already accumulated 2,000 STEEM and more than 60 players have participated in staking mining token SBT. A huge reward of 40,000 STEEM is awaiting! Join us NOW with other 500 STEEM users to loot HUGE dividend reward!! SteemBet Team Official Website https://steem-bet.com Discord Server https://discord.gg/95cBN3W Telegram Group https://t.me/steembet
author | steem-bet |
---|---|
permlink | steem-bet-re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190323t071127134z |
category | steem |
json_metadata | {"app":"partiko"} |
created | 2019-03-23 07:11:27 |
last_update | 2019-03-23 07:11:27 |
depth | 1 |
children | 0 |
last_payout | 2019-03-30 07:11: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 | 608 |
author_reputation | 18,461,529,615,904 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,786,360 |
net_rshares | 0 |
Congratulations @anyx! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) : <table><tr><td>https://steemitimages.com/60x70/http://steemitboard.com/@anyx/payout.png?201902152335</td><td>You received more than 30000 as payout for your posts. Your next target is to reach a total payout of 40000</td></tr> </table> <sub>_[Click here to view your Board](https://steemitboard.com/@anyx)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> **Do not miss the last post from @steemitboard:** <table><tr><td><a href="https://steemit.com/valentine/@steemitboard/valentine-challenge-love-is-in-the-air"><img src="https://steemitimages.com/64x128/http://i.cubeupload.com/LvDzr5.png"></a></td><td><a href="https://steemit.com/valentine/@steemitboard/valentine-challenge-love-is-in-the-air">Valentine challenge - Love is in the air!</a></td></tr></table> > Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
author | steemitboard |
---|---|
permlink | steemitboard-notify-anyx-20190216t003835000z |
category | steem |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2019-02-16 00:38:33 |
last_update | 2019-02-16 00:38:33 |
depth | 1 |
children | 0 |
last_payout | 2019-02-23 00:38: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 | 1,176 |
author_reputation | 38,975,615,169,260 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,929,536 |
net_rshares | 0 |
Cool stuff. We need people like you to keep Steem working as it grows. Thanks for all your work. <sub>Posted using [Steeve](https://www.steeve.app/@steeveapp), an AI-powered Steem interface</sub>
author | steevc |
---|---|
permlink | re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190209t102121290z |
category | steem |
json_metadata | {"tags":["steem"],"format":"markdown","app":"steeve/0.1"} |
created | 2019-02-09 10:21:27 |
last_update | 2019-02-09 10:21:27 |
depth | 1 |
children | 0 |
last_payout | 2019-02-16 10:21:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.101 HBD |
curator_payout_value | 0.033 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 196 |
author_reputation | 1,391,338,714,792,128 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,612,873 |
net_rshares | 287,662,884,115 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anyx | 0 | 205,772,605,629 | 20% | ||
fulltimebot71 | 0 | 40,944,798,250 | 32.99% | ||
fulltimebot72 | 0 | 40,945,480,236 | 32.98% |
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-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-vote-beneficiaries |
category | steem |
json_metadata | {"tags":["steem"],"app":"steeve/0.1","format":"markdown"} |
created | 2019-02-09 19:37:21 |
last_update | 2019-02-09 19:37:21 |
depth | 1 |
children | 0 |
last_payout | 2019-02-16 19: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 | 164 |
author_reputation | 1,016,697,284,644 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,633,064 |
net_rshares | 1,120,460,384 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
javirid | 0 | 1,120,460,384 | 10% |
ǝɹǝɥ sɐʍ ɹoʇɐɹnƆ pɐW ǝɥ┴
author | themadcurator |
---|---|
permlink | re-updates-to-anyx-io-infrastructure-including-hivemind-support-20190209t131804 |
category | steem |
json_metadata | "" |
created | 2019-02-09 13:18:06 |
last_update | 2019-02-09 13:18:06 |
depth | 1 |
children | 0 |
last_payout | 2019-02-16 13:18:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.385 HBD |
curator_payout_value | 0.123 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 26 |
author_reputation | 53,938,302,377,048 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,618,165 |
net_rshares | 1,090,959,927,635 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
berniesanders | 0 | 49,405,158,971 | 5% | ||
anyx | 0 | 70,635,871,458 | 7% | ||
thecyclist | 0 | 8,486,135,066 | 5% | ||
gingerninja | 0 | 1,193,893,570 | 5% | ||
sdibot | 0 | 159,245,224 | 5% | ||
ngc | 0 | 473,736,443,182 | 5% | ||
cheneats | 0 | 1,254,578,776 | 5% | ||
z8teyb289qav9z | 0 | 125,915,787,213 | 2% | ||
abusereports | 0 | 209,022,641,680 | 10% | ||
writesbackwards | 0 | 148,328,443,647 | 50% | ||
leonnolan24 | 0 | 152,272,574 | 5% | ||
ascorphat | 0 | 1,882,519,435 | 2.5% | ||
trailreward | 0 | 696,872,450 | 6% | ||
sehamabashir | 0 | 90,064,389 | 100% |
Nice update!
author | themarkymark |
---|---|
permlink | re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190208t235905496z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1"} |
created | 2019-02-08 23:59:06 |
last_update | 2019-02-08 23:59:06 |
depth | 1 |
children | 0 |
last_payout | 2019-02-15 23:59:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.071 HBD |
curator_payout_value | 0.023 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 12 |
author_reputation | 1,779,993,241,050,037 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 79,595,565 |
net_rshares | 202,896,069,273 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
anyx | 0 | 202,707,583,076 | 20% | ||
steem.doctor | 0 | 188,486,197 | 100% |
Cheetah-appeals Hello @Anyx, we got your notice on our post today. It is quite unfortunate that we had complained about your comment and explained who we are and how we need to report to our delegators updates, membership status, number of SP the community has, leased SP and other details to you about 2 weeks ago when you first sent your comment. You stopped sending the comments but we are surprised again to see you comment on our post today. We ask that you take a look at our post and remove it from your cheetah list. We understand what you do but you can't be harming other good initiatives that are helping to build the Steem community. We will appreciate it is this is done urgently. Thank you!
author | upvotebuilders |
---|---|
permlink | re-anyx-updates-to-anyx-io-infrastructure-including-hivemind-support-20190329t172110906z |
category | steem |
json_metadata | {"tags":["steem"],"app":"steemit/0.1","users":["anyx"]} |
created | 2019-03-29 17:20:30 |
last_update | 2019-03-29 17:20:54 |
depth | 1 |
children | 0 |
last_payout | 2019-04-05 17: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 | 707 |
author_reputation | 7,281,949,407,716 |
root_title | "Updates to anyx.io Infrastructure (Including Hivemind Support)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 82,161,871 |
net_rshares | 0 |