 [HiveSense](https://gitlab.syncad.com/hive/hivesense) is a HAF app that creates semantic embeddings for Hive posts. These embeddings will be used by the new HiveSense API calls to find posts that are similar to each other and to find posts that match a user’s search request. A while back, one of our devs posted on the early work we did developing a semantic search API server for hive posts called HiveSense. Today’s post describes the follow-on work in the past 2.5 months as we prepare for an official release of HiveSense as part of the standard HAF API stack, so this post assumes you’ve previously read [the original post about HiveSense](https://hive.blog/hive-139531/@thebeedevs/hivesense-why-nothing-worked-at-first-and-what-we-did-about-it). This post is even more technical than the previous one, so the primary audience is devs interested in practical considerations associated with using semantic search in their apps or who would like to contribute to HiveSense development in the future. ### Performance Optimizations * Use Ollama’s batch API to generate multiple embeddings in a single call * Add support for, and default to, using 16 bit precision floating point vectors. This reduced the 768-dimension embeddings table size from 100GB to 50GB. * Use PySBD for sentence detection instead of spacy (smaller) * Dramatically reduced size of docker images (many changes here, but biggest win was removal of pgai from default config) * Allow HiveSense to process data concurrently while hivemind is still in massive sync (originally Hivesense could only be synced after hivemind was in livesync, and hivemind takes about 2.5 days to sync on a very fast system). Since HiveSense syncs faster than hivemind, and can now sync in parallel with hivemind except for the time to create the HNSW index, HiveSense now only adds 1.5 hours to overall time to sync up a HAF API node from scratch. * Redesigned worker thread implementation ### Recall Optimizations (Recall here basically is referring to the “quality” of the search results) * Chunk long posts on sentence boundaries to capture semantic meaning better in the chunks * Chunk all of a post instead of limiting a post to a max of 3 chunks. This creates more embeddings, but allows for better matching of long posts, especially if they switch topics. * Target chunk size based on number of tokens rather than raw character count * Prepend the title to the post so the title will be used when calculating the embedding of the post’s first chunk * Change the minimum word count for posts to a minimum token count, make the token count configurable, and default the minimum to 75 tokens * Add many options to ease switching to better embedding models in the future and to examine tradeoffs between models * Use query prefix to improve embeddings generated for search queries * Don’t discard non-ASCII characters (these were being removed for embedding calculations) * Improve filtering of HTML * Increased m and ef_construction to improve recall quality, especially for “small queries” that sometimes got poor search results. ### Miscellaneous changes * Track the number of tokens in each post and order the embeddings generated for each post * Allow filtering out shorter posts at search time (previously this could only be done at index time) * Change API results to make paging deterministic (in progress) ## Redesign of embeddings tables and indexing methodology Originally we just used a single table with 768-dimension vectors and built a HNSW index on this table. Both the table and the index were originally 100GB each in size (e.g. 200GB total storage required by HiveSense). Our first optimization was to use 16-bit precision numbers instead of 32-bit to cut storage requirements in half (100GB in total size, which seemed like a reasonable amount of storage). But another problem we found was that it was very time consuming to create an HNSW index this large. On systems without a LOT of memory, it would take quite a few days. On systems with 128GB of RAM installed, this time could be cut down to around 8.5 hours (the current code that computes this index really favors having sufficient memory for the index creation), but this seemed a steep requirement for most API servers (we have internal servers that have this much memory, but the cloud servers we rent only have 64GB). The solution we arrived at was to create secondary smaller embeddings table and create an HNSW index on that smaller table, then use the larger embeddings table for the final similarity computation. HiveSense uses principal component analysis (PCA) to generate a second embeddings table with much smaller 128-dimension vectors (table size 9GB) and a much smaller HNSW index on this table (the new HNSW index is only 16GB). This new index only takes 1.5 hours to build and only requires 28GB of memory (can be build in 4.5 hours on systems with less memory). Storage-wise, with all the optimizations, we reduced total storage usage from 100+100=200GB down to 50+9+16=75GB. This approach also dramatically speeds up API query time as we’re searching a much smaller index, but we don’t have full statistics for this yet (our guess is somewhere between 3x and 10x faster). Of course, we did have one concern about this approach: we needed to ensure it didn’t negatively effect recall results. To ensure this, we compared search results for various queries between a full brute force search of the embeddings and a search using the new index to ensure the results didn’t significantly change. ## New Sync Mode for HiveSense A normal CPU is sufficient to generate embeddings for short text phrases like those used for search queries, but generating semantic embeddings for posts is too computationally intensive, so a GPU is required to generate them at a reasonable speed. We didn’t want to force API node operators to have a GPU, so HiveSense can be configured to operate in two different modes: independent mode and sync mode. In the independent mode, HiveSense expects to have access to one or more Ollama servers with GPUs providing computation power. In sync mode, the embeddings for posts are fetched from another HiveSense server, so the local HiveSense server only needs to compute embeddings for user search queries (which can computed with an Ollama server powered just by a reasonable CPU). As we don’t expect most current API nodes to have access to a GPU (our primary API node, api.hive.blog doesn’t), we expect most API node operators will configure HiveSense to operate in sync mode, sparing their server from repeating the expensive computations required for computing post embeddings. ## What’s next for HiveSense? We need to change the API to stabilize paging of search results based on our new approach: we will return 1000 results, with the first 20 results including permlink + summary results for the post, and the remaining results just providing permlinks. Client side apps will need to fetch further post summaries in case the user pages beyond the first page. We need to update our app testing API server, api.syncad.com, with the new stack so that Hive apps can add support for HiveSense and perform “real-world” testing. Finally, we need to officially release HiveSense along the other updated HAF apps. Currently I expect that to happen near the end of this quarter (sometime in September).
author | blocktrades |
---|---|
permlink | improving-hive-s-semantic-search-performance |
category | hive-139531 |
json_metadata | {"tags":["hive-139531","hive","blockchain","software","blocktrades"],"image":["https://images.hive.blog/DQmSihw8Kz4U7TuCQa98DDdCzqbqPFRumuVWAbareiYZW1Z/blocktrades%20update.png"],"links":["https://gitlab.syncad.com/hive/hivesense"],"app":"hiveblog/0.1","format":"markdown"} |
created | 2025-08-01 21:58:48 |
last_update | 2025-08-01 21:58:48 |
depth | 0 |
children | 9 |
last_payout | 1969-12-31 23:59:59 |
cashout_time | 2025-08-08 21:58:48 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 166.746 HBD |
promoted | 0.000 HBD |
body_length | 7,525 |
author_reputation | 1,294,040,559,663,139 |
root_title | "Improving Hive’s semantic search performance" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 144,605,562 |
net_rshares | 549,027,347,613,491 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
smooth | 0 | 147,547,687,191,963 | 100% | ||
adm | 0 | 24,944,525,502,384 | 100% | ||
fractalnode | 0 | 19,939,308,916 | 50% | ||
acidyo | 0 | 26,381,851,776,582 | 100% | ||
leprechaun | 0 | 7,896,735,546 | 65% | ||
gtg | 0 | 59,132,033,367,018 | 100% | ||
good-karma | 0 | 28,054,513,932 | 2.3% | ||
roelandp | 0 | 4,832,540,221 | 0.37% | ||
ausbitbank | 0 | 3,348,563,040,941 | 100% | ||
cloh76 | 0 | 145,734,272,936 | 100% | ||
diana.catherine | 0 | 2,942,193,118 | 25% | ||
deanliu | 0 | 7,911,753,158,751 | 100% | ||
raymonjohnstone | 0 | 7,104,845,534 | 100% | ||
social | 0 | 1,033,428,790 | 100% | ||
ace108 | 0 | 523,668,276,331 | 10% | ||
kaykunoichi | 0 | 1,085,488,544 | 50% | ||
akipponn | 0 | 202,395,731,381 | 100% | ||
magicmonk | 0 | 7,574,414,546,797 | 100% | ||
timcliff | 0 | 182,398,401,374 | 100% | ||
josepimpo | 0 | 47,016,060,557 | 100% | ||
joele | 0 | 20,582,720,681 | 100% | ||
oflyhigh | 0 | 4,835,420,926,640 | 100% | ||
shanghaipreneur | 0 | 23,870,913,549 | 100% | ||
borran | 0 | 1,257,181,741,568 | 100% | ||
rmach | 0 | 3,509,514,314 | 50% | ||
lemouth | 0 | 3,392,651,430,220 | 100% | ||
darkflame | 0 | 75,492,066,952 | 25% | ||
esecholo | 0 | 13,880,729,644 | 100% | ||
penguinpablo | 0 | 143,146,443,408 | 14% | ||
uwelang | 0 | 4,389,709,681,623 | 100% | ||
canadian-coconut | 0 | 6,608,582,958,361 | 44% | ||
chadmichaellibby | 0 | 2,636,811,894 | 100% | ||
fraenk | 0 | 69,986,718,738 | 100% | ||
cornerstone | 0 | 1,427,561,862,755 | 50% | ||
funnyman | 0 | 1,482,168,744 | 5.6% | ||
steemcleaners | 0 | 30,666,895,796 | 80% | ||
michelle.gent | 0 | 334,175,077,347 | 100% | ||
jang | 0 | 1,532,905,083 | 100% | ||
lloyddavis | 0 | 16,809,464,432 | 75% | ||
ssekulji | 0 | 148,273,370,255 | 100% | ||
eforucom | 0 | 24,094,706,673 | 100% | ||
siniceku | 0 | 1,504,165,487 | 100% | ||
moretea | 0 | 609,264,229 | 2% | ||
lydon.sipe | 0 | 5,818,879,412 | 100% | ||
techslut | 0 | 336,710,981,163 | 50% | ||
consciousness | 0 | 10,013,126,809 | 100% | ||
triviummethod | 0 | 5,776,683,579 | 100% | ||
jaybird | 0 | 5,101,870,857 | 100% | ||
discovereurovelo | 0 | 977,076,477 | 0.75% | ||
redes | 0 | 4,708,611,017,250 | 48% | ||
whistleblower | 0 | 10,515,040,181 | 100% | ||
steemcure | 0 | 457,059,503 | 100% | ||
esteemapp | 0 | 7,229,581,801 | 2.3% | ||
veganism | 0 | 5,746,342,043 | 100% | ||
justinw | 0 | 159,594,661,658 | 33% | ||
humanearl | 0 | 2,032,488,858 | 70% | ||
v4vapid | 0 | 16,017,017,806,096 | 100% | ||
steemitcommunity | 0 | 1,354,326,995 | 100% | ||
askari | 0 | 1,989,600,703 | 20% | ||
bxt | 0 | 1,131,068,917,785 | 100% | ||
tarazkp | 0 | 4,951,302,579,328 | 50% | ||
yiyi.maiola | 0 | 6,743,443,530 | 85% | ||
thereikiforest | 0 | 1,675,501,298 | 10% | ||
diggndeeper.com | 0 | 7,918,748,729,497 | 100% | ||
oneshot | 0 | 12,724,784,752 | 100% | ||
fronttowardenemy | 0 | 4,362,658,153 | 1.5% | ||
trafalgar | 0 | 55,548,527,356,210 | 100% | ||
ganjafarmer | 0 | 512,300,787 | 0.28% | ||
daniel.dalo | 0 | 3,999,446,521 | 50% | ||
freedomexists | 0 | 1,596,762,984 | 100% | ||
freebornsociety | 0 | 5,887,809,193 | 10% | ||
dickturpin | 0 | 76,837,164,074 | 100% | ||
lizanomadsoul | 0 | 3,362,078,145 | 1.5% | ||
raindrop | 0 | 859,828,298,241 | 100% | ||
l337m45732 | 0 | 1,781,383,149 | 4% | ||
passion-fruit | 0 | 11,357,088,601 | 92% | ||
fortune-master | 0 | 11,240,604,804 | 92% | ||
dune69 | 0 | 57,241,799,704 | 100% | ||
vbnm21 | 0 | 6,629,731,978 | 100% | ||
smasssh | 0 | 675,869,313,146 | 30% | ||
mes | 0 | 1,396,881,245,883 | 100% | ||
thelordsfinest | 0 | 508,658,619 | 100% | ||
andyjaypowell | 0 | 1,058,888,399,651 | 99% | ||
iansart | 0 | 4,722,063,511 | 100% | ||
schlees | 0 | 328,872,204,786 | 20% | ||
jagged | 0 | 1,655,025,348 | 25% | ||
rt395 | 0 | 5,507,341,820 | 10% | ||
uruiamme | 0 | 1,384,286,450 | 12% | ||
bigram13 | 0 | 32,100,728,205 | 100% | ||
simms50 | 0 | 18,945,352,550 | 75% | ||
fredrikaa | 0 | 2,031,173,056,028 | 100% | ||
joechiappetta | 0 | 138,577,640,792 | 100% | ||
sustainablyyours | 0 | 5,747,782,897 | 50% | ||
drwom | 0 | 500,724,151 | 1.15% | ||
alphacore | 0 | 44,765,527,354 | 43.29% | ||
galenkp | 0 | 9,759,549,276,973 | 100% | ||
enjar | 0 | 1,307,843,315,287 | 100% | ||
mahdiyari | 0 | 1,131,754,805,230 | 100% | ||
jackmiller | 0 | 538,569,211 | 70% | ||
hellene8 | 0 | 5,033,887,407 | 100% | ||
spectrumecons | 0 | 3,572,378,946,214 | 50% | ||
jayna | 0 | 79,151,619,278 | 10% | ||
stresskiller | 0 | 15,209,745,350 | 25% | ||
rival | 0 | 12,434,658,287 | 100% | ||
princessmewmew | 0 | 1,940,428,755 | 0.75% | ||
wesphilbin | 0 | 30,617,618,189 | 80% | ||
joeyarnoldvn | 0 | 33,828,783,053 | 100% | ||
heyitshaas | 0 | 13,174,340,926 | 100% | ||
offgridlife | 0 | 9,775,288,142 | 100% | ||
papilloncharity | 0 | 3,669,967,314,084 | 80.5% | ||
gunthertopp | 0 | 1,654,416,605,083 | 32.5% | ||
gniksivart | 0 | 24,543,454,199 | 10% | ||
eturnerx | 0 | 20,202,792,749 | 1.5% | ||
polaleye50 | 0 | 2,620,531,352 | 100% | ||
tattoodjay | 0 | 585,284,414,747 | 15% | ||
unyimeetuk | 0 | 761,538,924 | 10% | ||
theguruasia | 0 | 3,838,737,363 | 100% | ||
hope-on-fire | 0 | 248,872,840,214 | 26% | ||
howo | 0 | 1,865,095,681,836 | 100% | ||
stayoutoftherz | 0 | 3,193,635,007,583 | 25% | ||
bambukah | 0 | 28,278,802,327 | 32% | ||
cranium | 0 | 1,873,829,614 | 20% | ||
shasta | 0 | 373,182,262,493 | 100% | ||
resiliencia | 0 | 37,678,964,084 | 100% | ||
kharrazi | 0 | 3,413,263,517 | 100% | ||
yacobh | 0 | 11,666,624,886 | 70% | ||
kiobot | 0 | 557,441,392 | 25% | ||
sharelovenothate | 0 | 449,305,522 | 20% | ||
horpey | 0 | 73,307,594,162 | 100% | ||
sunisa | 0 | 713,797,104 | 1.15% | ||
shogo | 0 | 5,171,637,266 | 100% | ||
fionasfavourites | 0 | 217,730,012,311 | 100% | ||
aafeng | 0 | 221,727,380,928 | 25% | ||
aaronleang | 0 | 10,754,904,197 | 20% | ||
santigs | 0 | 928,344,092,787 | 100% | ||
floatinglin | 0 | 8,425,395,382 | 100% | ||
zirochka | 0 | 1,111,905,762,002 | 100% | ||
spaminator | 0 | 497,865,834,930 | 80% | ||
ekkah | 0 | 877,658,368 | 100% | ||
kimzwarch | 0 | 17,635,326,823 | 4% | ||
accelerator | 0 | 39,931,835,759 | 60% | ||
holbein81 | 0 | 645,653,949 | 100% | ||
eastmael | 0 | 32,955,572,824 | 100% | ||
artlover | 0 | 1,971,322,915 | 100% | ||
sorin.cristescu | 0 | 7,391,932,003 | 1.15% | ||
taskmaster4450 | 0 | 396,850,022,995 | 20% | ||
votehero | 0 | 21,433,247,467 | 4.2% | ||
silversaver888 | 0 | 290,424,421,432 | 25% | ||
dilimunanzar | 0 | 19,392,385,365 | 100% | ||
msp-makeaminnow | 0 | 21,473,878,024 | 22.7% | ||
mcfarhat | 0 | 32,429,376,209 | 100% | ||
omra-sky | 0 | 73,099,523,823 | 50% | ||
sayee | 0 | 1,107,890,107 | 2.07% | ||
esteem.app | 0 | 931,188,013 | 2.3% | ||
m-san | 0 | 3,606,246,993 | 100% | ||
investegg | 0 | 194,407,426,650 | 100% | ||
alfamano | 0 | 467,164,467 | 50% | ||
vegoutt-travel | 0 | 64,127,440,097 | 50% | ||
spacesheep | 0 | 5,460,750,002 | 100% | ||
afterglow | 0 | 3,500,795,655 | 50% | ||
fulcrumleader | 0 | 8,374,162,694 | 100% | ||
seareader1 | 0 | 1,276,747,656 | 10% | ||
petrolinivideo | 0 | 3,850,640,315 | 50% | ||
anadolu | 0 | 386,678,349,627 | 20% | ||
dejan.vuckovic | 0 | 15,801,738,990 | 15% | ||
ybanezkim26 | 0 | 64,708,787,968 | 100% | ||
thekittygirl | 0 | 556,192,370,810 | 100% | ||
small.minion | 0 | 8,554,222,278 | 100% | ||
mrhill | 0 | 2,604,077,441 | 5% | ||
eonwarped | 0 | 19,507,692,159 | 8% | ||
omstavan | 0 | 8,479,275,442 | 100% | ||
steveconnor | 0 | 99,797,607,020 | 50% | ||
xsasj | 0 | 2,155,868,074 | 1.5% | ||
travoved | 0 | 87,697,354,788 | 100% | ||
aboutcoolscience | 0 | 25,620,827,102 | 80% | ||
angelina6688 | 0 | 84,574,030,412 | 80% | ||
mytechtrail | 0 | 18,295,607,214 | 15% | ||
steeminer4up | 0 | 498,184,844 | 100% | ||
traf | 0 | 4,776,582,335,015 | 100% | ||
sunnyali | 0 | 1,094,068,601 | 25% | ||
itchyfeetdonica | 0 | 6,149,136,892 | 0.75% | ||
prometehum | 0 | 1,033,586,610 | 100% | ||
alexandraioana26 | 0 | 10,003,509,973 | 25% | ||
funshel | 0 | 469,513,449 | 25% | ||
spiritabsolute | 0 | 31,411,812,602 | 100% | ||
ahmadmangazap | 0 | 3,666,854,851 | 1.15% | ||
thedolphincocoon | 0 | 113,607,375,467 | 80% | ||
wiseagent | 0 | 227,620,777,311 | 25% | ||
cryptonized | 0 | 236,592,088 | 14% | ||
peter.goki | 0 | 772,030,566 | 100% | ||
dechastre | 0 | 8,486,397,206 | 80% | ||
gabrielatravels | 0 | 114,017,122,054 | 50% | ||
thedrewshow | 0 | 782,025,500 | 100% | ||
alexanderfluke | 0 | 174,793,109,194 | 10% | ||
chenee | 0 | 644,003,189 | 100% | ||
branbello | 0 | 3,025,729,258 | 50% | ||
edwardstobia | 0 | 9,740,072,038 | 50% | ||
hijosdelhombre | 0 | 66,924,470,839 | 50% | ||
barineka | 0 | 543,567,384 | 100% | ||
bengy | 0 | 2,952,465,777 | 3% | ||
topchuqs | 0 | 901,752,886 | 50% | ||
aiziqi | 0 | 2,240,613,338 | 10% | ||
tryskele | 0 | 5,410,358,576 | 20% | ||
socialmediaseo | 0 | 2,106,139,306 | 100% | ||
leslierevales | 0 | 7,216,531,563 | 50% | ||
coinmeria | 0 | 757,555,641 | 35% | ||
manncpt | 0 | 2,896,727,898 | 1.5% | ||
soyrosa | 0 | 426,090,814,460 | 50% | ||
aakom | 0 | 453,237,111 | 100% | ||
jnmarteau | 0 | 583,628,850 | 1.5% | ||
philnewton | 0 | 590,014,018 | 7.5% | ||
atongis | 0 | 26,247,392,012 | 10% | ||
kamalkhann | 0 | 622,460,024 | 20.56% | ||
beautifulfield | 0 | 1,991,287,859 | 80% | ||
natha93 | 0 | 866,353,875 | 50% | ||
cryptosharon | 0 | 197,917,179,217 | 100% | ||
minerspost | 0 | 547,484,927 | 12.5% | ||
brayias | 0 | 2,099,112,102 | 100% | ||
danielcarrerag | 0 | 53,639,186,353 | 100% | ||
beggars | 0 | 24,317,461,525 | 100% | ||
tomhall | 0 | 24,846,705,186 | 100% | ||
pkocjan | 0 | 956,205,851 | 80% | ||
robertbira | 0 | 2,130,987,726 | 5% | ||
rubelynmacion | 0 | 47,216,331,362 | 100% | ||
bhattg | 0 | 22,930,246,845 | 2.07% | ||
nataboo | 0 | 1,331,858,201 | 50% | ||
onlavu | 0 | 863,631,204 | 100% | ||
ruth-elise | 0 | 470,991,124 | 25% | ||
alexdory | 0 | 9,392,957,711 | 50% | ||
cst90 | 0 | 518,104,732,661 | 100% | ||
lisfabian | 0 | 4,595,696,906 | 100% | ||
ashtv | 0 | 419,935,316,733 | 100% | ||
russellstockley | 0 | 132,781,759,084 | 100% | ||
g4fun | 0 | 11,575,576,033 | 25% | ||
jjerryhan | 0 | 112,300,754,302 | 40.25% | ||
putu300 | 0 | 11,155,051,318 | 50% | ||
siphon | 0 | 132,536,576,380 | 50% | ||
wildarms65 | 0 | 9,153,176,867 | 100% | ||
amigoponc | 0 | 13,586,481,285 | 100% | ||
supreme-verdict | 0 | 493,331,612 | 41.12% | ||
almi | 0 | 345,971,416,867 | 50% | ||
homeginkit | 0 | 70,896,101,570 | 100% | ||
didutza | 0 | 1,222,499,427 | 75% | ||
properfraction | 0 | 68,480,828,403 | 100% | ||
jonmylestan | 0 | 3,128,953,238 | 50% | ||
satren | 0 | 35,897,862,865 | 20% | ||
miosha | 0 | 597,597,138,832 | 100% | ||
cryptozdk | 0 | 1,220,216,768 | 50% | ||
mima2606 | 0 | 27,202,422,405 | 70% | ||
jocieprosza | 0 | 173,922,304,025 | 100% | ||
greendo | 0 | 1,740,298,729 | 100% | ||
sunshinebear | 0 | 1,699,521,584 | 50% | ||
steemitcolombia | 0 | 4,358,132,016 | 100% | ||
grzyb77 | 0 | 1,410,080,321 | 15% | ||
silverd510 | 0 | 20,559,122,259 | 75% | ||
immanuel94 | 0 | 2,680,761,852 | 100% | ||
andablackwidow | 0 | 74,486,410,455 | 100% | ||
bdlatif | 0 | 2,301,415,317 | 50% | ||
bil.prag | 0 | 203,157,711,842 | 19% | ||
vcclothing | 0 | 1,065,185,124 | 0.6% | ||
uyobong | 0 | 76,613,644,782 | 100% | ||
rivalzzz | 0 | 211,145,526,647 | 100% | ||
louis88 | 0 | 3,275,736,690,127 | 100% | ||
reversehitler88 | 0 | 1,411,656,822 | 10% | ||
paragism | 0 | 4,035,960,601 | 100% | ||
jkramer | 0 | 1,647,935,527,244 | 100% | ||
franciscopr | 0 | 30,274,206,537 | 100% | ||
racibo | 0 | 925,876,040 | 1% | ||
wolfhart | 0 | 16,258,470,092 | 40% | ||
laviniatherapist | 0 | 2,073,201,101 | 42.5% | ||
yameen | 0 | 444,320,550,372 | 100% | ||
abdulmath | 0 | 3,895,102,251 | 50% | ||
jemmanuel | 0 | 10,637,509,930 | 20% | ||
gadrian | 0 | 764,162,628,071 | 50% | ||
fotogruppemunich | 0 | 3,491,141,152 | 80% | ||
allover | 0 | 1,258,451,367 | 50% | ||
xchng | 0 | 28,344,069,652 | 80% | ||
ross92 | 0 | 4,498,332,152 | 100% | ||
gifty-e | 0 | 942,084,261 | 100% | ||
choco11oreo11 | 0 | 4,454,337,464 | 100% | ||
michellpiala | 0 | 2,988,312,834 | 50% | ||
voitaksoutache | 0 | 4,716,920,782 | 50% | ||
quochuy | 0 | 9,727,838,408,293 | 100% | ||
el-dee-are-es | 0 | 3,635,396,069 | 10% | ||
steemromania | 0 | 15,070,269,070 | 50% | ||
yaraha | 0 | 3,241,468,186 | 20% | ||
beco132 | 0 | 2,016,671,835 | 54% | ||
superlao | 0 | 2,831,568,806 | 5% | ||
veteranforcrypto | 0 | 4,380,838,392 | 20% | ||
sbi4 | 0 | 474,686,607,961 | 97.35% | ||
leomolina | 0 | 599,781,878 | 100% | ||
fw206 | 0 | 9,086,396,685,983 | 100% | ||
slobberchops | 0 | 8,750,105,283,115 | 100% | ||
techcoderx | 0 | 960,362,100,054 | 100% | ||
sayago | 0 | 1,251,663,232 | 25% | ||
pladozero | 0 | 9,644,055,212 | 10% | ||
crimo | 0 | 525,820,621 | 10% | ||
nateaguila | 0 | 1,219,935,168,213 | 100% | ||
steem-tube | 0 | 8,050,991,836 | 100% | ||
fraenklovesyou | 0 | 3,521,664,669 | 100% | ||
cambridgeport90 | 0 | 14,897,355,574 | 50% | ||
steddyman | 0 | 2,461,124,789 | 100% | ||
cryptoandcoffee | 0 | 528,966,130,130 | 10% | ||
joanm897 | 0 | 5,430,133,010 | 100% | ||
myfreebtc | 0 | 18,369,224,699 | 100% | ||
kstop1 | 0 | 16,142,296,399 | 100% | ||
solarwarrior | 0 | 7,681,231,234 | 100% | ||
the.rocket.panda | 0 | 2,310,757,061 | 20% | ||
thegreatdayne | 0 | 789,650,863 | 50% | ||
voitakjewelry | 0 | 801,420,605 | 50% | ||
digital.mine | 0 | 117,168,631,692 | 100% | ||
purrix | 0 | 18,041,474,876 | 100% | ||
bjornb | 0 | 1,683,900,503 | 50% | ||
cheese4ead | 0 | 33,980,218,411 | 20% | ||
marjanko | 0 | 372,401,349,122 | 100% | ||
mannacurrency | 0 | 20,355,370,984 | 10% | ||
scrawly | 0 | 2,574,433,795 | 100% | ||
kwilley | 0 | 41,450,671,777 | 50% | ||
drsensor | 0 | 2,289,015,024 | 80% | ||
hemo | 0 | 3,669,582,758 | 100% | ||
steemulant | 0 | 2,264,244,844 | 100% | ||
xves | 0 | 21,067,332,989 | 50% | ||
mrnightmare89 | 0 | 7,127,813,305 | 20% | ||
ambiguity | 0 | 36,966,531,489 | 50% | ||
sarunya | 0 | 33,544,610,547 | 100% | ||
schlunior | 0 | 21,770,474,753 | 20% | ||
eugelys | 0 | 151,826,107,082 | 85% | ||
rufruf | 0 | 678,251,820 | 100% | ||
rilo | 0 | 746,966,478 | 100% | ||
digi-me | 0 | 5,643,156,424 | 1.15% | ||
steem.craft | 0 | 745,133,640 | 100% | ||
yestermorrow | 0 | 12,241,669,261 | 31% | ||
thehive | 0 | 7,204,206,277 | 100% | ||
smartvote | 0 | 126,598,227,175 | 5.8% | ||
fandelkefir | 0 | 4,103,294,644 | 100% | ||
anttn | 0 | 8,919,964,593 | 33.33% | ||
light-hearted | 0 | 3,025,517,678 | 100% | ||
vixmemon | 0 | 9,328,658,397 | 29.5% | ||
goingbonkers | 0 | 68,163,928,547 | 100% | ||
surachai | 0 | 31,537,270,430 | 100% | ||
mr-hades | 0 | 3,843,668,338 | 100% | ||
ozeryilmaz | 0 | 525,782,449 | 50% | ||
voxmortis | 0 | 37,557,986,323 | 20% | ||
mobi72 | 0 | 491,431,942 | 100% | ||
szr-network | 0 | 108,601,650,592 | 50% | ||
ataliba | 0 | 13,869,885,050 | 50% | ||
emaillisahere | 0 | 1,063,323,313 | 75% | ||
buzzbee | 0 | 528,085,783 | 40% | ||
petrarodriguez | 0 | 14,293,425,019 | 33% | ||
altonos | 0 | 474,447,303 | 10% | ||
tipsybosphorus | 0 | 5,813,668,123 | 90% | ||
pboulet | 0 | 231,666,853,140 | 100% | ||
chike4545 | 0 | 971,775,653 | 100% | ||
voter001 | 0 | 21,438,410,269 | 19.8% | ||
voter003 | 0 | 216,820,851,488 | 80.2% | ||
steemituplife | 0 | 654,456,242 | 25% | ||
actifit | 0 | 8,020,015,356,949 | 100% | ||
marshalmugi | 0 | 6,156,139,276 | 100% | ||
podg3 | 0 | 1,864,079,791 | 90% | ||
pocketjs | 0 | 2,153,579,903 | 100% | ||
tommyl33 | 0 | 6,998,130,387 | 100% | ||
thevil | 0 | 1,067,967,980,799 | 100% | ||
thrasher666 | 0 | 2,576,257,507 | 60% | ||
dallas27 | 0 | 1,120,184,299 | 100% | ||
vasigo | 0 | 30,399,587,434 | 100% | ||
granddad | 0 | 2,833,034,498 | 100% | ||
tinabrezpike | 0 | 740,609,831,637 | 100% | ||
bolsfit | 0 | 904,673,064 | 50% | ||
geeklania | 0 | 720,705,318 | 100% | ||
followjohngalt | 0 | 16,351,479,127 | 100% | ||
cremisi | 0 | 1,869,005,942 | 100% | ||
certain | 0 | 26,704,174,926 | 100% | ||
carbodexkim | 0 | 823,294,194 | 100% | ||
geekdancing | 0 | 13,967,850,773 | 50% | ||
ladyangelwolf | 0 | 1,417,773,818 | 100% | ||
iovoccae | 0 | 5,123,116,297 | 100% | ||
glastar | 0 | 628,153,496 | 100% | ||
sorin.lite | 0 | 5,253,486,801 | 50% | ||
keket | 0 | 671,207,880 | 50% | ||
steemlandia | 0 | 5,125,827,364 | 100% | ||
tamito0201 | 0 | 1,692,390,361 | 100% | ||
starrouge | 0 | 1,048,492,524 | 50% | ||
vladu | 0 | 469,454,415 | 100% | ||
raemblings | 0 | 324,610,813 | 100% | ||
snaepshots | 0 | 4,183,830,543 | 100% | ||
wherein | 0 | 26,596,588,403 | 100% | ||
verticallife2 | 0 | 1,985,322,112 | 50% | ||
zerofive | 0 | 863,673,957 | 50% | ||
muntaharaceh | 0 | 4,562,195,741 | 20% | ||
jacuzzi | 0 | 669,265,977 | 1.4% | ||
riyuuhi | 0 | 980,828,596 | 100% | ||
cnstm | 0 | 120,448,812,057 | 100% | ||
likuang007 | 0 | 665,860,519 | 100% | ||
mongshter | 0 | 3,752,671,436 | 100% | ||
vickyguevara | 0 | 3,295,963,514 | 100% | ||
miguelmederico | 0 | 1,246,427,663 | 40% | ||
caribehub | 0 | 1,370,584,359 | 100% | ||
lianjingmedia | 0 | 1,004,005,509 | 100% | ||
broxi | 0 | 13,169,488,165 | 50% | ||
steemtelly | 0 | 37,757,586,942 | 100% | ||
gargi | 0 | 89,368,829,219 | 64% | ||
breadbakers | 0 | 3,162,469,535 | 100% | ||
nataya | 0 | 32,200,475,437 | 100% | ||
creacioneslelys | 0 | 19,831,708,961 | 100% | ||
kokadi | 0 | 584,518,917 | 80% | ||
hungrybear | 0 | 623,868,749 | 14% | ||
ond | 0 | 544,772,838 | 100% | ||
thelogicaldude | 0 | 577,158,889 | 1.15% | ||
kryptodenno | 0 | 329,807,003,360 | 10% | ||
hungryharish | 0 | 26,018,145,982 | 100% | ||
sophieandhenrik | 0 | 19,501,325,155 | 100% | ||
androshchuk | 0 | 1,623,410,971 | 50% | ||
zeero22 | 0 | 10,108,919,009 | 51% | ||
bitcoinator | 0 | 3,223,205,970 | 100% | ||
guysellars | 0 | 2,365,884,854 | 100% | ||
filosof103 | 0 | 1,260,226,485 | 2% | ||
alenox | 0 | 6,759,425,265 | 50% | ||
hungryanu | 0 | 3,438,543,205 | 50% | ||
engrsayful | 0 | 529,884,316 | 35% | ||
rocketpower | 0 | 611,726,326 | 25% | ||
photographercr | 0 | 1,105,562,893 | 20% | ||
wallvater | 0 | 1,083,479,668 | 20% | ||
bigmoneyman | 0 | 523,902,861 | 30% | ||
robibasa | 0 | 32,961,570,417 | 10% | ||
huntforsteem | 0 | 16,689,499,330 | 100% | ||
blumela | 0 | 106,324,366,090 | 50% | ||
agmoore2 | 0 | 16,879,597,058 | 100% | ||
tinyhousecryptos | 0 | 451,918,170 | 5% | ||
shauner | 0 | 449,976,120 | 48.67% | ||
xyz004 | 0 | 49,503,308,795 | 25% | ||
steemindian | 0 | 4,315,705,223 | 100% | ||
cheer-up | 0 | 19,400,860,047 | 80% | ||
fitcoin | 0 | 462,084,521 | 100% | ||
davidtron | 0 | 3,243,623,017 | 50% | ||
waraira777 | 0 | 4,256,098,392 | 100% | ||
cymonk | 0 | 8,033,215,001 | 100% | ||
edipascal | 0 | 457,554,098 | 79% | ||
allics | 0 | 1,748,211,379 | 80% | ||
imbartley | 0 | 794,139,902 | 25% | ||
zapmin | 0 | 479,471,518 | 75% | ||
tiffin | 0 | 66,521,169,821 | 100% | ||
reggaesteem | 0 | 3,256,829,366 | 29.75% | ||
nichemarket | 0 | 1,334,991,306 | 100% | ||
splines | 0 | 1,279,035,400 | 100% | ||
amico.sports | 0 | 20,566,655,997 | 50% | ||
votebetting | 0 | 17,811,649,332 | 100% | ||
hyborian-strain | 0 | 2,435,944,017 | 30% | ||
freddio.sport | 0 | 4,026,942,545 | 100% | ||
babytarazkp | 0 | 3,499,830,795 | 50% | ||
innerblocks | 0 | 149,526,405,927 | 100% | ||
eulymer | 0 | 745,580,715 | 100% | ||
botefarm.sport | 0 | 533,366,071 | 70% | ||
janaveda | 0 | 27,690,451,919 | 100% | ||
nullandvoid | 0 | 561,389,078 | 86% | ||
bilpcoinbot | 0 | 5,047,661,817 | 100% | ||
man60360 | 0 | 1,961,301,087 | 50% | ||
blq.alfa | 0 | 1,438,752,170 | 100% | ||
thehouse | 0 | 2,097,736,405 | 90% | ||
actifraenk | 0 | 24,760,906,216 | 100% | ||
ahmanik47 | 0 | 516,535,432 | 50% | ||
nitin21 | 0 | 675,447,370 | 100% | ||
silverquest | 0 | 1,313,568,576 | 100% | ||
chris-uk | 0 | 8,664,060,154 | 40% | ||
bilpcoin.pay | 0 | 547,330,664 | 10% | ||
efathenub | 0 | 450,497,886 | 100% | ||
honeychip | 0 | 709,307,197 | 100% | ||
karelia | 0 | 2,305,297,955 | 100% | ||
unpopular | 0 | 1,105,291,080,608 | 100% | ||
jgb | 0 | 80,123,102,518 | 80% | ||
apineda | 0 | 13,802,811,619 | 70% | ||
rockface | 0 | 6,032,790,646 | 100% | ||
galenkp.aus | 0 | 1,144,969,473 | 100% | ||
rus-lifestyle | 0 | 1,600,482,480 | 100% | ||
rus-sports | 0 | 5,073,332,033 | 100% | ||
lachg89 | 0 | 4,192,862,234 | 100% | ||
bpcvoter1 | 0 | 1,368,803,040 | 99% | ||
gmlrecordz | 0 | 753,830,778 | 50% | ||
bpcvoter3 | 0 | 917,681,257 | 50% | ||
journeyofanomad | 0 | 5,850,470,354 | 40% | ||
angel33 | 0 | 642,588,051 | 100% | ||
awah | 0 | 193,993,614,017 | 60% | ||
gloriaolar | 0 | 16,544,247,894 | 15% | ||
garlet | 0 | 99,544,557,602 | 100% | ||
juanvegetarian | 0 | 7,641,827,725 | 50% | ||
onestop | 0 | 10,994,798,133 | 100% | ||
kgsupport | 0 | 1,880,042,922 | 36% | ||
bilpcoinbpc | 0 | 888,594,871 | 5% | ||
bcm.sport | 0 | 8,436,330,967 | 100% | ||
davidlionfish | 0 | 22,957,566,576 | 100% | ||
kamilla19 | 0 | 90,402,631,396 | 20% | ||
van.dining | 0 | 2,711,625,313 | 100% | ||
alexa.art | 0 | 39,142,671,252 | 100% | ||
tommys.shop | 0 | 2,814,022,340 | 100% | ||
ukulima | 0 | 2,578,831,740,403 | 100% | ||
darine.darine | 0 | 205,472,965,914 | 100% | ||
fsm-core | 0 | 25,655,472,591 | 100% | ||
hivebuzz | 0 | 12,766,764,410 | 3% | ||
hive-134382 | 0 | 2,416,287,307 | 100% | ||
hivewatchers | 0 | 2,031,748,556 | 55% | ||
pinmapple | 0 | 675,237,999 | 1.5% | ||
tht | 0 | 9,904,185,190 | 100% | ||
theterminal | 0 | 318,532,288,342 | 80% | ||
waiviolabs | 0 | 5,936,161,562 | 100% | ||
master-lamps | 0 | 179,005,072,767 | 100% | ||
reggaejahm | 0 | 60,608,946,420 | 35% | ||
ubasi | 0 | 675,794,440,417 | 100% | ||
softworld | 0 | 700,363,286,954 | 100% | ||
polish.hive | 0 | 457,866,241,971 | 100% | ||
captainhive | 0 | 1,421,580,194,138 | 50% | ||
hivelist | 0 | 676,845,905 | 0.57% | ||
ninnu | 0 | 728,775,578 | 50% | ||
ecency | 0 | 1,127,993,331,959 | 2.3% | ||
woelfchen | 0 | 448,276,375,562 | 100% | ||
aquarius.academy | 0 | 15,394,014,735 | 100% | ||
ghaazi | 0 | 7,254,845,075 | 100% | ||
danishcrypto | 0 | 1,685,652,287 | 5% | ||
balvinder294 | 0 | 2,609,481,628 | 20% | ||
lesiopm2 | 0 | 21,299,067,779 | 100% | ||
daniky | 0 | 2,924,912,006 | 100% | ||
nuahs | 0 | 1,143,487,347 | 20% | ||
lucianav | 0 | 26,586,287,492 | 100% | ||
hivebuilder | 0 | 5,384,323,840 | 100% | ||
olaunlimited | 0 | 1,427,309,956 | 100% | ||
patriciaurbaneja | 0 | 1,133,820,024 | 50% | ||
milanie | 0 | 1,352,800,431 | 30% | ||
ecency.stats | 0 | 966,481,081 | 2.3% | ||
dayerlis | 0 | 946,819,599 | 100% | ||
rafaelgreen | 0 | 1,043,037,316 | 100% | ||
queenart | 0 | 202,959,646,041 | 100% | ||
hrcl.art | 0 | 3,804,866,814 | 100% | ||
liz.writes | 0 | 1,060,059,566 | 50% | ||
aurauramagic | 0 | 13,144,212,898 | 100% | ||
usainvote | 0 | 11,485,021,669,960 | 50% | ||
borbolet | 0 | 3,559,691,548 | 30% | ||
museodelcaos | 0 | 6,436,778,051 | 100% | ||
iamfarhad | 0 | 788,082,420 | 50% | ||
kwilleywrites | 0 | 988,130,536 | 25% | ||
hive-168869 | 0 | 7,540,758,050 | 100% | ||
dineandwine | 0 | 416,237,276 | 100% | ||
libertadysiempre | 0 | 17,760,680 | 100% | ||
kattycrochet | 0 | 58,156,515,112 | 50% | ||
esecholito | 0 | 45,229,826,600 | 90% | ||
tamiapt6 | 0 | 1,149,531,224 | 100% | ||
cocaaladioxine | 0 | 18,454,431,655 | 97% | ||
chrono88 | 0 | 449,757,551 | 100% | ||
maksu | 0 | 10,114,003,190 | 100% | ||
druckado | 0 | 608,137,547 | 20% | ||
completewind | 0 | 5,737,355,629 | 100% | ||
rondonshneezy | 0 | 10,786,395,520 | 50% | ||
myvest | 0 | 515,876,395 | 100% | ||
guitarmcy | 0 | 96,592,187,863 | 100% | ||
cescajove | 0 | 12,817,022,616 | 50% | ||
terganftp | 0 | 797,892,318 | 100% | ||
remenzer | 0 | 721,331,755 | 100% | ||
onemoretea | 0 | 4,092,290,696 | 100% | ||
zarwelius | 0 | 1,308,477,612 | 50% | ||
xrayman | 0 | 78,517,593,048 | 100% | ||
hierkraj | 0 | 1,140,125,381 | 100% | ||
lingkar-photo | 0 | 986,580,778 | 100% | ||
ausbit.dev | 0 | 32,300,901,838 | 100% | ||
retaliatorr | 0 | 3,009,680,725 | 100% | ||
azamrai | 0 | 567,482,643,643 | 100% | ||
mapetoke | 0 | 514,272,320 | 100% | ||
wend1go | 0 | 12,639,209,317 | 100% | ||
failingforward | 0 | 999,539,285 | 40% | ||
rendrianarma | 0 | 2,832,483,120 | 50% | ||
corvidae | 0 | 30,350,508,148 | 15% | ||
zarnoex | 0 | 515,006,511 | 100% | ||
dendendenden | 0 | 6,834,932,892 | 100% | ||
reidenling90 | 0 | 10,407,257,572 | 100% | ||
louis.pay | 0 | 1,106,903,018 | 100% | ||
bulgaria-sports | 0 | 3,663,236,356 | 100% | ||
egistar | 0 | 6,656,101,788 | 25% | ||
magnacarta | 0 | 6,706,852,317 | 10% | ||
sultanmix777 | 0 | 22,451,605,466 | 100% | ||
photolovers1 | 0 | 771,675,672 | 2.07% | ||
meesterbrain | 0 | 1,181,783,371 | 65% | ||
estebandido1983 | 0 | 2,129,683,270 | 80% | ||
musicandreview | 0 | 451,111,032 | 0.75% | ||
t-nil | 0 | 1,169,722,807 | 20% | ||
pinkfloyd878 | 0 | 4,719,381,152 | 100% | ||
yoieuqudniram | 0 | 511,100,234 | 1.15% | ||
john9inch | 0 | 1,819,825,768 | 50% | ||
dungeondog | 0 | 9,809,584,339 | 20% | ||
ischmieregal | 0 | 7,355,297,730 | 20% | ||
celeste413 | 0 | 61,305,958,340 | 100% | ||
chuyster | 0 | 623,910,204 | 100% | ||
r0nny | 0 | 2,967,679,053 | 20% | ||
dkkfrodo | 0 | 28,642,289,364 | 100% | ||
rosmiapure | 0 | 1,359,735,858 | 50% | ||
kalivankush | 0 | 17,033,731,745 | 50% | ||
iamleicester | 0 | 470,252,278 | 80% | ||
avidez | 0 | 826,349,376 | 50% | ||
adulruna | 0 | 16,673,168,955 | 100% | ||
alovely088 | 0 | 12,485,192,021 | 20% | ||
migka | 0 | 5,598,654,660 | 90% | ||
marsupia | 0 | 1,240,536,620 | 50% | ||
gejzep | 0 | 530,803,178 | 100% | ||
dstampede | 0 | 1,321,764,941 | 100% | ||
eolianpariah2 | 0 | 1,832,432,049 | 0.8% | ||
mcsherriff | 0 | 3,439,313,673 | 100% | ||
hylene74 | 0 | 107,313,901,104 | 100% | ||
almightygrim | 0 | 32,349,722,038 | 45% | ||
marilour | 0 | 52,453,284,345 | 100% | ||
nawalz | 0 | 1,792,600,199 | 50% | ||
tonton23 | 0 | 4,389,818,435 | 50% | ||
mengao | 0 | 697,879,027,350 | 100% | ||
tillmea | 0 | 655,529,439 | 100% | ||
gaposchkin | 0 | 10,742,900,242 | 100% | ||
meltysquid | 0 | 1,615,258,610 | 100% | ||
rc-assist | 0 | 19,714,314,373 | 70% | ||
butwo | 0 | 689,836,256 | 100% | ||
mtyszczak | 0 | 12,779,220,608 | 100% | ||
kriang3teejoe | 0 | 416,734,718,273 | 100% | ||
kaibagt | 0 | 84,283,449,116 | 100% | ||
lovemessages | 0 | 646,887,983 | 100% | ||
crypt0gnome | 0 | 42,233,869,746 | 50% | ||
ben.dunk | 0 | 809,392,439 | 100% | ||
huckleberrie | 0 | 185,916,726,808 | 100% | ||
jomancub | 0 | 1,168,741,463 | 20% | ||
hucksbucks | 0 | 6,422,494,850 | 100% | ||
winly | 0 | 3,746,886,883 | 100% | ||
crptogeek | 0 | 829,250,062 | 16% | ||
dr-animation | 0 | 3,120,271,523 | 50% | ||
allentaylor | 0 | 621,494,087 | 1.15% | ||
littlebee4 | 0 | 115,411,080,105 | 25% | ||
alex2alex | 0 | 2,691,556,724 | 20% | ||
der.merlin | 0 | 781,998,493 | 20% | ||
ripusun | 0 | 27,132,528,036 | 100% | ||
janetedita | 0 | 2,738,229,661 | 8% | ||
abelfotografia | 0 | 11,985,005,688 | 100% | ||
tgarcialvarez | 0 | 592,625,518 | 20% | ||
hivecuba | 0 | 501,800,867,926 | 20% | ||
jfuji | 0 | 106,472,630,783 | 50% | ||
moniqwashere | 0 | 3,819,405,769 | 100% | ||
archangel21 | 0 | 5,384,880,385 | 100% | ||
amafable07 | 0 | 1,582,010,467 | 50% | ||
androliuben | 0 | 2,432,750,630 | 10% | ||
oceanfit | 0 | 620,029,394 | 100% | ||
abouttodie | 0 | 2,213,491,558 | 50% | ||
caelum1infernum | 0 | 4,730,328,539 | 20% | ||
bummblebee | 0 | 1,675,432,280 | 20% | ||
bilginselcuk | 0 | 12,564,807,179 | 83% | ||
yorgar | 0 | 3,785,984,369 | 50% | ||
franzpaulie | 0 | 51,083,460,608 | 100% | ||
fasacity | 0 | 8,194,815,169 | 50% | ||
bigorna1 | 0 | 5,800,016,119 | 25% | ||
nwothini335 | 0 | 3,065,366,318 | 50% | ||
drstealth | 0 | 11,917,758,428 | 100% | ||
alessandrawhite | 0 | 1,133,557,684 | 1.15% | ||
quduus1 | 0 | 8,514,709,124 | 16.66% | ||
lordshah | 0 | 27,820,492,702 | 54.6% | ||
coldbeetrootsoup | 0 | 4,223,087,181,347 | 100% | ||
tzae | 0 | 730,611,131 | 100% | ||
rocco-maloney | 0 | 822,123,451 | 100% | ||
lyamalfonzo23 | 0 | 1,607,024,599 | 100% | ||
hive-117638 | 0 | 791,337,572 | 22% | ||
inibless | 0 | 5,351,047,843 | 50% | ||
etselec23 | 0 | 2,475,120,166 | 50% | ||
abbiek | 0 | 5,412,581,305 | 100% | ||
graciousvic | 0 | 1,137,123,834 | 16.66% | ||
incublus | 0 | 339,604,199,508 | 100% | ||
ezgicop | 0 | 956,349,037 | 100% | ||
xerox94 | 0 | 1,753,652,660 | 100% | ||
thoth442 | 0 | 16,288,174,423 | 50% | ||
edidiongeffiong | 0 | 776,244,675 | 100% | ||
oasiskp2 | 0 | 17,300,124,663 | 100% | ||
solarisfuture | 0 | 8,490,423,965,092 | 100% | ||
deggial | 0 | 418,456,766 | 100% | ||
pinkchic | 0 | 705,481,003 | 2.4% | ||
salicj | 0 | 8,422,510,509 | 16% | ||
celestegray | 0 | 33,820,308,278 | 50% | ||
hive-132595 | 0 | 1,832,887,922 | 100% | ||
artefactoestudio | 0 | 2,161,903,885 | 100% | ||
aprilgillian | 0 | 2,009,500,612 | 10% | ||
tekraze | 0 | 2,262,523,576 | 80% | ||
fizz0 | 0 | 1,105,264,346 | 50% | ||
hive-189277 | 0 | 613,718,569 | 33.33% | ||
luvinlyf | 0 | 247,025,883,389 | 84% | ||
olujose6 | 0 | 498,492,478 | 10% | ||
kryptogeier1 | 0 | 1,857,698,912 | 30% | ||
nancybriti1 | 0 | 106,706,286,272 | 100% | ||
wendy23 | 0 | 3,532,845,029 | 10% | ||
mommyjane | 0 | 26,075,457,473 | 100% | ||
fotlala | 0 | 8,442,792,824 | 100% | ||
denisda | 0 | 8,215,417,264 | 50% | ||
dovycola | 0 | 23,664,512,822 | 100% | ||
ngobaby | 0 | 2,418,388,371 | 50% | ||
ecencypoints | 0 | 20,431,681,800 | 60% | ||
pof.sports | 0 | 696,236,870 | 100% | ||
arahman | 0 | 160,303,717,657 | 100% | ||
gollumkp | 0 | 2,419,435,930 | 20% | ||
txerritxoa | 0 | 1,647,689,011,575 | 100% | ||
pit3r | 0 | 3,476,061,670 | 20% | ||
y3ssi | 0 | 3,345,066,157 | 20% | ||
hive-bounty | 0 | 450,380,480 | 20% | ||
stdd.sports | 0 | 649,444,655 | 100% | ||
preciouz-01 | 0 | 4,410,436,185 | 79% | ||
unity-freedom | 0 | 1,757,812,449 | 33.33% | ||
argo8 | 0 | 1,302,837,887 | 0.57% | ||
thezyppi | 0 | 5,748,870,836 | 20% | ||
bhattgactifit | 0 | 3,413,175,639 | 100% | ||
samueluche07 | 0 | 650,480,439 | 50% | ||
hive-14396 | 0 | 11,225,799,085 | 25% | ||
ecency.waves | 0 | 0 | 2.3% | ||
yummycruz1 | 0 | 1,069,956,938 | 5% | ||
literal | 0 | 43,849,047,594 | 100% | ||
spice-c | 0 | 970,917,194 | 50% | ||
michael700 | 0 | 733,482,659 | 90% | ||
edeyglezsosa | 0 | 1,269,092,987 | 4% | ||
yale95reyra | 0 | 1,752,752,286 | 10% | ||
chisomdamian | 0 | 5,984,003,256 | 50% | ||
terra.sinkhole | 0 | 39,059,130,215 | 100% | ||
like2cbrs | 0 | 2,307,206,406 | 100% | ||
soumaren | 0 | 2,518,378,944,413 | 100% | ||
withdraw | 0 | 7,244,409,362,745 | 100% | ||
hivebeecon | 0 | 11,974,361,226 | 100% | ||
thebeedevs | 0 | 76,862,294,023 | 100% | ||
havandris | 0 | 461,562,402 | 100% | ||
axobtc | 0 | 976,910,904 | 100% | ||
miqueas-sw | 0 | 1,089,569,485 | 100% | ||
rociopmz | 0 | 1,709,751,702 | 100% | ||
miguelreinierp2 | 0 | 2,351,176,927 | 100% | ||
cbrsphilanthropy | 0 | 72,762,820,844 | 100% | ||
samstreamer | 0 | 2,687,841,241 | 100% | ||
lilsnake | 0 | 1,149,833,460 | 20% | ||
dreeyor | 0 | 1,981,510,277 | 50% | ||
blessskateshop | 0 | 479,812,144,778 | 100% | ||
hive-193566 | 0 | 27,745,822,768 | 100% | ||
murtaza-7868 | 0 | 865,281,203 | 50% | ||
pollodlp | 0 | 2,545,981,620 | 100% | ||
setpiece | 0 | 956,665,854 | 100% | ||
frgnholding | 0 | 0 | 100% | ||
zhaoyiseng | 0 | 2,214,128,728,196 | 100% | ||
yonyonsson | 0 | 3,276,699,179 | 100% | ||
coltdelegation | 0 | 8,174,073,507 | 90% | ||
bmhillel | 0 | 3,998,867,376 | 100% | ||
leopard0 | 0 | 4,646,725,909 | 20% | ||
patricma | 0 | 3,075,121,267 | 20% | ||
sprunk | 0 | 8,802,244,388 | 100% | ||
tecnotronics | 0 | 18,805,496,638 | 100% | ||
porqpin | 0 | 984,402,136 | 70% | ||
joset | 0 | 16,307,877,061 | 100% | ||
henrysw | 0 | 1,426,372,176 | 50% | ||
cocinator | 0 | 7,533,120,150 | 100% | ||
sneakz | 0 | 1,043,395,429 | 25% | ||
yusmelys | 0 | 754,610,393 | 1.15% | ||
tee-miarts | 0 | 0 | 100% | ||
dotzee | 0 | 27,727,263,318 | 100% | ||
olgaestrella | 0 | 7,533,340,233 | 100% | ||
javierduoiris | 0 | 405,157,277 | 100% | ||
sopel | 0 | 1,571,420,901,311 | 100% | ||
alexdepool27 | 0 | 5,843,227,340 | 100% | ||
chimaobicollins | 0 | 1,095,462,599 | 80% | ||
ecp.voter | 0 | 7,022,839,418 | 100% | ||
ecp.curator | 0 | 7,160,543,591 | 100% | ||
nicolebanilad | 0 | 14,749,949,445 | 100% | ||
ecp.rclease | 0 | 7,662,095,356 | 100% | ||
ernestopg | 0 | 5,016,175,927 | 100% | ||
arshadkhan4421 | 0 | 2,858,769,812 | 50% | ||
kingsway123 | 0 | 1,835,071,717 | 50% | ||
rscardclub | 0 | 5,763,421,787 | 65% | ||
karlypets | 0 | 692,449,862 | 100% | ||
hive-118507 | 0 | 1,258,283,149 | 50% | ||
vvodjiu | 0 | 834,285,529 | 50% | ||
a07 | 0 | 543,164,247 | 50% | ||
letusbuyhive | 0 | 1,363,066,620,765 | 25% | ||
hif | 0 | 740,793,917 | 100% | ||
hvf | 0 | 87,775,518,190 | 70% | ||
chydolar1 | 0 | 662,213,935 | 50% | ||
arka1 | 0 | 2,667,454,062 | 1.15% | ||
zaniverse | 0 | 13,523,232,962 | 63% | ||
ecp.dump | 0 | 6,949,845,201 | 100% | ||
pollodlpp | 0 | 63,180,071 | 100% | ||
lovelymusictube1 | 0 | 3,938,740,969 | 100% | ||
mrcripdoe | 0 | 3,195,647,613 | 100% | ||
wanderelle | 0 | 13,590,391,419 | 60% | ||
ecbit | 0 | 1,281,302,485 | 100% | ||
itsola | 0 | 9,204,169,888 | 100% | ||
fwaszkiewicz | 0 | 1,804,233,672 | 100% | ||
yonfire2 | 0 | 2,799,169,319 | 65% | ||
mahirv | 0 | 2,130,306,598 | 100% | ||
sarajimenezz | 0 | 50,052,302 | 100% | ||
med-4fun | 0 | 130,648,548 | 100% | ||
frp | 0 | 59,456,323 | 100% | ||
spoondawg | 0 | 6,952,568,423 | 100% | ||
aaronperez1608 | 0 | 1,629,138,424 | 100% | ||
ttobacia | 0 | 24,471,704 | 100% | ||
aleraza | 0 | 0 | 100% |
This like a kind of encouraging for hive communities
author | amazing23 |
---|---|
permlink | re-blocktrades-202582t221841761z |
category | hive-139531 |
json_metadata | {"links":[],"type":"comment","tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/3.3.3-mobile","format":"markdown+html"} |
created | 2025-08-02 21:18:45 |
last_update | 2025-08-02 21:18:45 |
depth | 1 |
children | 0 |
last_payout | 1969-12-31 23:59:59 |
cashout_time | 2025-08-09 21:18:45 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 53 |
author_reputation | 965,105,717,012 |
root_title | "Improving Hive’s semantic search performance" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 144,638,753 |
net_rshares | 0 |
不明觉厉👍
author | celeste413 |
---|---|
permlink | re-blocktrades-202582t112626248z |
category | hive-139531 |
json_metadata | {"type":"comment","tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/3.2.1-mobile","format":"markdown+html"} |
created | 2025-08-02 03:26:27 |
last_update | 2025-08-02 03:26:27 |
depth | 1 |
children | 0 |
last_payout | 1969-12-31 23:59:59 |
cashout_time | 2025-08-09 03:26:27 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5 |
author_reputation | 471,686,531,132,535 |
root_title | "Improving Hive’s semantic search performance" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 144,615,300 |
net_rshares | 0 |
that is a real important update. Thanks aöpt for workong on it!
author | hatoto |
---|---|
permlink | re-blocktrades-202582t01926685z |
category | hive-139531 |
json_metadata | {"links":[],"type":"comment","tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/3.3.3-mobile","format":"markdown+html"} |
created | 2025-08-01 22:19:27 |
last_update | 2025-08-01 22:19:27 |
depth | 1 |
children | 0 |
last_payout | 1969-12-31 23:59:59 |
cashout_time | 2025-08-08 22:19:27 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 63 |
author_reputation | 102,534,895,511,040 |
root_title | "Improving Hive’s semantic search performance" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 144,606,300 |
net_rshares | 0 |
Great news. Hive search can really use these improvements for content discoverability.
author | holoz0r |
---|---|
permlink | re-blocktrades-t0cbzy |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.7.3","image":[],"users":[]} |
created | 2025-08-02 00:28:48 |
last_update | 2025-08-02 00:28:48 |
depth | 1 |
children | 0 |
last_payout | 1969-12-31 23:59:59 |
cashout_time | 2025-08-09 00:28:48 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 87 |
author_reputation | 546,741,890,301,193 |
root_title | "Improving Hive’s semantic search performance" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 144,610,493 |
net_rshares | 0 |
very technical information
author | latinowinner |
---|---|
permlink | re-blocktrades-202582t184925463z |
category | hive-139531 |
json_metadata | {"tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/4.2.2-vision","format":"markdown+html"} |
created | 2025-08-02 08:49:27 |
last_update | 2025-08-02 08:49:27 |
depth | 1 |
children | 0 |
last_payout | 1969-12-31 23:59:59 |
cashout_time | 2025-08-09 08:49:27 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 26 |
author_reputation | 2,990,986,174,963 |
root_title | "Improving Hive’s semantic search performance" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 144,621,465 |
net_rshares | 0 |
This is a very important update. Thank you very much for the hard work on this.
author | mahirv |
---|---|
permlink | re-blocktrades-202583t52211223z |
category | hive-139531 |
json_metadata | {"links":[],"type":"comment","tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/3.3.3-mobile","format":"markdown+html"} |
created | 2025-08-02 23:22:12 |
last_update | 2025-08-02 23:22:12 |
depth | 1 |
children | 0 |
last_payout | 1969-12-31 23:59:59 |
cashout_time | 2025-08-09 23:22:12 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 79 |
author_reputation | 2,904,013,128,060 |
root_title | "Improving Hive’s semantic search performance" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 144,640,709 |
net_rshares | 0 |
What would we do without you? It's good that you exist! Well done!
author | spiritabsolute |
---|---|
permlink | re-blocktrades-202582t165823220z |
category | hive-139531 |
json_metadata | {"links":[],"type":"comment","tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/3.3.3-mobile","format":"markdown+html"} |
created | 2025-08-02 14:58:24 |
last_update | 2025-08-02 14:58:24 |
depth | 1 |
children | 0 |
last_payout | 1969-12-31 23:59:59 |
cashout_time | 2025-08-09 14:58:24 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 66 |
author_reputation | 12,435,657,509,874 |
root_title | "Improving Hive’s semantic search performance" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 144,629,318 |
net_rshares | 0 |
$WINE
author | theguruasia |
---|---|
permlink | re-blocktrades-t0cxk8 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.7.3","image":[],"users":[]} |
created | 2025-08-02 08:14:33 |
last_update | 2025-08-02 08:14:33 |
depth | 1 |
children | 1 |
last_payout | 1969-12-31 23:59:59 |
cashout_time | 2025-08-09 08:14:33 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5 |
author_reputation | 72,594,431,822,151 |
root_title | "Improving Hive’s semantic search performance" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 144,620,935 |
net_rshares | 0 |
<center> <sup>Congratulations, @theguruasia You Successfully Shared <b>0.300</b> <b>WINEX</b> With @blocktrades.</sup> <sup>You Earned <b>0.300</b> <b>WINEX</b> As Curation Reward.</sup> <sup>You Utilized <b>3/5</b> Successful Calls.</sup> <img src="https://images.hive.blog/DQmSWfbie9MTC172sENiA16bsMaz1ofT6AAyTo1ishasrcX/winexcomment.png" alt="wine_logo"> </center> --- <center> <sup>Contact Us : [WINEX Token Discord Channel](https://discord.gg/rS3KzjJDCx)</sup> <sup>[WINEX Current Market Price](https://hive-engine.com/?p=market&t=WINEX) : <b>0.031</b></sup> </center> --- <center> <sup>Swap Your <b>Hive <=> Swap.Hive</b> With Industry <b>Lowest Fee</b> or <b>Highest Reward</b> : [Click This Link](https://uswap.app/)</sup> <sup>[Read Latest Updates](https://peakd.com/@hiveupme/posts) Or [Contact Us](https://discord.gg/rS3KzjJDCx)</sup> </center>
author | wine.bot |
---|---|
permlink | 20250802t081519357z |
category | hive-139531 |
json_metadata | {"tags":["wine","token","winebot"],"app":"ecency/3.0.31-vision","format":"markdown+html"} |
created | 2025-08-02 08:15:18 |
last_update | 2025-08-02 08:15:18 |
depth | 2 |
children | 0 |
last_payout | 1969-12-31 23:59:59 |
cashout_time | 2025-08-09 08:15:18 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 872 |
author_reputation | 8,838,960,845,284 |
root_title | "Improving Hive’s semantic search performance" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 144,620,958 |
net_rshares | 0 |