One area of Hive code where BlockTrades has spent a lot of time recently is optimization of hivemind. Hivemind servers supply most of the data used by web sites such as hive.blog and peakd.com. So optimizing the performance of Hivemind helps speed up almost all frontends for Hive, and also allows the network to operate reliably as we get more users. # Data flow in the Hive network  In the diagram above, hived creates the Hive blockchain from user transaction data, and it does directly serve up some data, but the majority of data it produces is sent to a hivemind server. # Why was Hivemind created? User interfaces (e.g. websites and wallets) get most of their data from hivemind instead of hived. Hivemind is designed to make it easy to access blockchain data in many different ways. Originally, user interfaces got all their blockchain data directly from hived nodes. But this caused several problems: 1) many programmers were not skilled in the software language (C++) that hived is written in, making it more difficult to add new features to the Hive network, 2) changes to that code could result in bugs that broke the blockchain servers themselves, and 3) having the hive network nodes serve up this data directly to many users put unnecessary loading on the most critical software component in the network. Hivemind was created to solve the aforementioned problems. Hivemind is written using technologies that are familiar to many programmers (Python and SQL). If a hivemind server fails due to a bug (this has happened three times already in the past few months), the blockchain continues to run smoothly. And finally, Hivemind servers run in a separate process (and sometimes completely separate servers) from hived, tremendously reducing the data access load on hived. # Making Hivemind better Below is a short summary of the work we’ve been doing to improve Hivemind in the past couple of months: ## Making Hivemind faster Hive-based web sites make calls to Hivemind to get lists of posts, lists of voters, etc. If one of these calls takes several seconds to complete, the user will have to sit there waiting for the data to be delivered to them. On hive.blog, for example, this delay manifests as as a “spinning wheel” to let the user know that the data is coming, but hasn’t arrived yet. Every web user is familiar with delays of this type, but they really make web sites less fun to use, and if the delays get too long, users will get frustrated and leave a site. To reduce these annoying slowdowns, one of the main things we did in this round of hivemind improvements was make hivemind much faster. For example, during benchmark measurements of production installations of hivemind at api.hive.blog, some API calls could take as long as 6-30 seconds to complete (that wheel could spin for a long time occasionally). At this point, with our new optimizations running on that same server, the slowest hivemind call in our benchmark measurements completes within less than 0.1 seconds on average. We optimized the overall average API call execution time by a factor of 10 or more. For some of the most time consuming calls that we spent extra time optimizing, we increased the speed by a factor of 20 or more. We’ll be publishing the full benchmarks in a separate post as they may be useful to frontends developers interested in details on the updated performance of individual API calls. ## Improvements to Hivemind API We’ve modified Hivemind API call functionality to allow the creation of [decentralized blacklists](https://hive.blog/hive-102930/@blocktrades/hive-improvement-proposal-decentralize-blacklists-on-hive ). I’ll be posting technical changes associated with the new API call in the next few days to allow existing web sites to take advantage of this new feature. ## Migrated more functionality from Hived to Hivemind We were able to move a lot of the comment data that was previously stored as state information (stored in memory) from hived to hivemind. This dramatically reduced the RAM memory requirements needed to operate a full Hive API node and it also speeded up the response time of API calls for this data. Most recently, we made a similar change to move inactive voting data from hived to hivemind, once again dramatically reducing RAM requirements for hived. Note that in both of the above cases, there was no corresponding increase in RAM used by hivemind from this re-partitioning of functionality, because hivemind stores its information on disk in a database. As a result of the reduced memory requirements, an entire high-performance full API node can now be run on a single 64GB server, cutting costs by 50% or more (cloud service providers charge a significant premium for servers with large memory requirements, and while it was possible to split a full API node across two servers with less memory, this increased server maintenance costs). Also, because of the speedups in hivemind’s API performance, that same lower cost server can now serve over 10 times the traffic that a single hivemind could previously be support. So in practice, between the reduced memory requirement and increased ability to serve API traffic, the overall cost of running Hive servers has been reduced by a factor of 20 or more. To highlight the importance of this change, my recollection is that Steemit Inc was at one point spending over $90K per month to pay for leased servers on AWS (Amazon’s cloud platform). ## Faster hivemind sync times When someones wants to setup a new hivemind API node, they have to first fill it with data from the blockchain. This process is known as syncing, because you are synchronizing the data in the hivemind database to match that of historical data already stored in the blockchain blocks. Previously, syncing a hivemind database was a multi-day process and this time only increased when we migrated more data from hived to hivemind, so we've also been working on increasing the speed at which hivemind syncs. We don't have final numbers yet, but we've already speeded up syncing by at least a factor of 3 (despite the increased amount of data being synced). ## Making Hivemind easier to improve ### Added database migration software Hivemind stores its data in a SQL database. As we improve hivemind, it’s often necessary to change the way data is organized into tables in its database (the database “schema”). By tracking changes in the way this data is stored, we can sometimes upgrade existing installations of hivemind without requiring the database tables to be reorganized and refilled with data from scratch. We added support for [Alembic](https://www.pythoncentral.io/migrate-sqlalchemy-databases-alembic/) as a means of tracking and automatically making changes to a hivemind installation’s database when hivemind is upgraded. Alembic also supports rollbacks, allowing a database to be downgraded to a previous version, if a new version of Hivemind has problems that require reverting to a previous version of the Hivemind software. ### Refactored Hivemind code base A lot of source code in Hivemind was repeated in several places, with only small changes in each place, so we spent some time doing code refactoring. Code refactoring is the process of identifying common repeated blocks of code and consolidating that code to a single place. Code refactoring makes it easier to make future improvements to the code, because when code is repeated in many places, it’s easy to forget to make a change in each place (which results in software bugs). # Looking ahead Now that we’ve moved more data over to hivemind, it becomes easier to add new API methods to look at that data in different ways. And since those API methods are written using Python and SQL, and the changes are isolated from the core blockchain code and can't impact the financial security of the network, it really expands the pool of available developers who can safely create custom API methods for Hive. This ease of creation for new API methods, combined with the ability to create “custom_json” transactions, creates a world of possibilities for Hive-based applications (as an example, the splinterlands game play is implemented using custom_json transactions). And the increased performance of hivemind means it will be easier than ever to create apps that scale to large numbers of users. I plan to write a followup post soon that explores some of these possibilities more in depth, as I think this capability will play a central role in the future of Hive.
author | blocktrades |
---|---|
permlink | a-preview-of-hivemind-improvements |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1","format":"markdown","image":["https://images.hive.blog/DQmSnJyiUhVw6vf927ngeeHKXY6jSpWMuWUUwZthhwjCrMg/Hive%20construct.png"],"links":["https://hive.blog/hive-102930/@blocktrades/hive-improvement-proposal-decentralize-blacklists-on-hive","https://www.pythoncentral.io/migrate-sqlalchemy-databases-alembic/"],"tags":["hive","blocktrades","hivemind","development"]} |
created | 2020-06-30 23:22:00 |
last_update | 2020-06-30 23:46:24 |
depth | 0 |
children | 45 |
last_payout | 2020-07-07 23:22:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 60.986 HBD |
curator_payout_value | 35.591 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 8,673 |
author_reputation | 1,294,216,366,091,739 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,269,301 |
net_rshares | 295,030,357,678,908 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
blocktrades | 0 | 16,740,748,807,231 | 9% | ||
enki | 0 | 10,236,945,361,679 | 75% | ||
tombstone | 0 | 379,783,011,215 | 18% | ||
pnc | 0 | 76,659,313,664 | 100% | ||
kingscrown | 0 | 2,319,118,874,912 | 30% | ||
flemingfarm | 0 | 132,284,143,785 | 80% | ||
acidyo | 0 | 12,659,926,670,213 | 100% | ||
klye | 0 | 95,055,226,409 | 100% | ||
justtryme90 | 0 | 22,495,112,933 | 13.5% | ||
hedge-x | 0 | 53,817,934,328 | 100% | ||
mark-waser | 0 | 319,618,212,737 | 100% | ||
gtg | 0 | 19,898,163,814,897 | 100% | ||
gerber | 0 | 1,418,463,982,024 | 21% | ||
kosimoos | 0 | 534,360,971 | 50% | ||
heiditravels | 0 | 467,982,178 | 27% | ||
good-karma | 0 | 1,202,138,103,549 | 100% | ||
ezzy | 0 | 1,636,873,221,451 | 21% | ||
rxhector | 0 | 22,197,713,486 | 100% | ||
yury-vas | 0 | 317,962,710,744 | 100% | ||
ssjsasha | 0 | 730,324,901,276 | 100% | ||
nascimentoab | 0 | 562,963,308 | 13.5% | ||
luisucv34 | 0 | 259,742,567 | 27% | ||
inertia | 0 | 925,093,989,047 | 100% | ||
kendewitt | 0 | 317,459,301,044 | 100% | ||
arcange | 0 | 3,048,215,415,271 | 100% | ||
deanliu | 0 | 2,866,685,289,590 | 100% | ||
exyle | 0 | 2,092,266,974,936 | 21% | ||
sharker | 0 | 4,840,342,024 | 13.06% | ||
raphaelle | 0 | 1,611,422,374 | 2% | ||
moon32walker | 0 | 579,555,001,836 | 100% | ||
greenman | 0 | 80,026,910,432 | 100% | ||
ace108 | 0 | 169,974,367,532 | 6% | ||
kibela | 0 | 4,309,744,058 | 13.75% | ||
pipokinha | 0 | 48,021,513,758 | 100% | ||
shaka | 0 | 8,205,717,506,886 | 100% | ||
timcliff | 0 | 1,085,862,147,880 | 100% | ||
laoyao | 0 | 47,408,117,332 | 100% | ||
somebody | 0 | 3,330,552,250 | 100% | ||
midnightoil | 0 | 166,372,502,251 | 100% | ||
achim86 | 0 | 66,835,768,030 | 25% | ||
alinalazareva | 0 | 538,808,177 | 10% | ||
xiaohui | 0 | 941,295,568,880 | 100% | ||
oflyhigh | 0 | 5,142,715,788,911 | 100% | ||
gargon | 0 | 12,629,251,432 | 27% | ||
pgarcgo | 0 | 432,870,932,785 | 27% | ||
wartrapa | 0 | 150,283,740,757 | 27% | ||
shanghaipreneur | 0 | 65,038,331,531 | 100% | ||
jrcornel | 0 | 7,360,108,283,876 | 100% | ||
fooblic | 0 | 29,973,815,602 | 100% | ||
bryan-imhoff | 0 | 579,207,722,194 | 50% | ||
fingolfin | 0 | 69,398,964,007 | 100% | ||
mrosenquist | 0 | 78,760,306,668 | 20% | ||
yulan | 0 | 16,734,987,097 | 100% | ||
sc-steemit | 0 | 271,819,867,805 | 100% | ||
anech512 | 0 | 8,928,837,066 | 25% | ||
frankbacon | 0 | 115,484,919,418 | 100% | ||
kranga | 0 | 70,899,279 | 27% | ||
helene | 0 | 1,238,280,805,575 | 100% | ||
lemouth | 0 | 1,797,690,061,659 | 100% | ||
albagargon | 0 | 2,597,187,697 | 27% | ||
ethansteem | 0 | 87,135,952,650 | 100% | ||
netaterra | 0 | 422,084,060,067 | 18.9% | ||
someguy123 | 0 | 1,305,595,701,360 | 100% | ||
mattclarke | 0 | 1,921,686,785,711 | 100% | ||
themonetaryfew | 0 | 458,181,548,818 | 100% | ||
foxkoit | 0 | 166,869,319,798 | 89.4% | ||
uwelang | 0 | 222,502,763,908 | 20% | ||
titin | 0 | 74,868,993,763 | 27% | ||
digital-wisdom | 0 | 603,810,771,719 | 100% | ||
ethical-ai | 0 | 2,121,491,666 | 100% | ||
cornerstone | 0 | 3,084,621,136,812 | 50% | ||
titusfrost | 0 | 295,274,408,418 | 100% | ||
jwaser | 0 | 42,901,422,710 | 100% | ||
phusionphil | 0 | 29,044,708,725 | 66.6% | ||
bwaser | 0 | 6,753,413,517 | 100% | ||
mjhomb | 0 | 336,769,831,266 | 100% | ||
abh12345 | 0 | 1,516,115,190,625 | 50% | ||
jgcastrillo19 | 0 | 148,320,617,712 | 27% | ||
justyy | 0 | 133,426,563,083 | 15% | ||
ellepdub | 0 | 1,831,188,137 | 100% | ||
michelle.gent | 0 | 101,919,334,527 | 100% | ||
herpetologyguy | 0 | 179,765,506,736 | 100% | ||
rafarosado | 0 | 1,881,285,107 | 2.7% | ||
morgan.waser | 0 | 14,487,683,154 | 100% | ||
cuvi | 0 | 2,792,079,223 | 5.4% | ||
teo | 0 | 14,417,560,690 | 27% | ||
ssekulji | 0 | 44,311,329,764 | 100% | ||
handyman | 0 | 4,526,790,738 | 100% | ||
lighteye | 0 | 138,809,897,467 | 100% | ||
strong-ai | 0 | 2,242,734,811 | 100% | ||
vannour | 0 | 82,334,182,972 | 100% | ||
techslut | 0 | 279,106,858,693 | 50% | ||
jenkinrocket | 0 | 61,520,107,074 | 96% | ||
jaybird | 0 | 188,555,072,416 | 100% | ||
slider2990 | 0 | 104,282,338,988 | 50% | ||
dulcinea | 0 | 10,173,514,500 | 27% | ||
mdcomes | 0 | 21,592,883,139 | 27% | ||
steemcultures | 0 | 1,343,195,041 | 100% | ||
cervantes | 0 | 2,146,777,513,010 | 27% | ||
steemworld | 0 | 3,715,016,636 | 100% | ||
creat | 0 | 1,495,902,445 | 100% | ||
mapesa | 0 | 1,979,087,065 | 50% | ||
judasp | 0 | 446,813,758,346 | 100% | ||
aneblueberry | 0 | 543,450,863 | 27% | ||
felix.herrmann | 0 | 66,681,409,337 | 59% | ||
edb | 0 | 162,654,853,691 | 50% | ||
trans-juanmi | 0 | 2,684,219,049 | 6.75% | ||
cisah | 0 | 1,479,123,765 | 100% | ||
devilwsy | 0 | 3,530,655,597 | 100% | ||
janiceting | 0 | 3,534,065,706 | 100% | ||
technoprogressiv | 0 | 1,076,227,557 | 100% | ||
ixindamix | 0 | 89,286,873,272 | 50% | ||
cardboard | 0 | 10,519,105,308 | 100% | ||
v4vapid | 0 | 13,592,206,668,341 | 100% | ||
lovemetouchme2 | 0 | 16,251,429,924 | 13% | ||
pedir-museum | 0 | 2,580,618,185 | 100% | ||
chesatochi | 0 | 568,356,269,181 | 100% | ||
steemnet | 0 | 1,521,197,232 | 100% | ||
blackbunny | 0 | 74,420,311,188 | 100% | ||
rahul.stan | 0 | 44,051,143,331 | 50% | ||
mauriciozoch | 0 | 642,434,617 | 13.5% | ||
ericwilson | 0 | 284,257,337,258 | 100% | ||
homo.steemiensis | 0 | 1,589,050,874 | 100% | ||
kalita27 | 0 | 3,012,479,428 | 100% | ||
aceh | 0 | 1,626,999,045 | 100% | ||
ripperone | 0 | 1,779,761,535,542 | 30% | ||
pqlenator | 0 | 191,050,186 | 100% | ||
silviabeneforti | 0 | 117,263,052,082 | 100% | ||
mendezand | 0 | 15,298,941,638 | 27% | ||
lingfei | 0 | 82,548,314,021 | 100% | ||
tarazkp | 0 | 2,093,203,160,921 | 50% | ||
mariaalmeida | 0 | 13,201,967,730 | 100% | ||
noemilunastorta | 0 | 66,878,296,634 | 60% | ||
sudutpandang | 0 | 9,494,393,338 | 100% | ||
yyyy | 0 | 463,898,717 | 100% | ||
ibiza | 0 | 4,940,296 | 27% | ||
teacher | 0 | 5,011,438 | 27% | ||
evildeathcore | 0 | 15,439,724,546 | 100% | ||
gifmaster | 0 | 40,291,407,457 | 100% | ||
tincho | 0 | 912,961,998 | 27% | ||
travelnepal | 0 | 2,225,660,193 | 13.5% | ||
fidel-castro | 0 | 1,138,945,326 | 27% | ||
mariacherries | 0 | 2,849,123,091 | 21.6% | ||
louisthomas | 0 | 236,675,160,708 | 100% | ||
lordneroo | 0 | 1,840,830,505 | 9.7% | ||
daniel.dalo | 0 | 995,782,823 | 13.5% | ||
dhimmel | 0 | 5,662,358,607,559 | 100% | ||
dickturpin | 0 | 30,526,454,276 | 100% | ||
lizanomadsoul | 0 | 36,787,404,784 | 13.5% | ||
munzir | 0 | 1,693,075,318 | 100% | ||
frankk | 0 | 9,997,168,294 | 10% | ||
stimialiti | 0 | -5,953,163,689 | -44% | ||
neymarjr | 0 | 5,011,436 | 27% | ||
dune69 | 0 | 71,778,594,812 | 21% | ||
smasssh | 0 | 1,075,055,928,597 | 30% | ||
frankydoodle | 0 | 1,456,876,394 | 13.5% | ||
mes | 0 | 173,952,834,039 | 100% | ||
broncnutz | 0 | 7,544,079,777,970 | 100% | ||
schlees | 0 | 79,003,019,373 | 20% | ||
yeaho | 0 | 44,680,843,282 | 20% | ||
jerrybanfield | 0 | 957,371,628,477 | 100% | ||
mpandrew | 0 | 139,929,020 | 27% | ||
drag33 | 0 | 284,035,828,226 | 100% | ||
mys | 0 | 3,109,809,921 | 1% | ||
kilianmiguel | 0 | 4,650,729,884 | 27% | ||
nrg | 0 | 6,575,324,346,501 | 100% | ||
fredrikaa | 0 | 1,013,995,137,410 | 100% | ||
varunpinto | 0 | 4,024,081,268 | 100% | ||
juanfb | 0 | 3,031,451,001 | 20.25% | ||
jkj | 0 | 10,403,015,511 | 27% | ||
improv | 0 | 902,978,848 | 1.5% | ||
yehey | 0 | 132,367,103,559 | 13.5% | ||
masterthematrix | 0 | 118,772,739,833 | 100% | ||
coquiunlimited | 0 | 1,587,707,036 | 13.5% | ||
christianytony | 0 | 29,237,035,783 | 100% | ||
exec | 0 | 250,716,168,860 | 100% | ||
eval | 0 | 858,184,907 | 100% | ||
taitux | 0 | 700,565,649 | 27% | ||
mxzn | 0 | 2,443,302,691 | 5% | ||
steeminator3000 | 0 | 32,153,768,149 | 100% | ||
enjar | 0 | 541,952,663,569 | 100% | ||
swaraj | 0 | 46,509,142,118 | 100% | ||
maxer27 | 0 | 126,853,034,867 | 25% | ||
wf9877 | 0 | 172,298,634,639 | 100% | ||
mahdiyari | 0 | 464,815,493,824 | 100% | ||
magoia | 0 | 986,066,318 | 27% | ||
spanishchef | 0 | 3,989,470,983 | 27% | ||
soymanu | 0 | 55,662,231 | 27% | ||
jingdol | 0 | 442,155,652,058 | 100% | ||
saintopic | 0 | 760,001,794 | 50% | ||
spectrumecons | 0 | 4,667,104,311,662 | 100% | ||
jayna | 0 | 32,255,209,222 | 10% | ||
ew-and-patterns | 0 | 229,845,511,133 | 9% | ||
techken | 0 | 3,010,570,893 | 5% | ||
whd | 0 | 1,118,013,071 | 1% | ||
freecreative | 0 | 729,122,736 | 27% | ||
netuoso | 0 | 3,293,774,558,860 | 100% | ||
d-pend | 0 | 2,775,907,651 | 0.1% | ||
theouterlight | 0 | 412,883,949,541 | 100% | ||
gunthertopp | 0 | 116,471,942,170 | 2.7% | ||
furious-one | 0 | 17,448,266,766 | 20% | ||
gniksivart | 0 | 5,757,829,051 | 5% | ||
fnux | 0 | 8,544,340,213 | 100% | ||
geekgirl | 0 | 1,107,659,671,889 | 100% | ||
benedict08 | 0 | 185,495,832,434 | 50% | ||
moneymatchgaming | 0 | 27,930,988,986 | 50% | ||
mcoinz79 | 0 | 827,292,644 | 1% | ||
raili | 0 | 736,906,181 | 10% | ||
runicar | 0 | 82,049,318,910 | 9.7% | ||
violetmed | 0 | 78,661,714,012 | 13.5% | ||
vallesleoruther | 0 | 86,597,184,718 | 100% | ||
goldkey | 0 | 71,001,782,930 | 27% | ||
grecki-bazar-ewy | 0 | 54,374,565,925 | 50% | ||
rafalski | 0 | 1,435,112,648 | 11.76% | ||
drorion | 0 | 19,538,643,722 | 100% | ||
sannur | 0 | 1,767,124,380 | 100% | ||
codingdefined | 0 | 17,125,658,333 | 6% | ||
tsoldovieri | 0 | 886,611,696 | 5.4% | ||
reimerlin | 0 | 2,245,773,214 | 27% | ||
shitsignals | 0 | 7,427,555,927 | 21% | ||
attajuttjj | 0 | 2,369,274,576 | 100% | ||
themarkymark | 0 | 2,110,025,677,041 | 10% | ||
sanjeevm | 0 | 301,260,686,550 | 30% | ||
marian0 | 0 | 15,645,914,582 | 100% | ||
yoogyart | 0 | 20,434,562,184 | 51% | ||
steemvote | 0 | 1,432,660,579,686 | 100% | ||
vikisecrets | 0 | 365,103,356,120 | 30% | ||
investingpennies | 0 | 270,666,252,388 | 100% | ||
supriya1993 | 0 | 7,998,007,948 | 15% | ||
fdataline77 | 0 | 824,496,253 | 40% | ||
val.halla | 0 | 738,333,381 | 2.7% | ||
jeanlucsr | 0 | 21,233,271,291 | 100% | ||
opheliapoe | 0 | 625,708,641 | 13.5% | ||
stinawog | 0 | 1,509,837,353 | 10% | ||
horpey | 0 | 77,082,463,156 | 100% | ||
techtek | 0 | 45,035,121,686 | 100% | ||
shanibeer | 0 | 76,141,482,792 | 7% | ||
appleskie | 0 | 15,886,858,062 | 100% | ||
noticias | 0 | 108,501,806 | 27% | ||
pardeepkumar | 0 | 18,945,531,027 | 9.7% | ||
my451r | 0 | 26,360,188,029 | 100% | ||
gabox | 0 | 6,538,496,584 | 6.75% | ||
felander | 0 | 92,566,442,844 | 21% | ||
santigs | 0 | 26,592,875,605 | 74% | ||
sportsgeek | 0 | 1,707,249,537 | 50% | ||
musicgeek | 0 | 4,927,154,935 | 50% | ||
marketinggeek | 0 | 1,035,961,071 | 50% | ||
svdsdragunov | 0 | 21,489,521,458 | 100% | ||
coruscate | 0 | 395,642,001,119 | 100% | ||
tipu | 0 | 25,157,365,783,251 | 50.01% | ||
jaalig | 0 | 1,285,417,032 | 90% | ||
kimzwarch | 0 | 9,039,143,696 | 4% | ||
redouanemez | 0 | 222,709,672,783 | 100% | ||
accelerator | 0 | 46,546,072,919 | 5% | ||
buildawhale | 0 | 4,993,403,935,377 | 10% | ||
dinocreative | 0 | 0 | 27% | ||
fersher | 0 | -5,888,458,279 | -15% | ||
artemisjane26 | 0 | 853,948,895 | 27% | ||
justinparke | 0 | 3,005,909,173 | 3% | ||
yogacoach | 0 | 8,172,036,595 | 10.5% | ||
drax | 0 | 450,851,316,068 | 100% | ||
cesinfenianos | 0 | 5,585,385,895 | 100% | ||
therealwolf | 0 | 16,671,829,225,401 | 60% | ||
deathwing | 0 | 21,833,500,001 | 21% | ||
cervantes.one | 0 | 1,418,279,759,757 | 27% | ||
revisesociology | 0 | 780,549,902,133 | 70% | ||
sandeep126 | 0 | 303,966,322,027 | 100% | ||
thatterrioguy | 0 | 1,092,102,275 | 100% | ||
jasonmunapasee | 0 | 3,626,507,442 | 100% | ||
afrikablr | 0 | 9,889,823,705 | 100% | ||
calimeatwagon | 0 | 5,992,426,860 | 50% | ||
simonmaz | 0 | 2,546,830,268 | 10% | ||
makerhacks | 0 | 10,367,337,808 | 10% | ||
krevasilis | 0 | 171,436,907,172 | 100% | ||
meno | 0 | 218,387,059,246 | 13.5% | ||
termitemusic | 0 | 37,977,776,216 | 100% | ||
maastro | 0 | 1,329,366,287 | 15% | ||
afukichi | 0 | 11,649,325,870 | 100% | ||
dmilliz | 0 | 161,286,292,048 | 100% | ||
steemseph | 0 | 79,051,980,386 | 100% | ||
romiferns | 0 | 583,924,060 | 100% | ||
vegoutt-travel | 0 | 52,309,529,756 | 100% | ||
liverpool-fan | 0 | 1,037,148,176 | 20% | ||
adwas33 | 0 | 695,487,084 | 100% | ||
battebilly | 0 | 2,993,386,899 | 13.5% | ||
arabisouri | 0 | 66,856,643,807 | 100% | ||
caladan | 0 | 78,011,629,607 | 21% | ||
mrsyria | 0 | 988,480,761 | 100% | ||
xr-hammergaming | 0 | 17,067,267,275 | 100% | ||
familyprotection | 0 | 858,273,324,991 | 100% | ||
hectgranate | 0 | 763,794,418 | 8.1% | ||
blockbrothers | 0 | 2,961,447,079 | 10.5% | ||
abujaga | 0 | 284,366,720 | 100% | ||
jexus77 | 0 | 1,465,801,728 | 100% | ||
eonwarped | 0 | 1,171,578,311,710 | 42% | ||
omstavan | 0 | 6,914,436,958 | 100% | ||
mtl1979 | 0 | 3,346,979,017 | 100% | ||
emrebeyler | 0 | 512,242,252,691 | 21% | ||
princesstj | 0 | 215,078,171 | 100% | ||
ladynazgool | 0 | 8,517,533,584 | 100% | ||
irynochka | 0 | 146,820,711 | 100% | ||
katerinaramm | 0 | 91,899,721,115 | 100% | ||
smartsteem | 0 | 6,101,430,424,888 | 60% | ||
shaotech | 0 | 240,964,407 | 100% | ||
cataluz | 0 | 17,094,104,025 | 27% | ||
docmarenkristina | 0 | 754,019,592 | 50% | ||
sarakey | 0 | 11,243,914,418 | 100% | ||
yazp | 0 | 2,104,861,131 | 100% | ||
suzn.poudel | 0 | 924,818,649 | 13.5% | ||
mytechtrail | 0 | 32,065,365,685 | 12.5% | ||
chintya | 0 | 715,442,819 | 25% | ||
cloris | 0 | 1,206,201,369 | 100% | ||
itchyfeetdonica | 0 | 79,618,341,734 | 100% | ||
machroezar | 0 | 876,429,830 | 50% | ||
obvious | 0 | 218,975,870,025 | 100% | ||
funtraveller | 0 | 5,530,157,256 | 15.75% | ||
nokodemion | 0 | 34,144,969,918 | 100% | ||
enjoyinglife | 0 | 2,199,736,329 | 9.7% | ||
spiritabsolute | 0 | 19,891,920,787 | 100% | ||
fourfourfun | 0 | 553,020,958 | 2.18% | ||
nadieramirez | 0 | 627,580,252 | 13.5% | ||
candyboy | 0 | 5,633,591,954 | 100% | ||
leynedayana | 0 | 328,818,309 | 100% | ||
upmyvote | 0 | 7,614,019,138 | 10% | ||
dechastre | 0 | 1,290,164,686 | 5.4% | ||
jim888 | 0 | 681,142,314,204 | 98% | ||
aussieninja | 0 | 121,242,281,232 | 100% | ||
bitcoinportugal | 0 | 3,216,690,663 | 100% | ||
stupid | 0 | 5,861,688,728 | 100% | ||
azmielbanjary | 0 | 720,861,466 | 13.5% | ||
gabrielatravels | 0 | 54,724,781,364 | 50% | ||
alexanderfluke | 0 | 33,109,940,717 | 5% | ||
bossel | 0 | 57,188,320,237 | 100% | ||
jongolson | 0 | 1,075,691,933,296 | 100% | ||
dudeontheweb | 0 | 2,878,798,789 | 60% | ||
adityajainxds | 0 | 10,824,117,614 | 10% | ||
bartheek | 0 | 65,079,191,537 | 25% | ||
lulafleur | 0 | 575,301,568 | 100% | ||
korinkrafting | 0 | 818,255,015 | 22.5% | ||
hijosdelhombre | 0 | 1,144,323,301 | 1.35% | ||
nealmcspadden | 0 | 423,551,092,460 | 21% | ||
curx | 0 | 34,606,201,977 | 10% | ||
mermaidvampire | 0 | 11,606,836,065 | 45% | ||
ahmedsy | 0 | 2,163,245,839 | 100% | ||
purefood | 0 | 335,266,186,220 | 21% | ||
soyrosa | 0 | 489,598,281,077 | 50% | ||
ricardo993 | 0 | 686,295,191 | 16.2% | ||
portugalcoin | 0 | 22,503,841,496 | 20% | ||
garvi | 0 | 779,263,772 | 2.7% | ||
jimcustodio | 0 | 1,860,723,544 | 50% | ||
shares | 0 | 490,554,990 | 13.5% | ||
jarvie | 0 | 732,766,621,192 | 100% | ||
jnmarteau | 0 | 1,942,462,735 | 13.5% | ||
philnewton | 0 | 1,762,386,483 | 25% | ||
kpopjera | 0 | 688,646,385 | 13.5% | ||
nnaraoh | 0 | 164,955,473,084 | 100% | ||
chronocrypto | 0 | 916,387,381,676 | 21% | ||
lunaticpandora | 0 | 940,493,142,979 | 100% | ||
holger80 | 0 | 1,049,517,411,665 | 25% | ||
shmoogleosukami | 0 | 5,072,841,404 | 100% | ||
chopiliart | 0 | 853,988,308 | 18.89% | ||
unconditionalove | 0 | 2,356,716,254 | 10.5% | ||
cadawg | 0 | 43,339,249,066 | 14.7% | ||
gavinatorial | 0 | 910,730,047 | 100% | ||
oredebby | 0 | 744,111,727 | 12.5% | ||
brayias | 0 | 679,410,886 | 100% | ||
kristves | 0 | 13,659,951,958 | 13% | ||
ericburgoyne | 0 | 6,617,449,461 | 50% | ||
tonkatonka | 0 | 754,151,392 | 100% | ||
happy-soul | 0 | 211,077,978,715 | 25% | ||
photohunter4 | 0 | 1,115,740,634 | 100% | ||
ofildutemps | 0 | 814,435,239 | 10% | ||
joso | 0 | 578,302,817 | 100% | ||
chungsu1 | 0 | 185,976,642,881 | 13.5% | ||
madefrance | 0 | 761,005,808 | 13.5% | ||
maxpatternman | 0 | 6,143,304,015 | 20% | ||
iamwhatiamnot | 0 | 358,993,732 | 100% | ||
onlavu | 0 | 22,485,765,889 | 100% | ||
ipromote | 0 | 2,762,379,983 | 10% | ||
asgarth | 0 | 3,295,287,073,333 | 100% | ||
flugschwein | 0 | 40,080,603,362 | 100% | ||
cyprianj | 0 | 5,095,473,744 | 27% | ||
cst90 | 0 | 47,691,964,724 | 100% | ||
mindtrap | 0 | 305,591,348,725 | 9.7% | ||
russellstockley | 0 | 1,205,311,250 | 10% | ||
kitalee | 0 | 13,470,837,346 | 13.5% | ||
futurecurrency | 0 | 18,440,444,614 | 30% | ||
g4fun | 0 | 10,429,014,323 | 25% | ||
cryptictruth | 0 | 169,848,267,554 | 100% | ||
fego | 0 | 27,900,587,662 | 35% | ||
photobook | 0 | 1,025,869,201 | 21% | ||
hadley4 | 0 | 4,615,280,954 | 27% | ||
cruisin | 0 | 10,544,963,854 | 12.5% | ||
frassman | 0 | 8,310,373,476 | 50% | ||
dabird | 0 | 567,619,404 | 13.5% | ||
clm | 0 | 3,074,586,591 | 30% | ||
julian.alejandro | 0 | 708,112,210 | 50% | ||
tegansteems | 0 | 4,904,594,805 | 100% | ||
satren | 0 | 58,880,243,253 | 20% | ||
lordjames | 0 | 641,488,450 | 30% | ||
bonzopoe | 0 | 13,662,490,911 | 50% | ||
miosha | 0 | 8,088,096,760 | 100% | ||
amico | 0 | 235,254,377,854 | 23.07% | ||
andablackwidow | 0 | 11,864,197,608 | 100% | ||
bdlatif | 0 | 682,444,969 | 13.5% | ||
tiababi | 0 | 464,610,726 | 100% | ||
bestboom | 0 | 73,934,026,308 | 21% | ||
abrockman | 0 | 535,258,247,292 | 100% | ||
manniman | 0 | 63,747,028,823 | 33% | ||
adamada | 0 | 10,257,714,849 | 25% | ||
ronaldoavelino | 0 | 83,968,891,743 | 25% | ||
louis88 | 0 | 1,045,843,786,322 | 100% | ||
lesmouths-travel | 0 | 8,092,687,574 | 100% | ||
goldvault | 0 | 10,069,863,508 | 29% | ||
sekhet | 0 | 275,192,571 | 100% | ||
dera123 | 0 | 1,074,366,815,957 | 100% | ||
jan23com | 0 | 5,325,388,593 | 90% | ||
paragism | 0 | 25,236,056,364 | 100% | ||
mini-zephalexia | 0 | 6,722,090,464 | 80% | ||
jkramer | 0 | 1,060,183,436,498 | 100% | ||
franciscopr | 0 | 564,479,862 | 13.5% | ||
flaxz | 0 | 30,252,050,655 | 12.5% | ||
dinaudic | 0 | 1,120,085,974 | 27% | ||
elvys | 0 | 576,353,849 | 20.25% | ||
freddio | 0 | 19,154,569,943 | 15% | ||
blainjones | 0 | 2,159,384,375 | 15% | ||
ilazramusic | 0 | 6,263,398,295 | 13.5% | ||
jordangerder | 0 | 19,415,810,132 | 100% | ||
memepress | 0 | 728,739,653 | 25% | ||
xchng | 0 | 21,414,425,761 | 100% | ||
gifty-e | 0 | 835,216,797 | 100% | ||
choco11oreo11 | 0 | 3,434,856,629 | 90% | ||
ericahan | 0 | 8,770,417,819 | 100% | ||
good-darma | 0 | 22,020,334,575 | 100% | ||
dlive24hour | 0 | 31,999,826,393 | 100% | ||
muna01 | 0 | 2,102,289,927 | 100% | ||
roinv | 0 | 2,452,107,547 | 15% | ||
manojbhatt | 0 | 3,729,467,441 | 100% | ||
julialee66 | 0 | 9,308,338,440,728 | 54% | ||
stefannikolov | 0 | 2,783,734,047 | 25% | ||
raorac | 0 | 1,315,506,655 | 35% | ||
fucho80 | 0 | 8,490,580,001 | 13.5% | ||
morellys2004 | 0 | 52,743,225,426 | 100% | ||
yaraha | 0 | 3,954,401,311 | 20% | ||
promobot | 0 | 13,807,114,096 | 8.75% | ||
mrs.goldkey | 0 | 2,494,630,938 | 29% | ||
veteranforcrypto | 0 | 68,307,874,044 | 50% | ||
romeskie | 0 | 2,776,807,205 | 2.5% | ||
rozku | 0 | 44,613,921,919 | 30% | ||
steem.services | 0 | 366,028,188,720 | 10% | ||
slobberchops | 0 | 4,693,123,701,724 | 100% | ||
atanas007 | 0 | 9,709,351,355 | 100% | ||
hatoto | 0 | 33,387,561,035 | 10% | ||
ederaleng | 0 | 3,808,508,783 | 100% | ||
crimo | 0 | 551,040,352 | 10% | ||
xers | 0 | 981,407,588 | 100% | ||
davidesimoncini | 0 | 10,556,045,232 | 33% | ||
aliriera | 0 | 2,063,279,724 | 13.5% | ||
enforcer48 | 0 | 107,311,195,174 | 15% | ||
flibbertigibbet | 0 | 11,318,256,446 | 100% | ||
competeapp | 0 | 68,979,574,603 | 100% | ||
ravenkim | 0 | 4,450,106,462 | 100% | ||
pialejoana | 0 | 7,731,057,054 | 13.5% | ||
cryptoandcoffee | 0 | 949,073,162,057 | 100% | ||
acont | 0 | 1,542,464,727 | 13.5% | ||
mike961 | 0 | 1,285,924,269 | 10.8% | ||
irvinc | 0 | 595,604,508 | 1.35% | ||
council | 0 | 1,291,807,426 | 13.5% | ||
digital.mine | 0 | 162,892,296,344 | 1% | ||
elmundodexao | 0 | 11,268,694,913 | 100% | ||
linco | 0 | 9,482,019,899 | 5% | ||
swisswitness | 0 | 12,446,491,107 | 21% | ||
k3ldo | 0 | 621,444,333 | 30% | ||
moneybaby | 0 | 835,185,909 | 2.5% | ||
femseen | 0 | 980,057,592 | 70% | ||
longer | 0 | 6,026,305,394 | 12.5% | ||
roger5120 | 0 | 183,738,533,697 | 15% | ||
milaan | 0 | 3,075,479,413 | 9.7% | ||
scrawly | 0 | 2,516,996,813 | 100% | ||
drsensor | 0 | 2,212,379,631 | 80% | ||
fernando.lubezki | 0 | 2,275,651,809 | 27% | ||
anastasiav | 0 | 1,511,479,273 | 100% | ||
cmplxty | 0 | 192,759,251,534 | 67% | ||
mrnightmare89 | 0 | 45,101,622,668 | 100% | ||
donald.porter | 0 | 567,409,954,394 | 100% | ||
ambiguity | 0 | 3,681,924,672 | 12.5% | ||
gallerani | 0 | 1,297,652,223 | 21% | ||
votepower | 0 | 4,085,961,521 | 100% | ||
zaibkang | 0 | 52,821,707,263 | 100% | ||
mightypanda | 0 | 1,096,651,001 | 35% | ||
mastersa | 0 | 794,230,960 | 13.5% | ||
schlunior | 0 | 11,535,337,163 | 20% | ||
rachman-steem001 | 0 | 45,601,935 | 100% | ||
perniachiquito | 0 | 1,551,042,511 | 100% | ||
libe | 0 | 833,109,154 | 13.5% | ||
sonder-an | 0 | 302,036,950 | 100% | ||
rilo | 0 | 713,472,085 | 100% | ||
jesusmedit | 0 | 913,910,384 | 13.5% | ||
adonisr | 0 | 1,424,815,509 | 27% | ||
thehive | 0 | 32,095,113,087 | 50% | ||
velazquezboy | 0 | 5,115,329,157 | 100% | ||
ekafao | 0 | 913,423,153 | 50% | ||
reinaseq | 0 | 1,636,305,357 | 27% | ||
pvinny69 | 0 | 3,702,931,997 | 13.5% | ||
goumao | 0 | 21,361,173,970 | 100% | ||
littlegremlin | 0 | 1,160,488,214 | 13.5% | ||
santoninoatocha | 0 | 443,928,040 | 100% | ||
minuetoacademy | 0 | 1,442,266,472 | 27% | ||
wendyth16 | 0 | 26,847,857,694 | 100% | ||
artmedina | 0 | 1,753,472,151 | 27% | ||
minnowspeed | 0 | 777,812,980 | 13.5% | ||
littleshadow | 0 | 4,154,572,062 | 90% | ||
goingbonkers | 0 | 63,315,641,651 | 100% | ||
dlike | 0 | 265,187,172,127 | 21% | ||
triptolemus | 0 | 1,978,529,976 | 21% | ||
orlandogonzalez | 0 | 718,395,483 | 6.75% | ||
stever82 | 0 | 55,959,968,988 | 25% | ||
joseph6232 | 0 | 1,693,602,614 | 90% | ||
connor-russo | 0 | 797,039,154 | 13.5% | ||
emaillisahere | 0 | 3,160,735,341 | 75% | ||
andreasalas | 0 | 1,747,481,757 | 13.5% | ||
nurulwildaa | 0 | 9,165,786,931 | 100% | ||
buzzbee | 0 | 624,078,412 | 50% | ||
fullnodeupdate | 0 | 6,216,667,337 | 25% | ||
javiermurillo | 0 | 12,539,964,169 | 19.44% | ||
tipsybosphorus | 0 | 458,107,491,173 | 100% | ||
sampraise | 0 | 14,500,832,112 | 100% | ||
pboulet | 0 | 39,795,175,145 | 100% | ||
javyeslava.photo | 0 | 2,906,414,946 | 10.8% | ||
lizdeluca | 0 | 2,075,534,900 | 13.5% | ||
caoimhin | 0 | 3,887,457,419 | 100% | ||
a-bot | 0 | 34,131,339,214 | 100% | ||
bobby.madagascar | 0 | 8,428,404,538 | 5.25% | ||
djtrucker | 0 | 1,432,256,861 | 75% | ||
laissez-faire | 0 | 60,660,206 | 100% | ||
cultus-forex | 0 | 77,880,161,350 | 100% | ||
quediceharry | 0 | 4,611,463,308 | 100% | ||
marshalmugi | 0 | 40,466,225,358 | 85% | ||
aleestra | 0 | 2,181,689,325 | 13.5% | ||
podg3 | 0 | 1,610,868,844 | 90% | ||
palasatenea | 0 | 3,081,684,390 | 13.5% | ||
memes777 | 0 | 1,757,704,724 | 27% | ||
silverkey | 0 | 2,898,594,848 | 33% | ||
silvervault | 0 | 10,952,999,634 | 29% | ||
cryptycoon | 0 | 4,804,059,307 | 33% | ||
cryptoclerk | 0 | 4,469,237,606 | 29% | ||
mister-meeseeks | 0 | 79,847,026,593 | 50% | ||
admiralbot | 0 | 5,698,658,628 | 100% | ||
javier.dejuan | 0 | 3,375,283,132 | 13.5% | ||
misstaken | 0 | 4,461,695,433 | 90% | ||
xmauron3 | 0 | 1,550,860,145 | 100% | ||
jimbi | 0 | 29,492,512,090 | 50% | ||
ldp | 0 | 3,201,299,281 | 21% | ||
racarjoal | 0 | 692,223,694 | 13.5% | ||
thisnewgirl | 0 | 6,904,537,488 | 100% | ||
merlin7 | 0 | 224,861,702,282 | 21% | ||
gungunkrishu | 0 | 967,282,993,259 | 100% | ||
hobo.media | 0 | 50,700,095,577 | 100% | ||
adyorka | 0 | 741,295,238 | 20% | ||
esthersanchez | 0 | 2,134,772,431 | 30% | ||
florino | 0 | 810,932,195 | 15% | ||
wil.metcalfe | 0 | 247,697,187,247 | 100% | ||
eliasseth | 0 | 777,688,795 | 13.5% | ||
geeklania | 0 | 5,926,408,790 | 100% | ||
danieli98 | 0 | 6,048,563,521 | 13.5% | ||
followjohngalt | 0 | 119,882,117,593 | 21% | ||
miguelbaez | 0 | 2,175,880,651 | 13.5% | ||
jdugarte | 0 | 882,666,645 | 13.5% | ||
daisybuzz | 0 | 1,721,157,305 | 75% | ||
jussbren | 0 | 1,843,219,960 | 90% | ||
glastar | 0 | 1,026,077,495,176 | 100% | ||
avel692 | 0 | 8,334,374,660 | 50% | ||
cakemonster | 0 | 75,766,656,875 | 100% | ||
vcs | 0 | 61,183,356,452 | 10% | ||
marki99 | 0 | 209,429,448,325 | 100% | ||
gudnius.comics | 0 | 5,497,094,946 | 100% | ||
dein-problem | 0 | -121,753,598 | -1% | ||
healthdear | 0 | 13,178,642,405 | 100% | ||
pl-kuchnia | 0 | 1,836,565,870 | 50% | ||
starrouge | 0 | 609,095,514 | 30% | ||
infinite-love | 0 | 586,373,623 | 10% | ||
redheaddemon | 0 | 811,213,668 | 50% | ||
wherein | 0 | 533,471,584,028 | 60% | ||
brucutu | 0 | 10,947,780,018 | 50% | ||
yuriy4 | 0 | 5,867,535,498 | 40% | ||
shainemata | 0 | 30,171,050,919 | 100% | ||
zerofive | 0 | 551,089,432 | 30% | ||
kork75 | 0 | 2,144,044,688 | 13.5% | ||
jacuzzi | 0 | 14,327,258,678 | 25% | ||
seekingalpha | 0 | 708,029,698 | 100% | ||
primeradue | 0 | 90,417,307,368 | 100% | ||
brucutu2 | 0 | 4,358,233,487 | 100% | ||
aqua.nano | 0 | 751,710,077 | 13.5% | ||
jtm.support | 0 | 1,009,690,733 | 13.5% | ||
flyingbolt | 0 | 1,563,637,168 | 21% | ||
determine | 0 | 1,266,195,537 | 21% | ||
kaux | 0 | 1,236,161,262 | 100% | ||
cnstm | 0 | 186,669,080,474 | 60% | ||
permaculturedude | 0 | 4,184,597,078 | 10.5% | ||
likuang007 | 0 | 6,095,981,857 | 60% | ||
agent14 | 0 | 1,039,200,926,705 | 35% | ||
tubiska | 0 | 4,314,894,592 | 100% | ||
pocoto | 0 | 4,469,482,576 | 100% | ||
creary | 0 | 1,896,187,509 | 13.5% | ||
circa | 0 | 206,746,895,339 | 100% | ||
kitty-kitty | 0 | 4,481,501,576 | 100% | ||
jamesbattler | 0 | 132,883,856,716 | 100% | ||
jussara | 0 | 4,545,236,202 | 100% | ||
cyrillo | 0 | 4,356,065,966 | 100% | ||
smon-joa | 0 | 18,638,275,695 | 100% | ||
jjangjjanggirl | 0 | 851,464,857 | 100% | ||
lianjingmedia | 0 | 582,403,305 | 60% | ||
broxi | 0 | 9,888,303,844 | 50% | ||
eternalsuccess | 0 | 22,369,706,139 | 27% | ||
rgvmedia | 0 | 922,398,968 | 100% | ||
ratspencer | 0 | 699,747,406 | 13.5% | ||
mia-cc | 0 | 6,560,464,933 | 50.01% | ||
carioca | 0 | 4,425,103,450 | 100% | ||
abbenay | 0 | 1,040,877,982 | 5% | ||
osavi | 0 | 7,357,800,806 | 100% | ||
smileyboy | 0 | 307,329,416 | 10% | ||
hungryharish | 0 | 1,403,818,822 | 5.25% | ||
jlj | 0 | 41,661,798,826 | 100% | ||
sophieandhenrik | 0 | 1,988,521,621 | 50% | ||
arnaldoropeza | 0 | 1,292,327,611 | 13.5% | ||
marymi | 0 | 469,495,305 | 100% | ||
ttg | 0 | 552,866,528,884 | 100% | ||
androshchuk | 0 | 3,663,343,976 | 100% | ||
hashzone91 | 0 | 990,584,025 | 13.5% | ||
kryptogames | 0 | 223,413,534,326 | 50.01% | ||
cancerpatient1 | 0 | 3,423,764,647 | 100% | ||
maryincryptoland | 0 | 23,256,573,239 | 100% | ||
alessiofox | 0 | 111,123,802 | 100% | ||
wallvater | 0 | 1,327,197,411 | 20% | ||
epicdice | 0 | 136,098,421,299 | 18% | ||
battlegames | 0 | 477,872,895,608 | 100% | ||
bigmoneyman | 0 | 900,022,276 | 50% | ||
patris | 0 | 1,396,318,232 | 13.5% | ||
yiobri | 0 | 3,816,555,693 | 13.5% | ||
thehempinghand | 0 | 2,917,631,520 | 100% | ||
ricardomello | 0 | 3,214,395,762 | 27% | ||
iamsaray | 0 | 2,730,326,109 | 13.5% | ||
loudutim | 0 | 981,097,958 | 13.5% | ||
deeanndmathews | 0 | 61,208,686,582 | 100% | ||
gulf41 | 0 | 6,118,465,227 | 100% | ||
scholaris | 0 | 629,394,755,921 | 100% | ||
bramblejam | 0 | 3,468,030,076 | 100% | ||
muhammad-wali | 0 | 501,610,839 | 50% | ||
sm-silva | 0 | 2,417,529,305 | 10.5% | ||
hjlee119 | 0 | 2,103,237,170 | 54% | ||
gruntalpha | 0 | 5,759,056,699 | 100% | ||
likwid | 0 | 1,620,048,498,002 | 8.75% | ||
steemvpn | 0 | 2,905,527,254 | 66.6% | ||
racentenog | 0 | 538,729,008 | 13.5% | ||
tinyhousecryptos | 0 | 533,879,277 | 5% | ||
evanstinger | 0 | 66,141,345,863 | 100% | ||
gruntomega | 0 | 5,741,760,032 | 100% | ||
victartex | 0 | 1,040,257,717 | 13.5% | ||
plankton.token | 0 | 29,463,274,400 | 30% | ||
leighscotford | 0 | 3,883,063,695 | 10% | ||
maruskina | 0 | 8,204,392,796 | 13.5% | ||
waltermeth | 0 | 4,402,813,808 | 30% | ||
iamjohn | 0 | 1,482,690,791 | 25% | ||
debitcoin | 0 | 1,629,131,621 | 27% | ||
firefuture | 0 | 1,140,640,249 | 21% | ||
xyz004 | 0 | 44,316,581,698 | 25% | ||
titan-c | 0 | 4,693,006,042 | 13.5% | ||
steemindian | 0 | 1,812,512,438 | 10.5% | ||
juancho10 | 0 | 2,579,920,666 | 13.5% | ||
cryptogambit | 0 | 1,444,869,138 | 7.5% | ||
c21c | 0 | 27,040,693,506 | 100% | ||
denisdenis | 0 | 8,658,461,136 | 100% | ||
manylar | 0 | 45,224,457,269 | 100% | ||
suigener1s | 0 | 534,828,661 | 100% | ||
anthos | 0 | 959,514,547 | 15.75% | ||
shimozurdo | 0 | 2,361,259,325 | 13.5% | ||
mariolbi | 0 | 850,349,222 | 13.5% | ||
psyo | 0 | 596,681,296 | 13.5% | ||
ljungbuske | 0 | 57,980,367,109 | 100% | ||
milu-the-dog | 0 | 9,409,070,689 | 21% | ||
yeswecan | 0 | 15,667,790,152 | 90% | ||
ssiena | 0 | 14,529,272,700 | 67% | ||
lrekt01 | 0 | 2,772,899,392 | 100% | ||
triplea.bot | 0 | 7,618,108,713 | 21% | ||
steem.leo | 0 | 552,007,113,675 | 21% | ||
reggaesteem | 0 | 3,890,844,871 | 29.75% | ||
nichemarket | 0 | 2,066,815,280 | 100% | ||
bizventures | 0 | 1,138,933,162 | 12.5% | ||
heidi.art | 0 | 557,106,814 | 54% | ||
freddio.sport | 0 | 3,632,981,970 | 15% | ||
zaku-pal | 0 | 781,139,260 | 21% | ||
zaku-leo | 0 | 780,770,010 | 21% | ||
babytarazkp | 0 | 2,870,449,872 | 50% | ||
boohugs | 0 | 752,132,505 | 100% | ||
asteroids | 0 | 119,721,210,916 | 21% | ||
wongbraling | 0 | 1,614,823,510 | 100% | ||
acguitar1 | 0 | 4,250,849,829 | 100% | ||
jesus68 | 0 | 1,191,356,709 | 13.5% | ||
maddogmike | 0 | 2,376,505,291 | 25% | ||
thranax | 0 | 20,842,810,498 | 12% | ||
soyunasantacruz | 0 | 20,601,662,100 | 100% | ||
midlet-creates | 0 | 749,214,771 | 50% | ||
lisamgentile1961 | 0 | 1,145,611,913 | 6.25% | ||
opidia | 0 | 21,406,829,613 | 100% | ||
iamraincrystal | 0 | 22,069,310,096 | 12.5% | ||
nazer | 0 | 1,453,953,561 | 13.5% | ||
cryptoandsports | 0 | 10,130,215,148 | 100% | ||
one.life | 0 | 4,173,004,172 | 20.95% | ||
elianaicgomes | 0 | 1,121,446,957 | 12.5% | ||
bradleyarrow | 0 | 132,204,257,563 | 25% | ||
acta | 0 | 25,252,042,523 | 100% | ||
renataboreal | 0 | 846,010,395 | 13.5% | ||
the-table | 0 | 18,185,286,682 | 100% | ||
rosana6 | 0 | 590,998,569 | 13.5% | ||
cardtrader | 0 | 3,982,812,501 | 100% | ||
dappcoder | 0 | 6,172,949,209 | 16.8% | ||
thehouse | 0 | 1,753,578,088 | 90% | ||
mister.reatard | 0 | 2,672,185,628 | 50% | ||
precarious | 0 | 3,594,847,856 | 40% | ||
hongdangmu | 0 | 3,778,597,489 | 54% | ||
writertales | 0 | 2,784,870,476 | 27% | ||
abh12345.medi | 0 | 128,484,119 | 50% | ||
basedtoken | 0 | 38,646,854,232 | 100% | ||
dappstats | 0 | 3,578,898,702 | 15% | ||
silverquest | 0 | 116,911,169,878 | 90% | ||
therealyme | 0 | 1,314,554,430 | 16.8% | ||
chris-uk | 0 | 7,995,832,254 | 100% | ||
blocktvnews | 0 | 1,275,491,931 | 10.5% | ||
mowemu | 0 | 9,810,680,725 | 13.5% | ||
huaren.news | 0 | 195,153,644,546 | 9% | ||
disportum | 0 | 543,300,284 | 100% | ||
goodreader | 0 | 2,498,109,789 | 18% | ||
gerbo | 0 | 207,826,539 | 21% | ||
honeychip | 0 | 8,242,766,207 | 85% | ||
unpopular | 0 | 211,436,735,486 | 100% | ||
sacrosanct | 0 | 2,496,856,142 | 9.7% | ||
redwarbull | 0 | 2,845,551,546 | 33% | ||
fourtwentyhunny | 0 | 541,982,623 | 100% | ||
artyudy | 0 | 2,295,500,213 | 100% | ||
steemyuber | 0 | 541,563,112 | 100% | ||
heavenskitchen | 0 | 541,601,331 | 100% | ||
gmlrecordz | 0 | 1,435,823,371 | 15% | ||
wildgooselive | 0 | 541,581,401 | 100% | ||
mvanhauten | 0 | 4,030,922,580 | 20% | ||
hive-166168 | 0 | 3,064,102,489 | 100% | ||
angel33 | 0 | 642,549,208 | 100% | ||
ribary | 0 | 6,931,810,673 | 10.5% | ||
cam1lo | 0 | 1,264,007,871 | 100% | ||
daree23 | 0 | 0 | 100% | ||
gregorior | 0 | 4,679,543,595 | 13.5% | ||
bilpcoinbpc | 0 | 644,227,156 | 25% | ||
mice-k | 0 | 42,711,250,800 | 21% | ||
bcm.dblog | 0 | 2,243,100,825 | 54% | ||
staryao | 0 | 8,249,812,449 | 21% | ||
davidlionfish | 0 | 50,346,899,490 | 100% | ||
abu.hair | 0 | 73,068,845 | 100% | ||
curamax | 0 | 6,442,946,043 | 15.75% | ||
waqasrizvi | 0 | 1,649,750,704 | 100% | ||
bib15hash | 0 | 892,317,676 | 100% | ||
mehmetfix | 0 | 5,945,366,054 | 100% | ||
alexa.art | 0 | 57,562,155,417 | 100% | ||
tommys.shop | 0 | 1,626,655,640 | 90% | ||
jhonkeneddy | 0 | 0 | 100% | ||
steemcityrewards | 0 | 4,743,364,080 | 21% | ||
dpend.active | 0 | 6,974,465,806 | 4.2% | ||
iambean | 0 | 538,504,497 | 100% | ||
adamdabeast | 0 | 986,005,225 | 54% | ||
steem24 | 0 | 23,201,567,596 | 12% | ||
fengchao | 0 | 1,451,957,202 | 2% | ||
artdescry | 0 | 1,541,639,116 | 15.75% | ||
peakd | 0 | 1,400,935,319,512 | 100% | ||
hivewaves | 0 | 565,156,255 | 75% | ||
hivebuzz | 0 | 8,717,879,277 | 5% | ||
folklure | 0 | 1,795,829,003 | 10.5% | ||
robwillmann | 0 | 2,394,580,388 | 12.5% | ||
reggaejahm | 0 | 191,206,992,186 | 35% | ||
green-finger | 0 | 1,960,311,273 | 54% | ||
nulledgh0st | 0 | 11,008,679,776 | 0.75% | ||
kohsamui99 | 0 | 164,632,798,660 | 100% | ||
softworld | 0 | 1,239,282,360,770 | 78% | ||
timhorton | 0 | 596,893,916 | 19% | ||
captainhive | 0 | 1,848,855,607,616 | 100% | ||
tips.tracker | 0 | 28,080,365 | 1% | ||
brianbrogan1960 | 0 | 0 | 5% | ||
dcityrewards | 0 | 560,151,532,184 | 21% | ||
marvschurchill1 | 0 | 1,644,839,532 | 50% | ||
paprik | 0 | 4,620,622,182 | 100% | ||
paulman | 0 | 1,455,577,853 | 75% | ||
sarahackley | 0 | 1,913,337,231 | 100% | ||
sketching | 0 | 1,170,546,386 | 10.5% | ||
ninnu | 0 | 3,043,045,273 | 50% | ||
quantumg | 0 | 12,285,323,830 | 100% | ||
georgelys | 0 | 3,235,989,591 | 100% | ||
ahmdorak | 0 | 1,159,460,921 | 100% | ||
vibrasphere | 0 | 3,858,256,826 | 20% | ||
aanjz09123 | 0 | 0 | 100% | ||
traduzindojogos | 0 | 1,800,430,122 | 100% | ||
arsyadhaqqi | 0 | 0 | 100% | ||
ghaazi | 0 | 226,726,280,260 | 100% | ||
rz1996 | 0 | 6,744,685,679 | 100% | ||
hivehustlers | 0 | 3,002,344,147 | 0.75% | ||
sweetmonsters | 0 | 8,093,197,772 | 100% | ||
hiv601 | 0 | 0 | 100% | ||
beehivetrader | 0 | 33,433,910,508 | 100% | ||
pranjalupa | 0 | 0 | 100% | ||
sheilabliss22 | 0 | 2,079,045,376 | 100% | ||
oliviagm | 0 | 14,971,754,561 | 27% | ||
sultan-indo | 0 | 1,511,665,753 | 100% | ||
ronavel | 0 | 270,361,664,832 | 20% | ||
edwarlyn11 | 0 | 1,109,928,625 | 100% | ||
hivecur | 0 | 66,707,897,657 | 21% | ||
improbableliason | 0 | 1,987,041,129 | 50% | ||
one-eye | 0 | 9,525,742,982 | 100% | ||
tokensonline | 0 | 2,851,413,853 | 100% | ||
lapar | 0 | 1,107,882,961 | 100% | ||
rryblogs | 0 | 376,737,595 | 100% | ||
artistparthoroy | 0 | 5,062,843,724 | 100% | ||
alkhalidi | 0 | 255,896,150 | 100% | ||
jelly13 | 0 | 271,085,365,347 | 30% | ||
reza-shamim | 0 | 1,245,675,569 | 100% | ||
anewlakdk84 | 0 | 0 | 50% | ||
alfonso1373 | 0 | 0 | 100% | ||
omaclim2 | 0 | 0 | 100% | ||
sermofons | 0 | 0 | 100% | ||
raybach99 | 0 | 0 | 100% | ||
portallake | 0 | 0 | 100% | ||
marsal100 | 0 | 0 | 100% | ||
agoesmhr | 0 | 0 | 100% | ||
eybyoung | 0 | 750,000,000 | 100% | ||
hdres | 0 | 542,943,734 | 51% | ||
rahmatulyaa24 | 0 | 184,108,617 | 100% | ||
bivashpaul1 | 0 | 0 | 100% | ||
cryptonoob1234 | 0 | 0 | 100% | ||
hbabarry2008 | 0 | 0 | 100% | ||
rizqijune | 0 | 0 | 100% | ||
veer-0-nique | 0 | 0 | 100% | ||
jupiterelif | 0 | 0 | 100% | ||
beachchem | 0 | 0 | 100% | ||
gonkwa | 0 | 0 | 100% | ||
bell73 | 0 | 0 | 100% | ||
elgranfotografo | 0 | 0 | 100% | ||
yousep20 | 0 | 0 | 100% | ||
afrozhive | 0 | 0 | 75% | ||
layde | 0 | 0 | 95% |
A huge hug 🤗 and a little bit of !BEER 🍻 from @amico! ___ Un caro abbraccio 🤗 e un po' di BEER 🍻 da @amico!
author | amico |
---|---|
permlink | re-a-preview-of-hivemind-improvements-20200630t232415z |
category | hive-139531 |
json_metadata | "{"app": "rewarding/0.1.0"}" |
created | 2020-06-30 23:24:18 |
last_update | 2020-06-30 23:24:18 |
depth | 1 |
children | 0 |
last_payout | 2020-07-07 23:24: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 | 111 |
author_reputation | 51,076,240,298,517 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,269,324 |
net_rshares | 0 |
Thats great
author | arynews199 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-blocktrades-202072t202230187z | ||||||
category | hive-139531 | ||||||
json_metadata | {"tags":["hive","blocktrades","hivemind","development"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"} | ||||||
created | 2020-07-02 15:22:33 | ||||||
last_update | 2020-07-02 15:22:33 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2020-07-09 15:22: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 | 11 | ||||||
author_reputation | -5,273,574,806 | ||||||
root_title | "A preview of Hivemind Improvements" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 98,301,653 | ||||||
net_rshares | -12,382,828,058 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -12,382,828,058 | -0.5% | ||
goodcontentbot2 | 0 | 0 | 0.5% |
<div class='pull-right'>https://files.peakd.com/file/peakd-hive/beerlover/yiuU6bdf-beerlover20gives20BEER.gif<p><sup><a href='https://hive-engine.com/?p=market&t=BEER'>View or trade </a> <code>BEER</code>.</sup></p></div><center><br> <p> Hey @blocktrades, here is a little bit of <code>BEER</code> from @amico for you. Enjoy it!</p> <p>Learn how to <a href='https://peakd.com/beer/@beerlover/what-is-proof-of-stake-with-beer'>earn <b>FREE BEER</b> each day </a> by staking your <code>BEER</code>.</p> </center><div></div>
author | beerlover |
---|---|
permlink | re-a-preview-of-hivemind-improvements-20200630t232428z |
category | hive-139531 |
json_metadata | "{"app": "beem/0.23.11"}" |
created | 2020-06-30 23:24:30 |
last_update | 2020-06-30 23:24:30 |
depth | 1 |
children | 0 |
last_payout | 2020-07-07 23:24: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 | 521 |
author_reputation | 25,832,126,258,714 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,269,329 |
net_rshares | 0 |
this is nice... a lot of complex things on this pot but I still need to read it because i need to be aware of changes on the hive network. the optimization sounds nive already. i must say you guys are doing a great job in improving this platform. Is there anything that can be done to help newbies navigate the site easily or faster. something like a tutorial as soon as you enter the websites as a newbie. I have been on boarding new users and this has been a major complain for them
author | bhoa |
---|---|
permlink | qcvc7r |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-07-03 01:02:18 |
last_update | 2020-07-03 01:02:18 |
depth | 1 |
children | 0 |
last_payout | 2020-07-10 01:02: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 | 485 |
author_reputation | 60,701,104,434,307 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,309,116 |
net_rshares | 0 |
Hi @blocktrades, it's nice to know that Hive is growing in capable and efficient hands. Hola @blocktrades, es agradable saber que Hive está creciendo en manos capaces y eficientes.
author | cloris |
---|---|
permlink | qcsy9y |
category | hive-139531 |
json_metadata | {"users":["blocktrades"],"app":"hiveblog/0.1"} |
created | 2020-07-01 17:21:21 |
last_update | 2020-07-01 17:21:21 |
depth | 1 |
children | 0 |
last_payout | 2020-07-08 17:21: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 | 181 |
author_reputation | 2,039,725,080,527 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,284,171 |
net_rshares | 0 |
A lot to unpack with this update but some fantastic stuff in it, thanks for sharing! Regarding your section about moving comments from hived to hive mind, does that theoretically mean someone could make an easier process to find comments? I’ve been trying to figure out how to get my really old comments in an easy way. Presently I have to go to a site like PeakD and go to my comments and just scroll endlessly. My browser ends up crashing and I didn’t find what I needed. It would seem that with it now being in Python instead of C++ programmers could find out a way to put them in pages kind of like emails that are 50 per page. Having 50 pages to look through is easier than trying to endlessly scroll, especially the more people like me comment every day. Might be a tangent here but that’s a personal interest of mine, some people got me into some awesome stuff early on in my hive/Steem journey and I haven’t the slightest clue who they are. Finding them via my comments made years ago has been something I’ve been trying to do but am not having good success lol Anyways, thanks again for the update and continued work! Appreciate it!
author | cmplxty | ||||||
---|---|---|---|---|---|---|---|
permlink | re-blocktrades-2020630t19503880z | ||||||
category | hive-139531 | ||||||
json_metadata | {"tags":["hive","blocktrades","hivemind","development"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"} | ||||||
created | 2020-06-30 23:50:03 | ||||||
last_update | 2020-06-30 23:50:03 | ||||||
depth | 1 | ||||||
children | 3 | ||||||
last_payout | 2020-07-07 23:50:03 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.890 HBD | ||||||
curator_payout_value | 0.918 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 1,146 | ||||||
author_reputation | 787,402,785,957,085 | ||||||
root_title | "A preview of Hivemind Improvements" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 98,269,714 | ||||||
net_rshares | 6,122,035,417,423 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 195,106,355,383 | 1% | ||
dhimmel | 0 | 5,549,453,059,191 | 100% | ||
aussieninja | 0 | 116,518,839,716 | 100% | ||
wil.metcalfe | 0 | 242,752,566,301 | 100% | ||
eliasseth | 0 | 5,905,975,749 | 100% | ||
davidlionfish | 0 | 12,298,621,083 | 25% |
That's not at all a tangent, that's exactly the kind of thing that you could easily do with a custom Hivemind API call!
author | blocktrades |
---|---|
permlink | qcrlq1 |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-07-01 00:37:15 |
last_update | 2020-07-01 00:37:15 |
depth | 2 |
children | 0 |
last_payout | 2020-07-08 00:37:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.010 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 119 |
author_reputation | 1,294,216,366,091,739 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,270,329 |
net_rshares | 108,834,363,073 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tgenedavis | 0 | 108,834,363,073 | 100% |
[Search engine](/hive/@good-karma/open-search-engine-development-and-maintenance) also works for this purpose, we just need to improve search page in hive.blog that gives some tips on how to use search or improve usability. For example, try changing `*` into any word you want and you will get all your relevant comments `https://hive.blog/search?q=*%20author:cmplxty%20type:comment`
author | good-karma | ||||||
---|---|---|---|---|---|---|---|
permlink | re-cmplxty-202071t101832630z | ||||||
category | hive-139531 | ||||||
json_metadata | {"tags":["hive","blocktrades","hivemind","development"],"app":"esteem/2.2.7-surfer","format":"markdown+html","community":"esteem.app"} | ||||||
created | 2020-07-01 07:18:33 | ||||||
last_update | 2020-07-01 07:18:33 | ||||||
depth | 2 | ||||||
children | 1 | ||||||
last_payout | 2020-07-08 07:18:33 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.020 HBD | ||||||
curator_payout_value | 0.020 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 383 | ||||||
author_reputation | 656,223,454,697,932 | ||||||
root_title | "A preview of Hivemind Improvements" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 98,275,883 | ||||||
net_rshares | 194,951,097,808 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gtg | 0 | 195,072,851,406 | 1% | ||
dein-problem | 0 | -121,753,598 | -1% |
Thanks for this tip! I will definitely give it a try. I’ve got one thing I think will help with that, that I’ve been looking for so that may very well work in that scenario!
author | cmplxty | ||||||
---|---|---|---|---|---|---|---|
permlink | re-good-karma-202071t53457710z | ||||||
category | hive-139531 | ||||||
json_metadata | {"tags":["esteem"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"} | ||||||
created | 2020-07-01 09:34:57 | ||||||
last_update | 2020-07-01 09:34:57 | ||||||
depth | 3 | ||||||
children | 0 | ||||||
last_payout | 2020-07-08 09:34:57 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.010 HBD | ||||||
curator_payout_value | 0.011 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 173 | ||||||
author_reputation | 787,402,785,957,085 | ||||||
root_title | "A preview of Hivemind Improvements" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 98,277,755 | ||||||
net_rshares | 111,054,131,024 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tgenedavis | 0 | 111,054,131,024 | 100% |
Good work, continue to progress this community. My regards
author | daysiselena |
---|---|
permlink | qcu7bf |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-07-02 10:18:54 |
last_update | 2020-07-02 10:18:54 |
depth | 1 |
children | 0 |
last_payout | 2020-07-09 10:18: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 | 58 |
author_reputation | 694,714,463,626,450 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,297,201 |
net_rshares | 0 |
Is this new structure???
author | deep0773 |
---|---|
permlink | qcucax |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-07-02 12:06:39 |
last_update | 2020-07-02 12:06:39 |
depth | 1 |
children | 0 |
last_payout | 2020-07-09 12:06: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 | 24 |
author_reputation | 13,008,956,356 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,298,657 |
net_rshares | 0 |
Una super información que hay que resaltar. En cosntante contacto con este tipo de info en pro de ir aprendiendo más y más sobre esta blockchain.
author | eliasseth |
---|---|
permlink | qcsw0y |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-07-01 16:49:12 |
last_update | 2020-07-01 16:49:12 |
depth | 1 |
children | 0 |
last_payout | 2020-07-08 16:49: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 | 145 |
author_reputation | 15,224,879,978,463 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,283,708 |
net_rshares | 0 |
<center><sup><h2>Hola @blocktrades… He elegido tu post para mi iniciativa diaria de reblogear. Este es mi aporte para Hive… Sigamos trabajando y aportando ideas para crecer en Hive!...  Hello @blocktrades... I have chosen your post for my daily reblogging initiative. This is my contribution to Hive... Let's keep working and giving ideas to grow in Hive!</h2></sup></center>
author | elmundodexao |
---|---|
permlink | qcrnzc |
category | hive-139531 |
json_metadata | {"users":["blocktrades"],"image":["https://images.hive.blog/DQmTpiD9JGb5W2gbBmxeCo1hy4tHcGASgo64MW1NZyV1Wxj/alegria.jpg"],"app":"hiveblog/0.1"} |
created | 2020-07-01 00:41:24 |
last_update | 2020-07-01 00:41:24 |
depth | 1 |
children | 0 |
last_payout | 2020-07-08 00:41: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 | 475 |
author_reputation | 52,508,564,661,796 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,270,374 |
net_rshares | 0 |
Informative
author | fahad3728 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-blocktrades-202079t224433328z | ||||||
category | hive-139531 | ||||||
json_metadata | {"tags":["hive","blocktrades","hivemind","development"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"} | ||||||
created | 2020-07-09 17:44:36 | ||||||
last_update | 2020-07-09 17:44:36 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2020-07-16 17:44: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 | 11 | ||||||
author_reputation | 3,670,951,603,473 | ||||||
root_title | "A preview of Hivemind Improvements" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 98,428,916 | ||||||
net_rshares | 0 |
This is really cool! Thank you for this update and all the hard work put into HIVE from you and your team.
author | firepower |
---|---|
permlink | qcvfom |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-07-03 02:17:12 |
last_update | 2020-07-03 02:17:12 |
depth | 1 |
children | 0 |
last_payout | 2020-07-10 02:17: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 | 106 |
author_reputation | 1,145,868,474,852,473 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,310,011 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
rahmatulyaa24 | 0 | 0 | 100% |
Hello, I wanted to exchange some hives for another cryptocurrency and the failed transaction was made and it comes out in my wallet that I transferred to you. Could you help me? I did all the steps well I don't know why that happened when I did it well before
author | fixie |
---|---|
permlink | qcsonr |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-07-01 14:38:18 |
last_update | 2020-07-01 14:38:18 |
depth | 1 |
children | 0 |
last_payout | 2020-07-08 14:38: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 | 259 |
author_reputation | 528,694,943,747,863 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,281,442 |
net_rshares | 0 |
Brilliant! Reminds me of how Apple operates with a lot of focus on speed and efficiency. Thank You!
author | geekgirl |
---|---|
permlink | re-blocktrades-qcry48 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.06.2"} |
created | 2020-07-01 05:04:57 |
last_update | 2020-07-01 05:04:57 |
depth | 1 |
children | 0 |
last_payout | 2020-07-08 05:04: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 | 99 |
author_reputation | 1,590,033,227,462,832 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,273,949 |
net_rshares | 2,103,264,404 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sultan-indo | 0 | 2,103,264,404 | 100% |
Great work! Question, syncing from scratch would still pull data from blockchain (hived) right? Looking forward for more technical notes and source code changes...
author | good-karma | ||||||
---|---|---|---|---|---|---|---|
permlink | re-blocktrades-202071t102255861z | ||||||
category | hive-139531 | ||||||
json_metadata | {"tags":["hive","blocktrades","hivemind","development"],"app":"esteem/2.2.7-surfer","format":"markdown+html","community":"esteem.app"} | ||||||
created | 2020-07-01 07:22:57 | ||||||
last_update | 2020-07-01 07:22:57 | ||||||
depth | 1 | ||||||
children | 3 | ||||||
last_payout | 2020-07-08 07:22:57 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.290 HBD | ||||||
curator_payout_value | 0.300 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 164 | ||||||
author_reputation | 656,223,454,697,932 | ||||||
root_title | "A preview of Hivemind Improvements" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 98,275,930 | ||||||
net_rshares | 2,319,670,685,692 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dhimmel | 0 | 2,155,511,522,407 | 40% | ||
dein-problem | 0 | -121,753,598 | -1% | ||
peakd | 0 | 164,280,916,883 | 12% | ||
rahmatulyaa24 | 0 | 0 | 100% |
Yes, it still pulls data from hived, but it is able to pull the data much faster now, and the insert and updating of the database was also made much faster. A bunch of different techniques were used to achieve this speedup: we added an API function to hived that allows for getting a filtered set of virtual operations, we spawn multiple threads in hivemind to fetch the data, we temporarily drop some indexes and re-add them after sync is finished, etc.
author | blocktrades |
---|---|
permlink | qcsspv |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-07-01 16:05:57 |
last_update | 2020-07-01 16:06:12 |
depth | 2 |
children | 0 |
last_payout | 2020-07-08 16:05:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.330 HBD |
curator_payout_value | 0.331 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 454 |
author_reputation | 1,294,216,366,091,739 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,282,887 |
net_rshares | 2,489,898,794,320 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dhimmel | 0 | 2,501,823,586,024 | 46% | ||
stimialiti | 0 | -5,969,316,742 | -44% | ||
fersher | 0 | -5,833,721,364 | -15% | ||
dein-problem | 0 | -121,753,598 | -1% |
Most of the sync speedups were done in this branch of hivemind: https://gitlab.syncad.com/hive/hivemind/-/commits/dk-issue-3-concurrent-block-query
author | blocktrades |
---|---|
permlink | qcsssr |
category | hive-139531 |
json_metadata | {"links":["https://gitlab.syncad.com/hive/hivemind/-/commits/dk-issue-3-concurrent-block-query"],"app":"hiveblog/0.1"} |
created | 2020-07-01 16:07:39 |
last_update | 2020-07-01 16:07:39 |
depth | 2 |
children | 0 |
last_payout | 2020-07-08 16:07: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 | 147 |
author_reputation | 1,294,216,366,091,739 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,282,907 |
net_rshares | 0 |
A lot of the API-related speedups were done in this branch of hivemind: https://gitlab.syncad.com/hive/hivemind/-/commits/query-speedup
author | blocktrades |
---|---|
permlink | qcssy8 |
category | hive-139531 |
json_metadata | {"links":["https://gitlab.syncad.com/hive/hivemind/-/commits/query-speedup"],"app":"hiveblog/0.1"} |
created | 2020-07-01 16:11:00 |
last_update | 2020-07-01 16:11:00 |
depth | 2 |
children | 0 |
last_payout | 2020-07-08 16:11: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 | 135 |
author_reputation | 1,294,216,366,091,739 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,282,965 |
net_rshares | 0 |
[ STAY AT HOME & WORK AT HOME ] Start making money this time... Spend more time with your family&relative by doing jobs that only require for you to have a computer and an internet access and you can have that at your home. Start bringing up to $65oo to $7ooo a month. I've started this job and earn handsome income and now i am exchange it with you, so you can do it too. You can check it out here.................http://www.jobnews3.com
author | henry453 |
---|---|
permlink | qcripc |
category | hive-139531 |
json_metadata | {"links":["http://www.jobnews3.com"],"app":"hiveblog/0.1"} |
created | 2020-06-30 23:30:45 |
last_update | 2020-06-30 23:30:45 |
depth | 1 |
children | 0 |
last_payout | 2020-07-07 23:30:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 438 |
author_reputation | -576,078,321,574 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,269,398 |
net_rshares | -17,844,530,817,488 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
blocktrades | 0 | -17,665,448,509,317 | -10% | ||
fbslo | 0 | -3,850,549,244 | -5% | ||
enforcer48 | 0 | -49,918,283,709 | -7% | ||
gorbisan | 0 | -9,774,610,147 | -5% | ||
onebtcofhive | 0 | -115,538,865,071 | -7% |
Congratulations @blocktrades! You have completed the following achievement on the Hive blockchain and have been rewarded with new badge(s) : <table><tr><td><img src="https://images.hive.blog/60x60/http://hivebuzz.me/badges/toppayoutday.png"></td><td>Your post got the highest payout of the day</td></tr> </table> <sub>_You can view [your badges on your board](https://hivebuzz.me/@blocktrades) And compare to others on the [Ranking](https://hivebuzz.me/ranking)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> To support your work, I also upvoted your post! ###### Support the HiveBuzz project. [Vote](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22109%22%5D&approve=true) for [our proposal](https://peakd.com/me/proposals/109)!
author | hivebuzz |
---|---|
permlink | hivebuzz-notify-blocktrades-20200630t234411000z |
category | hive-139531 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2020-06-30 23:44:09 |
last_update | 2020-06-30 23:44:09 |
depth | 1 |
children | 0 |
last_payout | 2020-07-07 23:44: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 | 819 |
author_reputation | 370,425,660,057,875 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,269,607 |
net_rshares | 0 |
So is this blog the one we come to for updates or changes on Hive.blog and the blockchain? I'm still wondering with there is an analogue to @steemitblog and @steemitdev on the platform that I'm unaware of....
author | jenkinrocket |
---|---|
permlink | qct010 |
category | hive-139531 |
json_metadata | {"users":["steemitblog","steemitdev"],"app":"hiveblog/0.1"} |
created | 2020-07-01 18:43:45 |
last_update | 2020-07-01 18:43:45 |
depth | 1 |
children | 2 |
last_payout | 2020-07-08 18:43:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 208 |
author_reputation | 26,749,165,203,694 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,285,229 |
net_rshares | 0 |
The official blog for the blockchain is @hiveio, but like many of the devs, I also occasionally make updates on the specific work that we (the blocktrades team) are doing.
author | blocktrades |
---|---|
permlink | qctdqi |
category | hive-139531 |
json_metadata | {"users":["hiveio"],"app":"hiveblog/0.1"} |
created | 2020-07-01 23:39:54 |
last_update | 2020-07-01 23:43:39 |
depth | 2 |
children | 1 |
last_payout | 2020-07-08 23:39: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 | 171 |
author_reputation | 1,294,216,366,091,739 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,289,348 |
net_rshares | 65,374,017,887 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jenkinrocket | 0 | 65,374,017,887 | 100% |
Thanks for the quick response!
author | jenkinrocket |
---|---|
permlink | qcte5r |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-07-01 23:49:00 |
last_update | 2020-07-01 23:49:00 |
depth | 3 |
children | 0 |
last_payout | 2020-07-08 23:49: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 | 30 |
author_reputation | 26,749,165,203,694 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,289,460 |
net_rshares | 0 |
Your publications on the new improvements throughout Hive have become my favorites to read! You have done an incredible job programming all these new improvements. I found it very interesting to know that you are using Python and SQL on Hivemid, I will consider learning Python to keep myself updated and maybe drop some C. Greetings! @blocktrades
author | lucianav |
---|---|
permlink | qcrvtj |
category | hive-139531 |
json_metadata | {"users":["blocktrades"],"app":"hiveblog/0.1"} |
created | 2020-07-01 04:15:24 |
last_update | 2020-07-01 04:15:24 |
depth | 1 |
children | 0 |
last_payout | 2020-07-08 04:15:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.030 HBD |
curator_payout_value | 0.031 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 349 |
author_reputation | 1,264,069,395,597,868 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,273,369 |
net_rshares | 291,441,122,443 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cunigarro | 0 | 2,705,430,445 | 100% | ||
peakd | 0 | 288,735,691,998 | 21% |
😃😃😃😃😃😃
author | marki99 |
---|---|
permlink | re-blocktrades-qcsh1w |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.06.3"} |
created | 2020-07-01 11:54:00 |
last_update | 2020-07-01 11:54:00 |
depth | 1 |
children | 0 |
last_payout | 2020-07-08 11:54: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 | 6 |
author_reputation | 11,400,723,818,181 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,279,612 |
net_rshares | 0 |
God
author | mouh24dz | ||||||
---|---|---|---|---|---|---|---|
permlink | re-blocktrades-202071t23248699z | ||||||
category | hive-139531 | ||||||
json_metadata | {"tags":["hive","blocktrades","hivemind","development"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"} | ||||||
created | 2020-07-01 01:32:51 | ||||||
last_update | 2020-07-01 01:32:51 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2020-07-08 01:32: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 | 3 | ||||||
author_reputation | 1,281,678 | ||||||
root_title | "A preview of Hivemind Improvements" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 98,270,915 | ||||||
net_rshares | 0 |
Very nice, this will make the interface will run smoothly.
author | mrnightmare89 |
---|---|
permlink | qctdzi |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-07-01 23:45:21 |
last_update | 2020-07-01 23:45:21 |
depth | 1 |
children | 0 |
last_payout | 2020-07-08 23:45: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 | 58 |
author_reputation | 263,354,568,367,810 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,289,407 |
net_rshares | 0 |
We certainly appreciate the type of work you're doing!
author | peakd |
---|---|
permlink | re-blocktrades-qcsl77 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.06.3"} |
created | 2020-07-01 13:23:33 |
last_update | 2020-07-01 13:23:33 |
depth | 1 |
children | 0 |
last_payout | 2020-07-08 13:23: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 | 54 |
author_reputation | 318,650,540,403,799 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,280,485 |
net_rshares | 0 |
Thank you very much for your work! 🙏 Hug from Portugal
author | portugalcoin |
---|---|
permlink | re-blocktrades-qcsblc |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.06.3"} |
created | 2020-07-01 09:56:00 |
last_update | 2020-07-01 09:56:00 |
depth | 1 |
children | 0 |
last_payout | 2020-07-08 09:56: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 | 54 |
author_reputation | 603,431,444,455,253 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,278,033 |
net_rshares | 0 |
> create apps that scale to large numbers of users That's the biggest challenge.
author | sanjeevm |
---|---|
permlink | re-blocktrades-qcs1l2 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.06.2"} |
created | 2020-07-01 06:19:51 |
last_update | 2020-07-01 06:19:51 |
depth | 1 |
children | 0 |
last_payout | 2020-07-08 06:19:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.088 HBD |
curator_payout_value | 0.087 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 82 |
author_reputation | 723,489,920,133,581 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,275,125 |
net_rshares | 766,932,130,843 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
nainaztengra | 0 | 766,932,130,843 | 100% |
That's some serious gains right there!
author | shmoogleosukami |
---|---|
permlink | re-blocktrades-qcsepo |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.06.3"} |
created | 2020-07-01 11:03:24 |
last_update | 2020-07-01 11:03:24 |
depth | 1 |
children | 0 |
last_payout | 2020-07-08 11:03: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 | 38 |
author_reputation | 228,242,899,913,302 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,278,979 |
net_rshares | 0 |
Thanks, love reading behind-the-scene updates! Keep up the good work.
author | soyrosa |
---|---|
permlink | re-blocktrades-qcst9p |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.06.3"} |
created | 2020-07-01 16:17:51 |
last_update | 2020-07-01 16:17:51 |
depth | 1 |
children | 0 |
last_payout | 2020-07-08 16:17: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 | 70 |
author_reputation | 335,707,483,911,582 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,283,093 |
net_rshares | 0 |
Good stuff. Optimising code for speed and memory efficiency is not easy, so those improvements are very impressive. We need the Hive sites to be responsive as people are used to that these days. Some of us remember waiting ages for images to download over a modem, but now fast connections are standard and some may give up if a site takes more than a few seconds to refresh. Keep up the good work.
author | steevc |
---|---|
permlink | re-blocktrades-qcs7m2 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.06.3"} |
created | 2020-07-01 08:30:03 |
last_update | 2020-07-01 08:30:03 |
depth | 1 |
children | 2 |
last_payout | 2020-07-08 08:30:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.016 HBD |
curator_payout_value | 0.016 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 399 |
author_reputation | 1,395,588,168,045,085 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,276,899 |
net_rshares | 149,901,148,668 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
peakd | 0 | 149,901,148,668 | 11% |
I remember the awful noises of my dial up modem connecting to the internet lol then my mom picking up the phone and screwing it all up! Do you remember Walmart having an internet software? Lol that’s what we were using since it was free.
author | cmplxty | ||||||
---|---|---|---|---|---|---|---|
permlink | re-steevc-202071t54420134z | ||||||
category | hive-139531 | ||||||
json_metadata | {"tags":["esteem"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"} | ||||||
created | 2020-07-01 09:44:21 | ||||||
last_update | 2020-07-01 09:44:21 | ||||||
depth | 2 | ||||||
children | 1 | ||||||
last_payout | 2020-07-08 09:44:21 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.012 HBD | ||||||
curator_payout_value | 0.013 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 238 | ||||||
author_reputation | 787,402,785,957,085 | ||||||
root_title | "A preview of Hivemind Improvements" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 98,277,899 | ||||||
net_rshares | 126,126,674,964 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steevc | 0 | 126,126,674,964 | 10% |
Back then you could tell the browser not to download images to start with and then watch them appear line by line. Fun days. I used Compuserve for a while and various other UK services. One called Freeserve was popular as you just paid for the phone calls. I ended up getting a second just for the computer, which was an Amiga back then.
author | steevc |
---|---|
permlink | re-cmplxty-qcsfxy |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.06.3"} |
created | 2020-07-01 11:29:57 |
last_update | 2020-07-01 11:29:57 |
depth | 3 |
children | 0 |
last_payout | 2020-07-08 11:29:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 337 |
author_reputation | 1,395,588,168,045,085 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,279,333 |
net_rshares | 0 |
Woww
author | sunil1885 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-blocktrades-202072t2017313z | ||||||
category | hive-139531 | ||||||
json_metadata | {"tags":["hive","blocktrades","hivemind","development"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"} | ||||||
created | 2020-07-02 14:47:06 | ||||||
last_update | 2020-07-02 14:47:06 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2020-07-09 14:47: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 | 4 | ||||||
author_reputation | 2,029,784,905 | ||||||
root_title | "A preview of Hivemind Improvements" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 98,300,944 | ||||||
net_rshares | 0 |
This is really amazing progress. Very exciting stuff.
author | themarkymark |
---|---|
permlink | re-blocktrades-qcs4px |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.06.2"} |
created | 2020-07-01 07:27:33 |
last_update | 2020-07-01 07:27:33 |
depth | 1 |
children | 0 |
last_payout | 2020-07-08 07:27:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 55 |
author_reputation | 1,780,080,004,399,932 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,276,005 |
net_rshares | -11,498,975,530 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tolaramazan | 0 | -68,769,053,387 | -99.7% | ||
seabuckthorn | 0 | -54,138,315,432 | -99.7% | ||
the66squirrel | 0 | -38,818,956,852 | -99.7% | ||
peakd | 0 | 150,227,350,141 | 11% |
I don't know much about that language but it's good to always be informed, the blockchains I met through you did an excellent job. Good luck on your new project
author | theresa16 |
---|---|
permlink | qcrpv6 |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2020-07-01 02:07:57 |
last_update | 2020-07-01 02:07:57 |
depth | 1 |
children | 0 |
last_payout | 2020-07-08 02:07:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.010 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 160 |
author_reputation | 798,855,836,563,768 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,271,423 |
net_rshares | 102,450,677,873 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tgenedavis | 0 | 102,450,677,873 | 100% |
Freaking bravo blocktrades. I like that creation of new api methods, this will suits the need of all kind of apps! Hope you're keeping up the great work! Steemit will never show this much transparency in what they do. At least you're sharing with us the progress :)
author | tngflx |
---|---|
permlink | re-blocktrades-qcrl96 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.06.2"} |
created | 2020-07-01 00:27:06 |
last_update | 2020-07-01 00:27:06 |
depth | 1 |
children | 0 |
last_payout | 2020-07-08 00:27:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.010 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 265 |
author_reputation | 17,396,455,988,713 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,270,211 |
net_rshares | 106,667,477,602 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tgenedavis | 0 | 106,667,477,602 | 100% |
Great work, speedups of 10x are really awesome and this will both help taking the cost down and also scaling up Hive for even more users :)
author | vikisecrets |
---|---|
permlink | re-blocktrades-qcsgya |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2020.06.2"} |
created | 2020-07-01 11:51:42 |
last_update | 2020-07-01 11:51:42 |
depth | 1 |
children | 0 |
last_payout | 2020-07-08 11:51:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.092 HBD |
curator_payout_value | 0.092 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 139 |
author_reputation | 1,220,726,190,237,890 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,279,598 |
net_rshares | 790,924,717,093 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
dhimmel | 0 | 641,470,805,852 | 12% | ||
dein-problem | 0 | -121,753,598 | -1% | ||
peakd | 0 | 149,575,664,839 | 11% |
Many success
author | wendyth16 | ||||||
---|---|---|---|---|---|---|---|
permlink | re-blocktrades-2020630t2035860z | ||||||
category | hive-139531 | ||||||
json_metadata | {"tags":["hive","blocktrades","hivemind","development"],"app":"esteem/2.2.5-mobile","format":"markdown+html","community":"hive-125125"} | ||||||
created | 2020-07-01 00:04:27 | ||||||
last_update | 2020-07-01 00:04:27 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2020-07-08 00:04:27 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.010 HBD | ||||||
curator_payout_value | 0.011 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 12 | ||||||
author_reputation | 892,609,374,370,088 | ||||||
root_title | "A preview of Hivemind Improvements" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 98,269,919 | ||||||
net_rshares | 104,535,442,719 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tgenedavis | 0 | 104,535,442,719 | 100% |
I want to use the https://hive.hivesigner.com/ API and analyze the operations performed in HIVE through this API. I want to get the information about the operations performed in HIVE from 2016 to 2018, but the request I send to the API is very time consuming. Can anyone guide me?
author | yosra.yusefi |
---|---|
permlink | qdr9sa |
category | hive-139531 |
json_metadata | {"links":["https://hive.hivesigner.com/"],"app":"hiveblog/0.1"} |
created | 2020-07-20 06:53:03 |
last_update | 2020-07-20 06:53:03 |
depth | 1 |
children | 0 |
last_payout | 2020-07-27 06:53: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 | 280 |
author_reputation | 9,388,003,440 |
root_title | "A preview of Hivemind Improvements" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 98,616,998 |
net_rshares | 0 |