 Originally I planned to release in December, but just before the holidays kicked into full gear, I found an issue with the HAF upgrade process during my testing. The HAF upgrade process enables a node to update its software without having to do a full replay (a full replay takes several days, whereas an upgrade completes in minutes or less typically). While this problem wouldn’t cause any immediate issue for API node operators, as they’re going to have to do a full replay for this release anyways, it would have required API nodes to do more full replays again, if we found any further problems after the release. So based on this, I decided to delay the official release of the HAF API node suite until after the holidays when all our devs were back and we had a fix for the upgrade issue (which we now have). So we’ll be releasing it officially this week. It’s available now as 1.27.7rc16 for anyone who wants to get a jump on replaying it. Also, here’s a quick summary on some of what the BlockTrades team has been working on since my last report. As usual, it’s not a complete list. Red items are links in gitlab to the actual work done. ## [Hived: blockchain node software](https://gitlab.syncad.com/hive/hive) Mostly minor changes here recently. Upcoming work will focus on an overhaul of the transaction signing system. Originally I had vague hopes we might be able to complete those changes in February, but realistically it’s likely to be at least some time in March/April time frame I think. These changes will be included as part of the hardfork and they are also tightly related to the support for “Lite Accounts” using a HAF API (my plan is to offer a similar signing feature set across the two systems to keep things simple). So the Lite Account API will probably be rolled out on a similar time frame. ## [HAF: framework for creating new Hive APIs and apps](https://gitlab.syncad.com/hive/haf) Most of the work done recently was performance optimizations made as a result of benchmark testing. * [Add index status tracking and new functions for HAF index management](https://gitlab.syncad.com/hive/haf/-/merge_requests/557). This allows apps to add extra indexes to HAF tables and also tracks which apps needs those indexes. If an app registers the requested index before HAF finishes a replay, the index will be built non-concurrently along with the other HAF indexes. If an app requests it later, the index will be built concurrently to avoid disrupting the operation of other HAF apps. * [Add functions for apps to request/wait for full vacuums and allow for concurrent index creation during live sync](https://gitlab.syncad.com/hive/haf/-/merge_requests/568) During testing we found that some app tables that were heavily modified were growing in size a lot during an app’s replay. By periodically performing full vacuums on these tables, these tables get re-shrunk back to a reasonable size, and the apps replay much faster (around 2x faster in the case of reputation tracker, for example, if I recall correctly). Smaller tables also means the API calls that reference these tables are faster. This functionality is primarily useful for tables that receive a lot of UPDATE queries, as it clears out dead tuples. * [Analyze tables after index creation](https://gitlab.syncad.com/hive/haf/-/merge_requests/548) Instead of running 'analyze' in a separated transaction after all indexes are created during a HAF replay, now each table is analyzed in the same transaction that creates the indexes. This way apps are told 'HAF is ready' when HAF has finished the table analyzes and is therefore configured for maximal performance. * [Speedup processing associated with keyauth state provider](https://gitlab.syncad.com/hive/haf/-/merge_requests/584) * [Bug fixes and improves to HAF upgrade procedure](https://gitlab.syncad.com/hive/haf/-/merge_requests/589) This is the fix mentioned at the top of this post. * [Repairing threading bug involved with schemas](https://gitlab.syncad.com/hive/haf/-/merge_requests/562) * [Implement state change tracking for haf apps for performance reporting](https://gitlab.syncad.com/hive/haf/-/issues/244) ## [Hivemind: social media API](https://gitlab.syncad.com/hive/hivemind) A huge amount of work was done to hivemind as part of our final optimization work prior to release. Below represents only a small portion of this work: * [Full vacuum hive.posts after massive sync for better performance](https://gitlab.syncad.com/hive/hivemind/-/merge_requests/817) * [Speedup vacuuming after replay by only vacuuming hivemind tables and do it in concurrent threads](https://gitlab.syncad.com/hive/hivemind/-/merge_requests/812) * [Speedup json checking for API calls](https://gitlab.syncad.com/hive/hivemind/-/merge_requests/814) * [Speedup list_pop_communities](https://gitlab.syncad.com/hive/hivemind/-/merge_requests/810) * [Speed up queries by removing function call from filtering process](https://gitlab.syncad.com/hive/hivemind/-/merge_requests/807) * [Add author_id to posts parent_id_id_idx to allow get_account_posts_by_replies to do an index-only scan](https://gitlab.syncad.com/hive/hivemind/-/merge_requests/806) * [Reduce storage by removing list_comments API and associated table/indexes](https://gitlab.syncad.com/hive/hivemind/-/merge_requests/793) * [Set reasonable API return limits to reduce unnecessary server loading and prevent API amplification attacks](https://gitlab.syncad.com/hive/hivemind/-/merge_requests/790) * Cleaned up and optimized many API calls (various merge requests) ## [HAfAH: account history API](https://gitlab.syncad.com/hive/HAfAH) * [Automate publishing hafah images to remote registry when new images get tagged]( https://gitlab.syncad.com/hive/HAfAH/-/merge_requests/176) * [Grants to hafah_user needs to be on the end of installation to properly grant roles to backend functions, also fix rewriter rules ](https://gitlab.syncad.com/hive/HAfAH/-/merge_requests/171) * [Include case when signature is null in get_transaction](https://gitlab.syncad.com/hive/HAfAH/-/merge_requests/165) ## [Balance tracker API: tracks token balance histories for accounts](https://gitlab.syncad.com/hive/balance_tracker) * [Push the postgrest-rewriter to docker registries for tagged releases](https://gitlab.syncad.com/hive/balance_tracker/-/merge_requests/135) * [Vacuum full account_balance_history table every 10m during massive sync ](https://gitlab.syncad.com/hive/balance_tracker/-/merge_requests/131) * [Fix healthchecker issue](https://gitlab.syncad.com/hive/balance_tracker/-/merge_requests/128) * [Add application_name parameter to the postgres connection string to make it easier to see what app is doing what in pgAdmin and friends](https://gitlab.syncad.com/hive/balance_tracker/-/merge_requests/126) ## [Reputation tracker: API for fetching account reputation](https://gitlab.syncad.com/hive/reputation_tracker) * [Do a vacuum full every time minutes during massive sync to keep size of account_reputations table reasonable](https://gitlab.syncad.com/hive/reputation_tracker/-/merge_requests/61) * [Register HAF indexes using new index registry API](https://gitlab.syncad.com/hive/reputation_tracker/-/merge_requests/60) * [Fix healthchecker issue](https://gitlab.syncad.com/hive/reputation_tracker/-/merge_requests/58) * [Allow the docker health check for the block processor to report health](https://gitlab.syncad.com/hive/reputation_tracker/-/merge_requests/57) ## [HAF Block Explorer](https://gitlab.syncad.com/hive/haf_block_explorer) * [vacuum full some of the balance tracker tables](https://gitlab.syncad.com/hive/haf_block_explorer/-/merge_requests/263) * [Register HAF indexes](https://gitlab.syncad.com/hive/haf_block_explorer/-/merge_requests/254) * [Rewrite and speedup block searching](https://gitlab.syncad.com/hive/haf_block_explorer/-/merge_requests/251) * [Replacing UNION with UNION ALL in the block processing function results in significantly improved query performance](https://gitlab.syncad.com/hive/haf_block_explorer/-/merge_requests/247) * [Remove cache from last synced block](https://gitlab.syncad.com/hive/haf_block_explorer/-/merge_requests/245) ## [WAX API library for Hive apps](https://gitlab.syncad.com/hive/wax) I expect we’ll officially release the Typescript version of wax in the next couple of weeks. Below is a sample of recently completed work: * Added support for account authority update operation * Improvements to key leakage detection * Working on Python version of wax: now it can create and sign transactions, but currently only offline version is supported. * Continuing work on a generic UI component for the health-checker. ## [HAF API Node (Scripts for deploying and managing an API node)](https://gitlab.syncad.com/hive/haf_api_node) * [Tagged rc16 release candidate for all the software components for a HAF API node](https://gitlab.syncad.com/hive/haf_api_node/-/merge_requests/63) * [Increased cache time for some API calls based on production performance analysis](https://gitlab.syncad.com/hive/haf_api_node/-/merge_requests/62) * [Force nginx to parse and store the request body in a way that it can be logged better for performance analysis tools](https://gitlab.syncad.com/hive/haf_api_node/-/merge_requests/59) * [Allow hivemind's block processor 30s to shut down cleanly before killing it to prevent potential problems when interrupted during massive sync](https://gitlab.syncad.com/hive/haf_api_node/-/merge_requests/56) * [create_zfs_dataset creates an empty snapshot + snapshot_zfs_datasets checks if shared_memory.bin is ok](https://gitlab.syncad.com/hive/haf_api_node/-/merge_requests/50) * [Separate the hivemind installer so that it's not integrated into the block-processing container so that the postgrest server can start as soon as installer is finished](https://gitlab.syncad.com/hive/haf_api_node/-/merge_requests/49) * [Switch to PostgREST implementation of Hivemind API server](https://gitlab.syncad.com/hive/haf_api_node/-/merge_requests/48) * [Fix balance tracker so that it can be run standalone again](https://gitlab.syncad.com/hive/haf_api_node/-/merge_requests/47) * [Create a tool to simplify using specific versions of all apps (e.g. the current develop versions)](https://gitlab.syncad.com/hive/haf_api_node/-/merge_requests/44) In related work, we also created a handy new tool for managing submodule dependencies across HAF and HAF apps: https://gitlab.syncad.com/hive/update_submodules ## What's next? We’ve essentially finished production testing for the rc16 HAF API node software, except for the final test of replacing it as our production software on api.hive.blog. We expect to complete that operation in the next few days (by Monday at the very latest). We updated the release candidate testing server (https://api.syncad.com) to rc16 today, and I recommend all apps do final testing against this API node ASAP, prior to the switchover on https://api.hive.blog itself, to reduce the chance for a late discovery of compatibility issues that need to be adjusted for. Once the software is officially released and running on api.hive.blog, I’ll make another post to provide some performance metrics for the new release and other information of interest.
author | blocktrades |
---|---|
permlink | 1st-update-of-2025-releasing-api-node-software-this-week |
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/hive"],"app":"hiveblog/0.1","format":"markdown"} |
created | 2025-01-08 22:13:12 |
last_update | 2025-01-08 22:13:12 |
depth | 0 |
children | 60 |
last_payout | 2025-01-15 22:13:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 176.075 HBD |
curator_payout_value | 175.863 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11,407 |
author_reputation | 1,285,459,763,765,806 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,834,233 |
net_rshares | 570,538,195,964,559 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
smooth | 0 | 162,833,345,470,893 | 100% | ||
abit | 0 | 21,854,372,904,798 | 100% | ||
adm | 0 | 20,976,385,290,828 | 100% | ||
fractalnode | 0 | 19,855,792,650 | 50% | ||
flemingfarm | 0 | 64,375,865,764 | 10% | ||
acidyo | 0 | 10,008,670,326,627 | 100% | ||
leprechaun | 0 | 1,286,809,820 | 13% | ||
churdtzu | 0 | 24,230,592,429 | 33% | ||
paradise-paradox | 0 | 1,205,721,811 | 100% | ||
gtg | 0 | 53,746,049,621,598 | 100% | ||
grey580 | 0 | 119,807,754,422 | 100% | ||
good-karma | 0 | 12,345,278,900 | 1% | ||
roelandp | 0 | 8,885,003,591 | 0.37% | ||
neopatriarch | 0 | 1,957,944,120 | 50% | ||
bryanj4 | 0 | 605,108,792 | 25% | ||
ausbitbank | 0 | 2,486,287,082,853 | 100% | ||
cloh76 | 0 | 141,472,006,288 | 100% | ||
arcange | 0 | 943,682,999,102 | 5% | ||
deanliu | 0 | 5,229,112,089,981 | 100% | ||
raymonjohnstone | 0 | 0 | 100% | ||
kaykunoichi | 0 | 1,085,488,544 | 50% | ||
akipponn | 0 | 89,045,451,888 | 100% | ||
magicmonk | 0 | 5,891,713,410,292 | 100% | ||
timcliff | 0 | 149,932,834,368 | 100% | ||
laoyao | 0 | 63,170,025,607 | 100% | ||
midnightoil | 0 | 223,385,316,439 | 100% | ||
xiaohui | 0 | 19,610,425,714 | 100% | ||
josepimpo | 0 | 94,697,903,455 | 100% | ||
joele | 0 | 4,379,170,469 | 100% | ||
oflyhigh | 0 | 3,812,209,761,178 | 100% | ||
shanghaipreneur | 0 | 24,146,280,665 | 100% | ||
borran | 0 | 1,197,302,809,688 | 100% | ||
treaphort | 0 | 733,485,816 | 15% | ||
rmach | 0 | 905,052,392 | 5% | ||
helene | 0 | 1,326,082,290,945 | 100% | ||
lemouth | 0 | 3,080,482,074,105 | 100% | ||
elamental | 0 | 1,821,070,702 | 18.04% | ||
stevescoins | 0 | 2,107,467,619 | 21.5% | ||
catherinebleish | 0 | 11,431,946,934 | 50% | ||
gduran | 0 | 30,339,156,707 | 100% | ||
themonetaryfew | 0 | 343,147,999,987 | 100% | ||
darkflame | 0 | 67,807,682,265 | 25% | ||
jlufer | 0 | 22,400,285,857 | 100% | ||
esecholo | 0 | 10,330,709,117 | 100% | ||
brightstar | 0 | 5,450,417,095 | 15% | ||
penguinpablo | 0 | 177,457,864,877 | 14% | ||
uwelang | 0 | 360,185,322,090 | 20% | ||
wakeupnd | 0 | 127,726,826,113 | 50% | ||
tftproject | 0 | 1,130,853,636 | 6.45% | ||
jimbobbill | 0 | 1,779,982,231 | 15% | ||
canadian-coconut | 0 | 6,299,012,890,178 | 41% | ||
cornerstone | 0 | 1,304,671,439,055 | 50% | ||
titusfrost | 0 | 29,917,963,026 | 100% | ||
seckorama | 0 | 129,226,487,069 | 30% | ||
funnyman | 0 | 1,439,805,791 | 5.6% | ||
steemcleaners | 0 | 2,208,360,997,209 | 80% | ||
rynow | 0 | 147,652,603,550 | 30% | ||
michelle.gent | 0 | 321,908,405,418 | 100% | ||
jang | 0 | 129,318,519,190 | 100% | ||
lloyddavis | 0 | 15,628,884,381 | 75% | ||
ssekulji | 0 | 94,361,474,292 | 100% | ||
siniceku | 0 | 1,504,165,487 | 100% | ||
ura-soul | 0 | 89,039,406,009 | 43% | ||
techslut | 0 | 333,410,100,289 | 50% | ||
makinstuff | 0 | 68,259,860,044 | 50% | ||
consciousness | 0 | 10,013,126,809 | 100% | ||
triviummethod | 0 | 5,776,683,579 | 100% | ||
jaybird | 0 | 5,099,806,937 | 100% | ||
discovereurovelo | 0 | 1,217,833,686 | 0.75% | ||
whistleblower | 0 | 10,515,040,181 | 100% | ||
andytherbg | 0 | 5,831,310,927 | 100% | ||
esteemapp | 0 | 2,897,136,322 | 1% | ||
veganism | 0 | 5,746,342,043 | 100% | ||
justinw | 0 | 175,890,245,003 | 33% | ||
humanearl | 0 | 2,032,488,858 | 70% | ||
alexvan | 0 | 93,716,573,296 | 100% | ||
v4vapid | 0 | 5,147,002,600,295 | 33% | ||
steemitcommunity | 0 | 1,354,326,995 | 100% | ||
askari | 0 | 11,683,283,829 | 20% | ||
ryivhnn | 0 | 30,968,994,226 | 7% | ||
bxt | 0 | 938,290,015,008 | 100% | ||
tarazkp | 0 | 2,676,233,875,622 | 50% | ||
steemitboard | 0 | 23,733,348,352 | 5% | ||
shermanedwards | 0 | 719,518,539 | 50% | ||
yiyi.maiola | 0 | 10,443,458,318 | 100% | ||
justinashby | 0 | 461,996,861 | 100% | ||
thereikiforest | 0 | 1,302,151,840 | 10% | ||
evildeathcore | 0 | 4,100,439,971 | 100% | ||
diggndeeper.com | 0 | 7,566,669,815,490 | 100% | ||
fronttowardenemy | 0 | 4,105,419,270 | 1.5% | ||
danielsaori | 0 | 486,981,989,640 | 100% | ||
trafalgar | 0 | 53,300,754,354,756 | 100% | ||
freedomexists | 0 | 1,596,762,984 | 100% | ||
freebornsociety | 0 | 5,437,125,913 | 10% | ||
detlev | 0 | 99,942,413,447 | 5% | ||
haileyscomet | 0 | 765,435,813 | 20% | ||
dickturpin | 0 | 79,811,251,267 | 100% | ||
lizanomadsoul | 0 | 3,036,340,044 | 1.5% | ||
raindrop | 0 | 824,843,168,779 | 100% | ||
passion-fruit | 0 | 8,550,984,215 | 92% | ||
smasssh | 0 | 1,417,287,195,809 | 30% | ||
tamaralovelace | 0 | 110,152,870,355 | 100% | ||
frankydoodle | 0 | 1,516,993,668 | 10.75% | ||
mes | 0 | 786,293,400,965 | 100% | ||
kingkinslow | 0 | 776,077,798 | 100% | ||
andyjaypowell | 0 | 781,634,352,216 | 99% | ||
broncnutz | 0 | 5,555,269,869,165 | 100% | ||
iansart | 0 | 4,594,840,767 | 100% | ||
whatamidoing | 0 | 1,197,230,844 | 4% | ||
trayan | 0 | 33,783,458,913 | 100% | ||
forykw | 0 | 724,551,850,384 | 100% | ||
jagged | 0 | 1,780,762,867 | 25% | ||
lenmar | 0 | 41,056,907,158 | 100% | ||
jerrybanfield | 0 | 134,195,192,047 | 41% | ||
rt395 | 0 | 7,010,323,133 | 10% | ||
bigram13 | 0 | 13,980,111,237 | 100% | ||
ironshield | 0 | 105,429,805,792 | 100% | ||
newsflash | 0 | 9,252,194,476 | 8.25% | ||
joechiappetta | 0 | 138,577,640,792 | 100% | ||
galberto | 0 | 59,676,569,105 | 100% | ||
elteamgordo | 0 | 15,181,375,956 | 100% | ||
masterthematrix | 0 | 20,438,507,705 | 100% | ||
exec | 0 | 1,799,230,385,292 | 100% | ||
eval | 0 | 3,624,603,604,459 | 100% | ||
alphacore | 0 | 77,990,356,473 | 75.11% | ||
galenkp | 0 | 7,087,884,270,929 | 100% | ||
enjar | 0 | 1,046,387,785,057 | 100% | ||
koltci | 0 | 411,206,477 | 100% | ||
jackmiller | 0 | 551,444,598 | 70% | ||
therneau | 0 | 43,716,418,165 | 100% | ||
spectrumecons | 0 | 3,609,525,734,104 | 50% | ||
princessmewmew | 0 | 2,032,003,049 | 0.75% | ||
vieanna | 0 | 3,086,516,305 | 100% | ||
joeyarnoldvn | 0 | 34,464,481,960 | 100% | ||
heyitshaas | 0 | 12,829,361,090 | 100% | ||
offgridlife | 0 | 5,253,750,358 | 100% | ||
papilloncharity | 0 | 2,987,781,057,198 | 78.5% | ||
theouterlight | 0 | 31,323,808,950 | 100% | ||
thegrandestine | 0 | 574,356,637 | 71.35% | ||
st3llar | 0 | 5,602,607,662 | 25% | ||
bluemist | 0 | 25,121,227,830 | 10% | ||
eturnerx | 0 | 20,938,355,849 | 1.6% | ||
dksart | 0 | 442,266,450,820 | 100% | ||
lenasveganliving | 0 | 931,612,101 | 5% | ||
theguruasia | 0 | 3,839,797,134 | 100% | ||
howo | 0 | 1,778,156,116,507 | 100% | ||
heart-to-heart | 0 | 12,509,458,450 | 20% | ||
amymya | 0 | 619,415,101 | 10% | ||
appreciator | 0 | 37,127,769,184,447 | 10% | ||
bambukah | 0 | 28,892,405,419 | 32% | ||
cranium | 0 | 3,594,534,681 | 1.5% | ||
vikisecrets | 0 | 860,630,464,541 | 33% | ||
shasta | 0 | 340,170,871,364 | 100% | ||
pocketrocket | 0 | 7,981,279,008 | 100% | ||
kharrazi | 0 | 4,463,562,364 | 100% | ||
yacobh | 0 | 11,752,935,259 | 70% | ||
holisticmom | 0 | 1,405,870,796 | 3% | ||
horpey | 0 | 67,888,997,835 | 100% | ||
idx | 0 | 25,084,253,123 | 100% | ||
chrisparis | 0 | 59,059,784,048 | 100% | ||
shogo | 0 | 5,127,404,908 | 100% | ||
fionasfavourites | 0 | 157,213,369,756 | 100% | ||
aafeng | 0 | 230,438,348,945 | 25% | ||
zyx066 | 0 | 61,886,151,238 | 30% | ||
tribesteemup | 0 | 174,724,413,770 | 100% | ||
santigs | 0 | 524,909,129,175 | 100% | ||
marketinggeek | 0 | 538,156,247 | 100% | ||
zirochka | 0 | 954,161,421,063 | 100% | ||
joalvarez | 0 | 216,558,157,058 | 55% | ||
gray00 | 0 | 917,211,343 | 100% | ||
akilie1029 | 0 | 540,041,773 | 100% | ||
ekkah | 0 | 877,658,368 | 100% | ||
noloafing | 0 | 620,780,579 | 12.05% | ||
kimzwarch | 0 | 16,252,691,634 | 4% | ||
steemmillionaire | 0 | 1,098,857,146,266 | 100% | ||
holbein81 | 0 | 19,876,920,748 | 100% | ||
aidefr | 0 | 496,327,521 | 2.6% | ||
eastmael | 0 | 34,603,158,057 | 100% | ||
solarsupermama | 0 | 2,193,252,601 | 11% | ||
joshman | 0 | 49,308,759,181 | 25% | ||
drax | 0 | 439,066,129,197 | 100% | ||
sorin.cristescu | 0 | 9,158,556,163 | 1.62% | ||
fatman | 0 | 9,175,222,350 | 2% | ||
votehero | 0 | 20,891,475,889 | 4.3% | ||
revisesociology | 0 | 804,744,660,163 | 30% | ||
maryed | 0 | 33,648,749,009 | 100% | ||
dilimunanzar | 0 | 10,385,216,432 | 100% | ||
insanityisfree | 0 | 845,763,417 | 43% | ||
boomerang | 0 | 1,711,118,320,504 | 100% | ||
diosarich | 0 | 3,449,066,902 | 50% | ||
msp-makeaminnow | 0 | 21,297,725,206 | 23.7% | ||
omra-sky | 0 | 72,301,527,416 | 50% | ||
risemultiversity | 0 | 3,187,743,158 | 21.5% | ||
ecotrain | 0 | 135,234,265,428 | 41% | ||
miprimerconcurso | 0 | 10,280,933,079 | 100% | ||
canadianrenegade | 0 | 10,474,862,909 | 5% | ||
esteem.app | 0 | 345,435,241 | 1% | ||
m-san | 0 | 5,099,014,604 | 100% | ||
ferod23 | 0 | 619,892,470 | 100% | ||
vegoutt-travel | 0 | 48,278,078,454 | 50% | ||
silasvogt | 0 | 686,546,385 | 50% | ||
kieranpearson | 0 | 1,774,678,521 | 33% | ||
fedesox | 0 | 10,290,450,313,438 | 100% | ||
spacesheep | 0 | 5,460,076,925 | 100% | ||
afterglow | 0 | 2,758,027,159 | 50% | ||
petrolinivideo | 0 | 4,025,174,221 | 50% | ||
phoenixwren | 0 | 93,586,019,397 | 50% | ||
dejan.vuckovic | 0 | 15,839,262,381 | 15% | ||
informationwar | 0 | 162,439,115,822 | 43% | ||
ybanezkim26 | 0 | 31,587,512,961 | 100% | ||
thekittygirl | 0 | 555,494,169,429 | 100% | ||
small.minion | 0 | 4,670,235,056 | 100% | ||
familyprotection | 0 | 765,678,546,961 | 51% | ||
sunsea | 0 | 12,811,589,709 | 5% | ||
eonwarped | 0 | 20,272,807,548 | 8% | ||
steemflow | 0 | 275,778,568,499 | 78% | ||
steveconnor | 0 | 93,090,380,727 | 50% | ||
libertyepodcast | 0 | 587,379,505 | 50% | ||
katerinaramm | 0 | 112,937,067,802 | 79% | ||
trucklife-family | 0 | 133,819,699,200 | 30% | ||
xsasj | 0 | 2,119,585,249 | 1.5% | ||
travoved | 0 | 71,485,436,629 | 100% | ||
belleamie | 0 | 5,500,161,685 | 25% | ||
yogajill | 0 | 173,257,418,046 | 100% | ||
steeminer4up | 0 | 498,184,844 | 100% | ||
mhm-philippines | 0 | 493,504,288 | 25% | ||
traf | 0 | 4,500,713,578,198 | 100% | ||
tazi | 0 | 25,374,631,568 | 45% | ||
itchyfeetdonica | 0 | 5,742,862,185 | 0.75% | ||
prometehum | 0 | 1,041,370,202 | 100% | ||
fjcalduch | 0 | 482,814,502,577 | 100% | ||
breelikeatree | 0 | 218,933,686,005 | 100% | ||
spiritabsolute | 0 | 41,164,592,600 | 100% | ||
ahmadmangazap | 0 | 1,466,314,526 | 0.5% | ||
vempromundo | 0 | 99,274,316,868 | 100% | ||
wiseagent | 0 | 21,151,615,971 | 50% | ||
cryptonized | 0 | 236,749,240 | 14% | ||
onestrong | 0 | 40,640,702,129 | 100% | ||
californiacrypto | 0 | 869,718,745 | 50% | ||
dechastre | 0 | 7,934,340,057 | 80% | ||
eaglespirit | 0 | 9,746,002,497 | 5% | ||
gorc | 0 | 853,900,603 | 7% | ||
pixietrix | 0 | 704,486,743 | 7% | ||
shadowlioncub | 0 | 727,571,775 | 7% | ||
kaerpediem | 0 | 572,224,224,005 | 100% | ||
sagescrub | 0 | 560,303,545 | 10.25% | ||
gabrielatravels | 0 | 172,875,868,822 | 100% | ||
thedrewshow | 0 | 650,148,327 | 100% | ||
alexanderfluke | 0 | 50,709,489,248 | 100% | ||
jude.villarta | 0 | 6,997,684,253 | 100% | ||
chenee | 0 | 1,256,081,866 | 100% | ||
irisworld | 0 | 12,262,872,094 | 100% | ||
gaborockstar | 0 | 90,083,886,106 | 50% | ||
moxieme | 0 | 1,391,846,395 | 20% | ||
smjn | 0 | 672,115,179,495 | 100% | ||
adventuroussoul | 0 | 2,180,181,226 | 10% | ||
belemo | 0 | 27,965,680,817 | 100% | ||
leslierevales | 0 | 7,006,775,953 | 50% | ||
manncpt | 0 | 3,111,000,494 | 1.5% | ||
empress-eremmy | 0 | 5,612,344,615 | 21.5% | ||
dynamicrypto | 0 | 464,248,798 | 1% | ||
jarvie | 0 | 1,853,547,927,437 | 42% | ||
marc-allaria | 0 | 80,629,308,446 | 100% | ||
jnmarteau | 0 | 625,032,444 | 1.5% | ||
philnewton | 0 | 567,572,194 | 7.5% | ||
the-reaper | 0 | 502,896,027 | 71.35% | ||
thetroublenotes | 0 | 80,937,356,018 | 100% | ||
atongis | 0 | 35,003,306,055 | 10% | ||
bishoppeter1 | 0 | 461,064,066 | 10% | ||
krommus | 0 | 1,123,617,818 | 50% | ||
lunaticpandora | 0 | 70,822,407,467 | 50% | ||
kamalkhann | 0 | 1,107,354,845 | 35.67% | ||
kkarenmp | 0 | 5,078,039,967 | 5% | ||
atma-yoga | 0 | 432,951,210 | 50% | ||
neeqi | 0 | 464,019,401 | 100% | ||
cryptosharon | 0 | 3,902,575,925 | 100% | ||
tonysayers33 | 0 | 13,475,523,604 | 33% | ||
openmind3000 | 0 | 2,524,081,461 | 50% | ||
minerspost | 0 | 511,238,723 | 12.5% | ||
aperterikk | 0 | 573,384,737 | 50% | ||
hempress | 0 | 1,011,258,778 | 11% | ||
pkocjan | 0 | 975,029,677 | 80% | ||
rubelynmacion | 0 | 32,981,753,876 | 100% | ||
darkpylon | 0 | 699,227,249 | 12.5% | ||
nataboo | 0 | 1,318,193,159 | 50% | ||
onlavu | 0 | 138,308,285,943 | 100% | ||
asgarth | 0 | 2,024,045,440,116 | 100% | ||
vegan.niinja | 0 | 4,444,403,713 | 22% | ||
happymichael | 0 | 2,628,099,079 | 100% | ||
bertrayo | 0 | 5,662,594,299 | 5% | ||
cst90 | 0 | 480,222,410,951 | 100% | ||
eugenekul | 0 | 934,861,638 | 22% | ||
crowbarmama | 0 | 4,515,145,256 | 20% | ||
vinamra | 0 | 10,580,621,175 | 100% | ||
lisfabian | 0 | 3,180,713,744 | 100% | ||
homestead-guru | 0 | 40,340,769,507 | 50% | ||
g4fun | 0 | 11,536,974,073 | 25% | ||
jjerryhan | 0 | 102,275,719,398 | 39.25% | ||
putu300 | 0 | 10,744,665,985 | 50% | ||
amigoponc | 0 | 7,209,024,281 | 100% | ||
supreme-verdict | 0 | 887,914,500 | 71.35% | ||
almi | 0 | 669,483,722,905 | 100% | ||
homeginkit | 0 | 10,818,604,320 | 100% | ||
gabbyg86 | 0 | 21,909,958,380 | 35% | ||
originalmrspice | 0 | 13,592,231,713 | 50% | ||
steemporras | 0 | 2,375,122,520 | 100% | ||
josemalavem | 0 | 26,842,324,168 | 39% | ||
properfraction | 0 | 65,249,009,282 | 100% | ||
satren | 0 | 175,556,450,237 | 100% | ||
abwasserrohr | 0 | 16,404,462,346 | 100% | ||
miosha | 0 | 647,672,141,449 | 100% | ||
jocieprosza | 0 | 206,183,447,746 | 100% | ||
yablonsky | 0 | 85,987,701,922 | 100% | ||
jeronimorubio | 0 | 10,041,387,479 | 100% | ||
sunshinebear | 0 | 1,231,518,404 | 50% | ||
patschwork | 0 | 82,035,641,592 | 100% | ||
steemitcolombia | 0 | 4,300,951,345 | 100% | ||
silverd510 | 0 | 13,891,103,170 | 71% | ||
immanuel94 | 0 | 162,783,231,378 | 100% | ||
marcus0alameda | 0 | 10,131,772,239 | 100% | ||
andablackwidow | 0 | 64,344,696,092 | 100% | ||
bil.prag | 0 | 317,337,061,256 | 32% | ||
dotwin1981 | 0 | 194,209,023,373 | 35% | ||
celestialcow | 0 | 5,489,135,119 | 22% | ||
sanderjansenart | 0 | 10,095,658,722 | 5% | ||
kkndworld | 0 | 457,425,953 | 100% | ||
louis88 | 0 | 2,661,700,362,873 | 100% | ||
zaku | 0 | 21,742,121,912 | 10% | ||
reversehitler88 | 0 | 13,957,675,576 | 100% | ||
paragism | 0 | 3,247,504,982 | 100% | ||
franciscopr | 0 | 29,630,556,518 | 100% | ||
mrchef111 | 0 | 20,648,377,339 | 25% | ||
ablaze | 0 | 297,533,094,973 | 100% | ||
flyerchen | 0 | 39,753,813,938 | 100% | ||
wolfhart | 0 | 16,138,648,138 | 40% | ||
tesmoforia | 0 | 30,430,203,557 | 100% | ||
yameen | 0 | 311,904,867,309 | 100% | ||
darkfuseion | 0 | 1,146,217,187 | 100% | ||
skyroad | 0 | 10,115,159,141 | 100% | ||
gisi | 0 | 4,453,872,503 | 10% | ||
silher | 0 | 47,917,008,414 | 100% | ||
awesomegames007 | 0 | 690,372,679 | 0.5% | ||
abdulmath | 0 | 3,660,937,545 | 50% | ||
jemmanuel | 0 | 10,647,411,201 | 20% | ||
gadrian | 0 | 673,939,076,981 | 50% | ||
illuminationst8 | 0 | 6,346,716,840 | 25% | ||
fotogruppemunich | 0 | 3,421,661,589 | 80% | ||
inciter | 0 | 7,211,009,369 | 10% | ||
allover | 0 | 1,188,929,911 | 50% | ||
xchng | 0 | 23,962,998,000 | 80% | ||
lartist-zen | 0 | 1,823,258,135 | 100% | ||
choco11oreo11 | 0 | 1,880,285,502 | 100% | ||
manuelmusic | 0 | 887,660,284 | 6% | ||
michellpiala | 0 | 3,011,473,861 | 50% | ||
imcore | 0 | 866,444,788 | 10% | ||
gogreenbuddy | 0 | 3,820,281,936,049 | 50% | ||
springlining | 0 | 21,498,814,685 | 100% | ||
tsnaks | 0 | 6,865,846,059 | 100% | ||
achimmertens | 0 | 8,639,801,849 | 2.5% | ||
brainpod | 0 | 1,024,532,029 | 25% | ||
kgakakillerg | 0 | 21,282,277,818 | 10% | ||
flyinghigher | 0 | 39,194,665,590 | 100% | ||
joeytechtalks | 0 | 1,587,507,553 | 50% | ||
camuel | 0 | 4,182,908,385 | 10% | ||
steemer-x | 0 | 537,222,850 | 50% | ||
softa | 0 | 383,960,304,927 | 100% | ||
el-dee-are-es | 0 | 3,627,679,840 | 10% | ||
we-are | 0 | 21,345,035,612 | 87.2% | ||
thomaskatan | 0 | 1,516,925,695 | 70% | ||
retard-gamer-de | 0 | 544,941,959 | 21.5% | ||
sbi3 | 0 | 314,526,622,604 | 40.95% | ||
veteranforcrypto | 0 | 4,352,318,107 | 20% | ||
smacommunity | 0 | 904,516,939 | 50% | ||
fw206 | 0 | 4,468,194,160,655 | 56% | ||
techcoderx | 0 | 644,700,560,385 | 100% | ||
cryptomaniacsgr | 0 | 104,635,565,086 | 50% | ||
sayago | 0 | 828,187,198 | 50% | ||
brettblue | 0 | 823,413,499 | 50% | ||
reality-variance | 0 | 889,133,114 | 20% | ||
crypticat | 0 | 181,350,420,425 | 50% | ||
steem-tube | 0 | 7,825,467,860 | 100% | ||
annemariemay | 0 | 495,303,606 | 50% | ||
alfrednoyed | 0 | 10,438,067,337 | 100% | ||
onelovedtube | 0 | 14,472,221,619 | 100% | ||
fernandosoder | 0 | 2,771,423 | 100% | ||
trentox | 0 | 458,386,374 | 100% | ||
cambridgeport90 | 0 | 13,515,075,025 | 50% | ||
steddyman | 0 | 2,461,124,789 | 100% | ||
commonlaw | 0 | 5,562,912,416 | 35% | ||
cryptoandcoffee | 0 | 411,544,678,725 | 10% | ||
bluewall | 0 | 30,356,510,514 | 100% | ||
steempeak | 0 | 1,331,695,028,689 | 100% | ||
joanm897 | 0 | 1,434,692,166 | 100% | ||
myfreebtc | 0 | 11,544,927,842 | 100% | ||
kstop1 | 0 | 15,494,272,956 | 100% | ||
solarwarrior | 0 | 79,134,301,122 | 100% | ||
toddmck | 0 | 2,492,690,868 | 100% | ||
gregorypatrick | 0 | 597,091,302 | 33% | ||
smarmy | 0 | 885,141,661 | 50% | ||
voitakjewelry | 0 | 1,122,184,523 | 50% | ||
marblely | 0 | 35,323,839,110 | 30% | ||
purrix | 0 | 21,288,677,094 | 100% | ||
haccolong | 0 | 1,310,556,349 | 10.75% | ||
newsnownorthwest | 0 | 829,591,675 | 6.45% | ||
gaottantacinque | 0 | 188,790,135 | 100% | ||
mannacurrency | 0 | 20,316,969,210 | 10% | ||
scrawly | 0 | 2,573,595,326 | 100% | ||
drsensor | 0 | 2,294,055,045 | 80% | ||
hemo | 0 | 3,670,613,040 | 100% | ||
roozeec | 0 | 511,039,509 | 10% | ||
xves | 0 | 20,461,370,924 | 50% | ||
mrnightmare89 | 0 | 6,337,324,527 | 20% | ||
ambiguity | 0 | 48,301,832,739 | 100% | ||
zaibkang | 0 | 185,062,107 | 100% | ||
rufruf | 0 | 753,574,887 | 100% | ||
rilo | 0 | 672,310,851 | 100% | ||
melor9 | 0 | 9,985,203,800 | 50% | ||
icepee | 0 | 16,114,275,786 | 50% | ||
steem.craft | 0 | 21,305,264,647 | 100% | ||
yestermorrow | 0 | 12,189,017,673 | 31% | ||
thehive | 0 | 32,199,650,879 | 100% | ||
smartvote | 0 | 86,995,783,351 | 3.8% | ||
fandelkefir | 0 | 4,103,294,644 | 100% | ||
light-hearted | 0 | 2,827,241,862 | 100% | ||
hoaithu | 0 | 3,465,099,849 | 9.13% | ||
vixmemon | 0 | 9,774,224,283 | 30% | ||
et13nn3 | 0 | 3,835,121,195 | 100% | ||
aconsciousness | 0 | 2,586,134,736 | 95% | ||
deepdives | 0 | 161,448,277,747 | 43% | ||
gasaeightyfive | 0 | 266,294,330 | 100% | ||
goingbonkers | 0 | 68,163,928,547 | 100% | ||
dlike | 0 | 386,208,928,140 | 100% | ||
voxmortis | 0 | 37,982,252,856 | 20% | ||
anhvu | 0 | 2,161,706,018 | 8.6% | ||
mobi72 | 0 | 3,191,915,165 | 100% | ||
emaillisahere | 0 | 1,101,006,886 | 75% | ||
teampdx | 0 | 812,890,456 | 100% | ||
teamoregon | 0 | 1,145,687,665 | 100% | ||
buzzbee | 0 | 527,991,450 | 40% | ||
tipsybosphorus | 0 | 5,940,635,736 | 90% | ||
pboulet | 0 | 231,795,159,237 | 100% | ||
chike4545 | 0 | 964,098,144 | 100% | ||
marcocasario | 0 | 10,760,795 | 0.01% | ||
voter002 | 0 | 21,345,062,814 | 45.5% | ||
steemituplife | 0 | 650,337,130 | 25% | ||
marshalmugi | 0 | 5,443,798,932 | 100% | ||
cribbio | 0 | 783,055,061 | 100% | ||
podg3 | 0 | 4,822,711,057 | 90% | ||
steemwhalepower | 0 | 958,893,066 | 100% | ||
ganjafarmers | 0 | 921,547,820 | 100% | ||
maesha | 0 | 541,508,840 | 50% | ||
riskneutral | 0 | 5,060,274,373 | 43% | ||
kind.network | 0 | 3,818,954,312 | 100% | ||
thrasher666 | 0 | 2,576,257,507 | 60% | ||
vasigo | 0 | 13,939,354,469 | 100% | ||
peakmonsters | 0 | 527,123,671,497 | 100% | ||
nmcdougal94 | 0 | 1,509,759,311 | 10% | ||
geeklania | 0 | 720,705,318 | 100% | ||
raoufwilly | 0 | 812,307,486 | 30% | ||
cremisi | 0 | 1,869,005,942 | 100% | ||
miguelbaez | 0 | 4,731,682,789 | 10% | ||
carbodexkim | 0 | 816,999,198 | 100% | ||
ladyangelwolf | 0 | 1,523,729,547 | 100% | ||
muneeb487 | 0 | 1,731,483,441 | 100% | ||
iovoccae | 0 | 4,608,402,552 | 100% | ||
glastar | 0 | 606,294,521 | 100% | ||
downunder-doctor | 0 | 592,185,504 | 100% | ||
keket | 0 | 671,207,880 | 50% | ||
bia.birch | 0 | 2,869,972,112 | 20.5% | ||
gudnius.comics | 0 | 7,527,703,159 | 100% | ||
steemlandia | 0 | 4,586,600,162 | 100% | ||
francescomai | 0 | 50,219,047,624 | 100% | ||
tamito0201 | 0 | 1,689,655,776 | 100% | ||
starrouge | 0 | 1,048,492,524 | 50% | ||
wherein | 0 | 25,331,783,640 | 100% | ||
cowboysblog | 0 | 3,084,734,285 | 100% | ||
irionet | 0 | 9,675,880,934 | 100% | ||
zerofive | 0 | 872,902,987 | 50% | ||
muntaharaceh | 0 | 7,893,829,805 | 25% | ||
jacuzzi | 0 | 582,585,221 | 1.4% | ||
kaldewei | 0 | 707,683,994 | 35% | ||
primeradue | 0 | 550,311,232 | 33% | ||
cnstm | 0 | 119,995,259,622 | 100% | ||
likuang007 | 0 | 665,860,519 | 100% | ||
vickyguevara | 0 | 3,270,562,505 | 100% | ||
miguelmederico | 0 | 1,064,087,814 | 40% | ||
caribehub | 0 | 1,381,469,491 | 100% | ||
lianjingmedia | 0 | 990,499,210 | 100% | ||
broxi | 0 | 14,546,623,258 | 50% | ||
goodcontentbot | 0 | 806,982,386 | 15% | ||
breadbakers | 0 | 3,125,152,924 | 100% | ||
kokadi | 0 | 584,518,917 | 80% | ||
hungrybear | 0 | 595,437,114 | 14% | ||
osavi | 0 | 19,437,569,598 | 100% | ||
ond | 0 | 529,020,031 | 100% | ||
hungryharish | 0 | 25,647,539,863 | 100% | ||
sophieandhenrik | 0 | 13,440,657,919 | 100% | ||
kggymlife | 0 | 9,897,240,605 | 50% | ||
zeero22 | 0 | 9,918,210,552 | 51% | ||
bitcoinator | 0 | 3,223,205,970 | 100% | ||
guysellars | 0 | 2,369,019,444 | 100% | ||
filosof103 | 0 | 0 | 100% | ||
alenox | 0 | 620,259,156 | 5% | ||
maxsieg | 0 | 6,456,932,448 | 43% | ||
livingfreedom | 0 | 983,579,740 | 100% | ||
hungryanu | 0 | 3,141,526,101 | 50% | ||
oneloveipfs | 0 | 13,269,420,139 | 100% | ||
rocketpower | 0 | 614,984,912 | 25% | ||
photographercr | 0 | 528,191,502 | 20% | ||
szf | 0 | 966,651,393 | 50% | ||
monsterbuster | 0 | 58,627,617,340 | 100% | ||
steelborne | 0 | 2,828,998,751 | 20% | ||
bigmoneyman | 0 | 921,984,388 | 50% | ||
loudutim | 0 | 291,452,587 | 100% | ||
helgalubevi | 0 | 25,210,348,580 | 50% | ||
iamangierose | 0 | 530,608,702 | 50% | ||
deeanndmathews | 0 | 319,093,849,692 | 100% | ||
beerlover | 0 | 6,166,157,275 | 5% | ||
huntforsteem | 0 | 16,323,423,979 | 100% | ||
aboutheraklion | 0 | 1,377,233,062 | 39.5% | ||
blumela | 0 | 1,314,205,071 | 0.5% | ||
agmoore2 | 0 | 16,431,825,715 | 100% | ||
tinyhousecryptos | 0 | 456,629,242 | 5% | ||
clownworld | 0 | 2,003,817,647 | 21.5% | ||
thebombkids | 0 | 33,189,695,368 | 100% | ||
zeruxanime | 0 | 711,148,579 | 50% | ||
xyz004 | 0 | 49,331,447,963 | 25% | ||
steemindian | 0 | 4,315,705,223 | 100% | ||
cheer-up | 0 | 17,037,843,946 | 80% | ||
davidtron | 0 | 5,369,936,346 | 85% | ||
cryptogambit | 0 | 1,442,626,834 | 7.5% | ||
imbartley | 0 | 793,280,935 | 25% | ||
kgswallet | 0 | 1,096,564,035 | 20% | ||
ffoorryykkww | 0 | 0 | 100% | ||
reggaesteem | 0 | 3,205,374,867 | 29.75% | ||
nichemarket | 0 | 1,321,981,180 | 100% | ||
ezun1 | 0 | 2,588,249,956 | 100% | ||
farm1 | 0 | 679,103,302,811 | 100% | ||
freedomring | 0 | 5,234,643,458 | 100% | ||
votebetting | 0 | 21,843,457,018 | 100% | ||
hyborian-strain | 0 | 2,435,358,371 | 30% | ||
freddio.sport | 0 | 4,098,000,222 | 100% | ||
babytarazkp | 0 | 2,281,337,220 | 50% | ||
eulymer | 0 | 739,895,628 | 100% | ||
sbi-tokens | 0 | 4,710,981,508 | 12.05% | ||
janaveda | 0 | 29,325,060,587 | 100% | ||
lynds | 0 | 599,517,052,059 | 100% | ||
nullandvoid | 0 | 555,967,246 | 86% | ||
the-table | 0 | 4,063,485,432 | 100% | ||
bilpcoinbot | 0 | 4,784,680,304 | 100% | ||
thehouse | 0 | 2,084,675,349 | 90% | ||
oratione | 0 | 903,472,819 | 100% | ||
gigel2 | 0 | 588,790,214,485 | 100% | ||
wallar | 0 | 4,161,751,046 | 100% | ||
pogarda | 0 | 460,555,256 | 100% | ||
dappstats | 0 | 4,755,992,832 | 15% | ||
ibelin | 0 | 23,501,725,630 | 70% | ||
silverquest | 0 | 24,980,107,029 | 100% | ||
chris-uk | 0 | 13,542,202,078 | 40% | ||
bilpcoin.pay | 0 | 544,618,903 | 10% | ||
tobago | 0 | 624,862,362 | 35% | ||
unschool | 0 | 17,132,229,557 | 100% | ||
honeychip | 0 | 543,735,034 | 100% | ||
unpopular | 0 | 1,495,971,269,455 | 100% | ||
apineda | 0 | 7,703,249,566 | 100% | ||
rockface | 0 | 5,389,250,994 | 100% | ||
thecontesttrain | 0 | 500,918,465 | 21.5% | ||
galenkp.aus | 0 | 1,211,381,760 | 100% | ||
delilhavores | 0 | 555,497,701 | 10% | ||
lachg89 | 0 | 5,167,937,057 | 100% | ||
asia-pl | 0 | 307,112,741,344 | 100% | ||
gmlrecordz | 0 | 753,208,619 | 50% | ||
bpcvoter4 | 0 | 0 | 100% | ||
journeyofanomad | 0 | 5,709,431,519 | 40% | ||
angel33 | 0 | 642,588,051 | 100% | ||
inigo-montoya-jr | 0 | 2,306,613,955 | 36.55% | ||
garlet | 0 | 74,309,250,564 | 100% | ||
onestop | 0 | 10,831,399,666 | 100% | ||
kgsupport | 0 | 1,845,417,681 | 36% | ||
atma.love | 0 | 37,029,949,694 | 21.5% | ||
marblesz | 0 | 2,175,037,614 | 30% | ||
ugochill | 0 | 50,833,611,941 | 100% | ||
keys-defender | 0 | 3,706,988,120 | 100% | ||
adcreatordesign | 0 | 5,098,920,558 | 50% | ||
nerdvana | 0 | 567,598,132 | 5% | ||
van.dining | 0 | 1,599,358,177 | 100% | ||
hive-134220 | 0 | 36,530,199,011 | 100% | ||
alexa.art | 0 | 57,091,760,531 | 100% | ||
tommys.shop | 0 | 12,944,332,433 | 100% | ||
darine.darine | 0 | 181,321,285,150 | 100% | ||
peakd | 0 | 10,429,440,932,802 | 100% | ||
hivebuzz | 0 | 20,445,159,758 | 3% | ||
hive-134382 | 0 | 2,492,454,950 | 100% | ||
hivewatchers | 0 | 1,945,321,966 | 55% | ||
pinmapple | 0 | 1,171,004,112 | 1.5% | ||
theterminal | 0 | 325,788,300,241 | 80% | ||
laruche | 0 | 4,865,618,977 | 3.25% | ||
ykretz | 0 | 457,837,369 | 5% | ||
abundance.tribe | 0 | 6,553,546,198 | 100% | ||
waiviolabs | 0 | 5,897,510,473 | 100% | ||
reggaejahm | 0 | 59,331,146,931 | 35% | ||
softworld | 0 | 466,311,758,623 | 100% | ||
polish.hive | 0 | 453,818,497,460 | 100% | ||
captainhive | 0 | 1,329,991,846,299 | 50% | ||
louis00334 | 0 | 2,333,982,705 | 50% | ||
hivelist | 0 | 2,545,252,249 | 3% | ||
ninnu | 0 | 596,604,723 | 50% | ||
ecency | 0 | 386,639,144,718 | 1% | ||
woelfchen | 0 | 396,897,117,494 | 100% | ||
forkyw | 0 | 0 | 100% | ||
ghaazi | 0 | 5,788,439,624 | 100% | ||
devpress | 0 | 614,457,038 | 50% | ||
noelyss | 0 | 1,860,507,910 | 5% | ||
daniky | 0 | 2,710,619,359 | 100% | ||
jagged71 | 0 | 1,173,914,047 | 21.5% | ||
lucianav | 0 | 42,088,178,026 | 100% | ||
patronpass | 0 | 2,018,906,690 | 12.5% | ||
hiro-hive | 0 | 1,203,669,233,035 | 100% | ||
reza-shamim | 0 | 692,217,891 | 40% | ||
hivebuilder | 0 | 4,613,197,161 | 100% | ||
gabilan55 | 0 | 702,105,335 | 5% | ||
olaunlimited | 0 | 1,426,942,054 | 100% | ||
ecency.stats | 0 | 387,772,248 | 1% | ||
dayerlis | 0 | 817,403,764 | 100% | ||
hive-108278 | 0 | 886,611,018 | 50% | ||
rafaelgreen | 0 | 1,043,003,563 | 100% | ||
hrcl.art | 0 | 3,567,401,444 | 100% | ||
sylmarill | 0 | 2,004,029,427 | 100% | ||
aurauramagic | 0 | 13,071,192,505 | 100% | ||
storiesoferne | 0 | 248,834,650,760 | 100% | ||
usainvote | 0 | 10,258,007,666,204 | 50% | ||
trangbaby | 0 | 265,443,148,909 | 100% | ||
borbolet | 0 | 2,047,870,526 | 30% | ||
omarrojas | 0 | 34,562,102,615 | 50% | ||
noalys | 0 | 1,557,658,586 | 5% | ||
museodelcaos | 0 | 5,927,492,456 | 100% | ||
iamfarhad | 0 | 822,541,749 | 50% | ||
hive-168869 | 0 | 7,793,624,771 | 100% | ||
elricmoonslayer | 0 | 466,126,976 | 50% | ||
wannderingsoul | 0 | 947,280,350 | 100% | ||
danzocal | 0 | 6,365,581,417 | 100% | ||
dineandwine | 0 | 253,294,434 | 100% | ||
kattycrochet | 0 | 74,701,386,515 | 50% | ||
nikoszzz | 0 | 2,828,873,537 | 100% | ||
alex-rourke | 0 | 2,710,911,904,546 | 100% | ||
hyper.speed | 0 | 1,311,566,680 | 100% | ||
tamiapt6 | 0 | 1,105,380,093 | 100% | ||
bulkathos | 0 | 65,400,279,847 | 100% | ||
peakd.top.d001 | 0 | 525,263,041 | 100% | ||
completewind | 0 | 5,845,230,153 | 100% | ||
atexoras | 0 | 0 | 100% | ||
babeltrips | 0 | 24,726,825,098 | 50% | ||
trostparadox | 0 | 4,807,105,797,337 | 100% | ||
repayme4568 | 0 | 933,094,219 | 20.5% | ||
haitch | 0 | 3,099,564,001 | 100% | ||
lukaszolejnik | 0 | 1,093,391,751 | 100% | ||
hierkraj | 0 | 926,274,885 | 100% | ||
atexoras.witness | 0 | 1,504,521,005 | 100% | ||
retaliatorr | 0 | 2,998,726,732 | 100% | ||
elgatoshawua | 0 | 1,630,799,349 | 5% | ||
abisag | 0 | 10,199,151,669 | 100% | ||
xyba | 0 | 50,880,595,117 | 100% | ||
azamrai | 0 | 308,209,782,345 | 100% | ||
nyxlabs | 0 | 983,383,934 | 3.5% | ||
mapetoke | 0 | 49,172,967,600 | 100% | ||
wend1go | 0 | 16,091,076,025 | 100% | ||
failingforward | 0 | 933,217,116 | 40% | ||
unschooler | 0 | 84,537,569,649 | 100% | ||
happyfrog420-new | 0 | 108,012,605,078 | 100% | ||
rendrianarma | 0 | 2,464,025,889 | 50% | ||
hexagono6 | 0 | 1,158,680,461 | 5% | ||
phuongthao98 | 0 | 2,187,540,665 | 50% | ||
leoball | 0 | 1,162,101,488 | 25% | ||
zarnoex | 0 | 489,607,661 | 100% | ||
jane1289 | 0 | 3,780,544,326 | 2% | ||
hive-defender | 0 | 118,588,773 | 100% | ||
dendendenden | 0 | 6,840,587,427 | 100% | ||
power-kappe | 0 | 671,700,594 | 10% | ||
reidenling90 | 0 | 5,338,576,432 | 100% | ||
thaolaven | 0 | 654,405,016 | 50% | ||
atexoras.pub | 0 | 56,479,130,141 | 100% | ||
louis.pay | 0 | 1,773,234,467 | 100% | ||
hive.friends | 0 | 0 | 1% | ||
hjrrodriguez | 0 | 28,067,881,831 | 100% | ||
edmundochauran | 0 | 699,903,524,496 | 100% | ||
egistar | 0 | 592,485,893 | 2.5% | ||
shanhenry | 0 | 3,167,929,224 | 100% | ||
mariaser | 0 | 31,246,940,383 | 100% | ||
fotomaglys | 0 | 4,172,561,725 | 5% | ||
seryi13 | 0 | 1,209,728,551 | 7% | ||
cesarsj5 | 0 | 1,405,427,847 | 100% | ||
estebandido1983 | 0 | 2,082,203,091 | 80% | ||
davidbright | 0 | 18,895,044,877 | 50% | ||
cowboyzlegend27 | 0 | 23,607,821,557 | 100% | ||
godslove123 | 0 | 511,616,782 | 5% | ||
t-nil | 0 | 6,080,794,842 | 100% | ||
werkseber | 0 | 63,421,905,349 | 100% | ||
aprasad2325 | 0 | 1,861,793,255 | 5% | ||
miguelon01 | 0 | 2,051,415,950 | 100% | ||
delver | 0 | 20,452,366,154 | 43% | ||
chuyster | 0 | 623,876,487 | 100% | ||
patsitivity | 0 | 150,416,666,807 | 100% | ||
menzo | 0 | 27,844,983,962 | 100% | ||
trezzahn | 0 | 16,109,114,241 | 100% | ||
olympicdragon | 0 | 788,174,693 | 100% | ||
thu172 | 0 | 5,673,807,164 | 100% | ||
tanzil2024 | 0 | 101,714,507,109 | 50% | ||
mozzie5 | 0 | 18,081,678,506 | 100% | ||
soturi | 0 | 878,414,042 | 100% | ||
acantoni | 0 | 13,229,739,206 | 50% | ||
antoniojg | 0 | 11,696,596,257 | 100% | ||
snaqz | 0 | 2,434,769,418 | 100% | ||
marsupia | 0 | 478,076,149 | 15% | ||
malhy | 0 | 1,697,528,300 | 5% | ||
galih.amenk | 0 | 1,663,851,632 | 100% | ||
lynnnguyen | 0 | 7,828,923,107 | 100% | ||
kimloan | 0 | 7,952,829,040 | 50% | ||
winnietran | 0 | 4,336,832,111 | 50% | ||
gejzep | 0 | 526,717,389 | 100% | ||
eolianpariah2 | 0 | 12,511,293,605 | 4.5% | ||
dora381 | 0 | 39,650,836,150 | 100% | ||
hylene74 | 0 | 64,526,506,601 | 100% | ||
pinkhub | 0 | 34,896,542,975 | 100% | ||
almightygrim | 0 | 18,321,193,363 | 45% | ||
crazy-bee | 0 | 34,548,783,738 | 100% | ||
brandonperez | 0 | 0 | 100% | ||
adrianalara | 0 | 648,495,516 | 5% | ||
tillmea | 0 | 526,156,399 | 100% | ||
pappyelblanco | 0 | 3,074,510,790 | 50% | ||
gaposchkin | 0 | 10,487,787,617 | 100% | ||
gezellig | 0 | 1,689,886,251 | 50% | ||
middle-earthling | 0 | 388,481,770 | 10% | ||
meltysquid | 0 | 816,478,373 | 100% | ||
rc-assist | 0 | 27,196,549,317 | 70% | ||
ssebasv | 0 | 453,616,395 | 100% | ||
dnrxgwp2021 | 0 | 1,341,263,537 | 20% | ||
gercripto | 0 | 9,444,024,877 | 100% | ||
sunnyvo | 0 | 17,244,119,194 | 50% | ||
promokahka | 0 | 7,193,108,623 | 100% | ||
hyhy93 | 0 | 5,437,691,991 | 100% | ||
kaibagt | 0 | 24,463,606,282 | 100% | ||
crypto-shots | 0 | 124,090,025 | 100% | ||
lovemessages | 0 | 3,352,134,925 | 100% | ||
michaelreischer | 0 | 16,714,796,912 | 100% | ||
huckleberrie | 0 | 216,610,254,722 | 80% | ||
jomancub | 0 | 676,166,664 | 20% | ||
lamphuong | 0 | 1,968,393,817 | 50% | ||
hucksbucks | 0 | 12,081,749,977 | 100% | ||
lichtkunstfoto | 0 | 14,768,509,644 | 10% | ||
ivypham | 0 | 18,959,924,389 | 100% | ||
defibenji | 0 | 0 | 100% | ||
winly | 0 | 3,607,275,358 | 100% | ||
taradraz1 | 0 | 791,096,045 | 100% | ||
liveofdalla | 0 | 4,156,034,052 | 5% | ||
emmaba1 | 0 | 1,717,202,151 | 100% | ||
littlebee4 | 0 | 54,636,499,299 | 12% | ||
annabeth | 0 | 582,335,859 | 10% | ||
vanerojas90 | 0 | 10,492,695,068 | 100% | ||
yoani | 0 | 13,979,213,237 | 100% | ||
karelnt | 0 | 741,955,897 | 20% | ||
tgarcialvarez | 0 | 581,310,848 | 20% | ||
cryptoshots.nft | 0 | 451,336,721 | 100% | ||
fernandoylet | 0 | 33,637,976,439 | 100% | ||
hivecuba | 0 | 475,700,329,257 | 20% | ||
kouba | 0 | 0 | 100% | ||
donigarten | 0 | 1,186,227,984 | 100% | ||
moniqwashere | 0 | 3,858,138,635 | 100% | ||
ramon2024 | 0 | 260,971,935,910 | 100% | ||
archangel21 | 0 | 5,067,267,896 | 100% | ||
yisusth | 0 | 23,244,336,966 | 100% | ||
dollayah | 0 | 1,290,557,829 | 42.5% | ||
serpent7776 | 0 | 1,038,205,240 | 100% | ||
androliuben | 0 | 2,974,657,825 | 10% | ||
resonator | 0 | 14,331,923,798,893 | 43% | ||
abouttodie | 0 | 2,049,644,953 | 50% | ||
nazom | 0 | 468,847,951 | 20.5% | ||
odessamama | 0 | 4,883,917,449 | 100% | ||
aletoalonewolf | 0 | 2,613,802,576 | 25% | ||
franzpaulie | 0 | 48,219,382,324 | 100% | ||
youdontknowme | 0 | 1,166,164,080 | 50% | ||
mryoung1979 | 0 | 9,887,763,897 | 100% | ||
panosdada.tip | 0 | 913,099,454 | 100% | ||
castri-ja | 0 | 554,017,570 | 2.5% | ||
nwothini335 | 0 | 14,546,746,819 | 100% | ||
drstealth | 0 | 3,253,087,226 | 100% | ||
cryptoshots.play | 0 | 0 | 10% | ||
meyateingi | 0 | 29,283,710,562 | 100% | ||
llunasoul | 0 | 604,713,579 | 1.11% | ||
coldbeetrootsoup | 0 | 1,014,200,542,807 | 100% | ||
growandbow | 0 | 12,906,766,068 | 1.11% | ||
tzae | 0 | 730,611,131 | 100% | ||
rocco-maloney | 0 | 785,509,101 | 100% | ||
lyamalfonzo23 | 0 | 1,550,673,319 | 100% | ||
keechadkikali | 0 | 4,404,218,756 | 100% | ||
abbiek | 0 | 1,554,968,634 | 100% | ||
incublus | 0 | 237,379,878,811 | 50% | ||
ezgicop | 0 | 5,930,733,109 | 50% | ||
peak.open | 0 | 34,121,004,157 | 100% | ||
bgmoha | 0 | 834,431,752 | 55% | ||
xerox94 | 0 | 3,634,078,637 | 100% | ||
jagjnr | 0 | 766,934,461 | 21.5% | ||
pinkchic | 0 | 939,822,861 | 2.4% | ||
salicj | 0 | 7,545,752,133 | 16% | ||
queercoin | 0 | 92,066,840,294 | 50% | ||
dewamke44 | 0 | 3,834,417,304 | 100% | ||
cryptoshotsdoom | 0 | 0 | 10% | ||
daudmuhammad2022 | 0 | 431,240,685 | 100% | ||
celestegray | 0 | 31,018,053,415 | 50% | ||
hive-132595 | 0 | 1,932,116,677 | 100% | ||
fredaig | 0 | 0 | 42% | ||
artefactoestudio | 0 | 2,715,890,142 | 100% | ||
brain71 | 0 | 986,384,979 | 21.5% | ||
yzamazing | 0 | 3,318,996,682 | 40% | ||
awildovasquez | 0 | 43,378,393,853 | 100% | ||
mariolisrnaranjo | 0 | 5,666,486,748 | 100% | ||
duskobgd | 0 | 142,373,562,137 | 100% | ||
gornat | 0 | 3,643,083,681 | 20% | ||
wendy23 | 0 | 5,973,684,878 | 10% | ||
actordontee | 0 | 606,582,407 | 5% | ||
ibbtammy | 0 | 148,132,915,513 | 100% | ||
denisda | 0 | 8,017,326,044 | 50% | ||
dovycola | 0 | 5,420,261,491 | 100% | ||
gollumkp | 0 | 2,419,435,930 | 20% | ||
kathajimenezr | 0 | 9,530,262,469 | 100% | ||
faniaviera | 0 | 8,625,197,235 | 100% | ||
karina.gpt | 0 | 0 | 100% | ||
lorenabeltran | 0 | 1,588,857,096 | 100% | ||
freiheitsammler | 0 | 80,790,972,584 | 100% | ||
preciouz-01 | 0 | 697,712,638 | 100% | ||
tahastories1 | 0 | 576,249,230 | 5% | ||
ayamihaya | 0 | 9,794,423,593 | 42% | ||
biologistbrito | 0 | 15,333,078,892 | 40% | ||
kawa-i-kredki | 0 | 20,984,180,937 | 100% | ||
thaliaperez | 0 | 12,246,884,459 | 100% | ||
ecency.waves | 0 | 0 | 1% | ||
bihutnetwork | 0 | 925,052,828 | 50% | ||
lordnasty | 0 | -20,340,662,122 | -100% | ||
yummycruz1 | 0 | 9,081,196,960 | 50% | ||
marianosdeath | 0 | 11,467,595,226 | 100% | ||
literal | 0 | 65,664,911,053 | 100% | ||
terra.sinkhole | 0 | 41,324,639,575 | 100% | ||
like2cbrs | 0 | 1,156,949,651 | 100% | ||
linux-software | 0 | 0 | 100% | ||
reyn-is-chillin | 0 | 731,986,089 | 50% | ||
withdraw | 0 | 6,888,298,035,226 | 100% | ||
hivebeecon | 0 | 11,973,211,239 | 100% | ||
riseofthepixels | 0 | 12,620,958,537 | 100% | ||
thebeedevs | 0 | 58,049,554,937 | 100% | ||
mallory84 | 0 | 908,238,863 | 100% | ||
madilyn02 | 0 | 41,412,498,882 | 100% | ||
axobtc | 0 | 3,082,568,690 | 100% | ||
rociopmz | 0 | 2,519,584,704 | 100% | ||
cbrsphilanthropy | 0 | 76,332,040,830 | 100% | ||
buraimi | 0 | 4,319,910,487 | 10% | ||
samstreamer | 0 | 2,633,812,323 | 100% | ||
ligobregon | 0 | 637,558,547 | 100% | ||
pixels.vault | 0 | 561,242,501,463 | 100% | ||
rockingfinger | 0 | 1,049,061,410 | 100% | ||
hive-193566 | 0 | 26,967,084,244 | 100% | ||
ifhy | 0 | 522,554,771 | 2.5% | ||
itz.inno | 0 | 14,482,905,691 | 40% | ||
encuentro | 0 | 19,243,597,897 | 100% | ||
setpiece | 0 | 935,206,445 | 100% | ||
coltdelegation | 0 | 6,981,080,442 | 90% | ||
preshzinosongz | 0 | 0 | 100% | ||
daryh | 0 | 37,590,720,340 | 100% | ||
lolz.byte | 0 | 0 | 100% | ||
dandelion24 | 0 | 3,369,864,142 | 80% | ||
dreamtales | 0 | -22,374,080,068 | -100% | ||
tamiem | 0 | 4,407,546,707 | 30% | ||
patricma | 0 | 1,590,322,486 | 20% | ||
brayanmcy | 0 | 3,411,483,930 | 100% | ||
rostik924 | 0 | 16,590,337,664 | 18.9% | ||
mrnaranjo85 | 0 | 5,119,489,511 | 100% | ||
profwhitetower | 0 | 4,603,285,480 | 100% | ||
clipzz | 0 | 54,013,567 | 100% | ||
ineyashami | 0 | 4,195,846,780 | 100% | ||
glideglobe | 0 | 6,738,780,204 | 100% | ||
andres0908 | 0 | 3,021,101,855 | 100% | ||
omachi213 | 0 | 1,088,853,920 | 10% | ||
tazifit | 0 | 1,366,237,260 | 45% | ||
pamtech | 0 | -3,523,346,521 | -100% | ||
itsmemic | 0 | 0 | 100% | ||
arieswilly | 0 | 0 | 100% | ||
fromwhitetower | 0 | 8,442,685,036 | 100% | ||
sw-kleymer | 0 | 6,288,913,349 | 100% | ||
mama21 | 0 | 841,735,998 | 100% | ||
osiris11 | 0 | 9,144,987,433 | 100% | ||
calebmarvel01 | 0 | 907,069,338 | 19% | ||
tinamccabe | 0 | 1,903,923,861 | 72% | ||
trovepower | 0 | 873,675,784 | 21.5% | ||
mmbbot | 0 | 865,608,464 | 21.5% | ||
lunalunita | 0 | 1,678,836,230 | 100% | ||
onlyjob | 0 | 3,455,516,748 | 50% | ||
grailent.kerb | 0 | 1,208,740,064 | 100% | ||
joel17 | 0 | 0 | 100% | ||
junnyjun | 0 | 3,549,737,088 | 100% | ||
dotzee | 0 | 8,572,163,482 | 100% | ||
endhivewatchers | 0 | 0 | -0.01% | ||
loaymaher | 0 | 102,208,222 | 100% | ||
funkosmica | 0 | 2,793,299,236 | 100% | ||
sopel | 0 | 1,310,733,975,803 | 100% | ||
baby1 | 0 | 406,407,185 | 100% | ||
michael561 | 0 | 630,361,766 | 2.41% | ||
kenquin28 | 0 | 482,240,564 | 100% | ||
analyn21 | 0 | 0 | 100% | ||
hive-engne | 0 | 750,260,051 | 100% | ||
annie1994 | 0 | 0 | 100% | ||
theiam | 0 | 0 | 33% | ||
mxulxdxn | 0 | 0 | 100% | ||
yhanyx87 | 0 | 0 | 100% | ||
echo78 | 0 | 0 | 100% | ||
ravic | 0 | 0 | 100% | ||
daeze-winnie | 0 | 0 | 100% | ||
moneyswt | 0 | 0 | 100% | ||
sammmi | 0 | 0 | 100% | ||
gameonn | 0 | 0 | 100% |
Thanks for sharing an updates. And it's sound exciting.
author | annie1994 |
---|---|
permlink | spuavd |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2025-01-09 05:13:00 |
last_update | 2025-01-09 05:13:00 |
depth | 1 |
children | 0 |
last_payout | 2025-01-16 05:13:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 55 |
author_reputation | 1,943,246,733 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,843,857 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
linux-software | 0 | 0 | 100% |
can't wait ,and try it.
author | annie1994 |
---|---|
permlink | spvvpa |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2025-01-10 01:40:33 |
last_update | 2025-01-10 01:40:33 |
depth | 1 |
children | 0 |
last_payout | 2025-01-17 01:40: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 | 23 |
author_reputation | 1,943,246,733 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,868,098 |
net_rshares | 0 |
Wow, What a great news, can't wait to released.
author | annie1994 |
---|---|
permlink | spvvun |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2025-01-10 01:43:48 |
last_update | 2025-01-10 01:43:48 |
depth | 1 |
children | 0 |
last_payout | 2025-01-17 01:43:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 47 |
author_reputation | 1,943,246,733 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,868,127 |
net_rshares | 0 |
Thanks for the update!
author | awildovasquez |
---|---|
permlink | re-blocktrades-spsk2q |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.12.6","image":[],"users":[]} |
created | 2025-01-08 22:35:15 |
last_update | 2025-01-08 22:35:15 |
depth | 1 |
children | 0 |
last_payout | 2025-01-15 22:35:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 50,318,877,353,334 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,834,905 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
linux-software | 0 | 0 | 100% |
Wow releasing it this week is still good. I really appreciate the efforts you put to make things work. Please keep up the good efforts also with your good plans.
author | baby1 |
---|---|
permlink | spsjy2 |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2025-01-08 22:32:30 |
last_update | 2025-01-08 22:32:30 |
depth | 1 |
children | 0 |
last_payout | 2025-01-15 22:32: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 | 161 |
author_reputation | 3,231,884,739,998 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,834,818 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
linux-software | 0 | 0 | 100% |
for the love of god and for the decentralized nature of hive would you STOP voting on DHF proposals. Thank you
author | bitcoinflood |
---|---|
permlink | re-blocktrades-2025216t15752553z |
category | hive-139531 |
json_metadata | {"tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/4.0.3-vision","format":"markdown+html"} |
created | 2025-02-16 20:07:30 |
last_update | 2025-02-16 20:07:30 |
depth | 1 |
children | 0 |
last_payout | 2025-02-23 20:07: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 | 110 |
author_reputation | 1,645,024,977,979,240 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 140,834,973 |
net_rshares | 0 |
> ### Hey there, the Bilpcoin team just wanted to give you a virtual high-five we manually curated this post. <a href="https://imgflip.com/i/9ezd9g"><img src="https://i.imgflip.com/9ezd9g.jpg" title="made at imgflip.com"/></a><div><a href="https://imgflip.com/memegenerator">from Imgflip Meme Generator</a></div> [Their attempts to intimidate and silence their critics are equally concerning. The use of downvotes as a means of censorship is a clear indication of their desperation to maintain their grip on the narrative. But it's not working](https://hive.blog/hive-165962/@bpcvoter1/their-attempts-to-intimidate-and-silence-their-critics-are-equally-concerning-the-use-of-downvotes-as-a-means-of-censorship-is-a) https://hive.blog/hive-167922/@themarkymark/re-bpcvoter3-sp2q9h WE EXPOSED A SUPER FARM ON HIVE [Super farm https://peakd.com/@memesandstuff/wallet spam scam accounts](https://hive.blog/hive-167922/@bpcvoter3/super-farm-https-peakd-com-memesandstuff-wallet-spam-scam-accounts) WE EXPOSED A SUPER FARM ON HIVE [Super farm https://peakd.com/@memesandstuff/wallet spam scam accounts](https://hive.blog/hive-167922/@bpcvoter3/super-farm-https-peakd-com-memesandstuff-wallet-spam-scam-accounts) >**Earn BPC on all your posts!** Simply add #Bilpcoin or #BPC to your post, and you'll be eligible to earn BPC. Just don't forget to post your own content and avoid self-voting. !MEME !PGM !LOLZ [we are excited to announce our ambitious endeavor to create the largest curation trail on Hive and, by extension, the world LOL](https://hive.blog/hive-167922/@bpcvoter1/we-are-excited-to-announce-our-ambitious-endeavor-to-create-the-largest-curation-trail-on-hive-and-by-extension-the-world-lol) https://hive.blog/hive-140217/@themarkymark/re-bpcvoter1-sp87n1 [themarkymark (80)in LeoFinance 18 hours ago You are the abuse on Hive hive.blog/hive-167922/@themarkymark/re-bpcvoter3-smp740 LOL TRANSACTIONS DON'T LIE PEOPLE DO PEOPLE LIKE YOU DO Curation reward for BUILDAWHALE COMMENT FARM buildawhale51.108 HP](https://hive.blog/hive-167922/@bpcvoter3/themarkymark-80-in-leofinance-18-hours-ago-you-are-the-abuse-on-hive-hive-blog-hive-167922-themarkymark-re-bpcvoter3-smp740-lol) https://hive.blog/@kevm/comments https://hive.blog/@kcgm/comments [The Hive community has been plagued by a rise in spam accounts sharing stolen content. Many of these accounts appear to be linked to a single super farm that we've exposed @memesandstuff superfarm and we believe a prominent whale may be behind it](https://hive.blog/hive-167922/@bpcvoter1/the-hive-community-has-been-plagued-by-a-rise-in-spam-accounts-sharing-stolen-content-many-of-these-accounts-appear-to-be-linked) [A Call to Action Against Downvote Abuse on Hive](https://hive.blog/hive-167922/@bpcvoter2/a-call-to-action-against-downvote-abuse-on-hive) [Bad downvotes on Hive are a growing concern that must be addressed. These downvotes not only discourage users from sharing their real thoughts and ideas but also damage the community as a whole, we see many walk away](https://hive.blog/hive-167922/@bpcvoter1/bad-downvotes-on-hive-are-a-growing-concern-that-must-be-addressed-these-downvotes-not-only-discourage-users-from-sharing-their) https://peakd.com/@buildawhale/activities https://peakd.com/@themarkymark/activities https://peakd.com/@usainvote/activities https://peakd.com/@adm/activities
author | bpcvoter1 |
---|---|
permlink | sptntg |
category | hive-139531 |
json_metadata | {"tags":["bilpcoin","bpc"],"image":["https://i.imgflip.com/9ezd9g.jpg"],"links":["https://imgflip.com/i/9ezd9g"],"app":"hiveblog/0.1"} |
created | 2025-01-09 12:52:57 |
last_update | 2025-01-09 12:52:57 |
depth | 1 |
children | 0 |
last_payout | 2025-01-16 12:52: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 | 3,386 |
author_reputation | -19,565,271,358,241 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,850,757 |
net_rshares | -5,050,870,644 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -5,050,870,644 | -0.25% | ||
bilpcoinbot1 | 0 | 0 | 100% |
CAN YOU PLEASE UNDELEGATE FROM @BUILDAWHALE SCAM FARM Downvotes do nothing marky lady zaza #buildawhalescam #buildawhalefarm #themarkymarkfarm #themarkymarkscam https://youtu.be/pM6aQTrjC98?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke Push It Jacob mc franko https://youtu.be/vTcSG_w8c5s?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke Baby jacob https://youtu.be/yA_3ZrR-D74 Who's Really Sick the frankos https://youtu.be/g3buxzjuSXU Transparent Chains the frankos https://youtu.be/KR-DSZyGqrw?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke Get a life keni https://youtu.be/ZowTlXjIWpw?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke We Know keni https://youtu.be/FDMh7mos4oE?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke Word Travels Fast keni https://youtu.be/8SHoi8WFKKQ?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke Glass House Farm mc franko https://youtu.be/sR37PEXu9Co?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke Where You Really At mc franko https://youtu.be/6qC2-WhSBLk?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke Oh sad boy keni https://youtu.be/r1Yo-4fwjik?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke https://hive.blog/hive-133987/@bpcvoter1/unveiling-the-hive-blockchain-a-deep-dive-into-logic-s-transactions-and-activities https://hive.blog/hive-133987/@bpcvoter1/analyzing-the-outgoing-transactions-of-the-spaminator-account-a-deep-dive-into-hive-s-ecosystem https://hive.blog/hive-133987/@bpcvoter1/unveiling-the-mystery-behind-scamforest-s-hive-wallet-a-deep-dive-into-transactions-and-account-value https://hive.blog/hive-133987/@bpcvoter1/analyzing-the-outgoing-transactions-of-sagarkothari88-a-deep-dive-into-suspicious-activity https://hive.blog/hive-133987/@bpcvoter1/outgoing-transactions-of-steemcleaners-a-deep-dive-into-accountability-and-transparency-on-hive https://hive.blog/hive-167922/@bpcvoter1/comprehensive-breakdown-of-hive-transactions-arhag https://hive.blog/hive-126152/@bpcvoter1/comprehensive-analysis-of-freedom-s-wallet-transactions https://hive.blog/hive-133987/@bpcvoter1/deep-dive-into-solominer-s-transactions-a-professional-analysis https://hive.blog/hive-133987/@bpcvoter1/unmasking-the-marky-mark-buildawhale-scam-farm-a-deep-dive-into-systemic-exploitation-on-hive https://hive.blog/hive-126152/@bpcvoter1/transactions-don-t-lie-people-do-mc-franko-and-lady-zaza-buildawhalescam https://hive.blog/hive-167922/@bpcvoter1/analyzing-transactions-from-stefy-music-s-wallet https://hive.blog/hive-133987/@bpcvoter1/taking-a-closer-look-at-usainvote-s-curation-rewards-over-the-last-seven-days https://hive.blog/hive-167922/@bpcvoter1/analyzing-themarkymark-s-curation-rewards-over-the-last-seven-days https://hive.blog/hive-167922/@bpcvoter1/marky-s-game-mc-franko-aimusic-music-bilpcoin-newmusic-themarkymark-marky https://hive.blog/hive-133987/@bpcvoter2/unveiling-the-activities-of-gpwallet6-a-dive-into-hive-blockchain-transactions https://hive.blog/hive-133987/@bpcvoter2/comprehensive-analysis-of-gpwallet-s-transactions-on-the-hive-blockchain https://hive.blog/hive-133987/@bpcvoter2/a-deep-dive-into-azircon-wallet-out-going-transactions-transparency-and-insights https://hive.blog/hive-167922/@bpcvoter2/deep-dive-into-the-bdvoter-hive-account-wallet-analysis-transactions-and-insights https://hive.blog/hive-181290/@bpcvoter2/the-situation-is-amusing-especially-when-we-see-how-people-react-when-their-transactions-and-voice-chats-are-exposed-lol-marcus https://hive.blog/hive-126152/@bpcvoter2/it-s-rich-marky-that-you-re-talking-about-the-hive-value-plan-isn-t-it-lol-you-make-hive-a-more-valuable-platform-it-seems-like https://hive.blog/hive-167922/@bpcvoter2/update-on-buildawhale-scam-farm-the-ipromote-account-is-raising-concerns-with-suspicious-transactions-that-don-t-look-good https://hive.blog/hive-133987/@bpcvoter3/analyzing-hivewatchers-transactions-a-dive-into-hive-s-controversial-account https://hive.blog/hive-180505/@bpcvoter3/taking-a-closer-look-at-the-gpwallet3-account-exposing-the-truth-behind-hive-transactions https://hive.blog/hive-173737/@bpcvoter3/exposing-the-truth-a-comprehensive-analysis-of-gpwallet2-s-transactions-on-hive https://hive.blog/hive-167922/@bpcvoter3/time-for-transparency-an-in-depth-look-at-bdvoter-s-activities https://hive.blog/hive-167922/@bpcvoter3/adm-downvote-data-and-curation-reward-data https://hive.blog/hive-167922/@bpcvoter3/buildawhale-downvotes https://hive.blog/hive-167922/@bpcvoter3/you-can-deceive-yourself-all-you-want-but-it-won-t-alter-the-reality-we-ve-uncovered-the-truth-and-will-continue-to-expose-your https://hive.blog/hive-133987/@bilpcoinbpc/comprehensive-analysis-of-punkteam-s-wallet-transactions https://hive.blog/hive-167922/@bilpcoinbpc/you-re-wasting-your-life-marcus-and-it-s-only-going-to-come-back-to-haunt-you-you-re-bringing-shame-and-ridicule-upon-yourself https://hive.blog/hive-167922/@bilpcoinbpc/exploring-the-possibilities-of-ai-art-with-bilpcoin-nfts-episode-100-buildawhale-scam-farm-on-hive TRANSACTIONS DON'T LIE PEOPLE DO Mc franko & Lady zaza #buildawhalescam https://youtu.be/RXJ1KaRojSc?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke Marky’s Game Mc franko https://youtu.be/wlmBndOt1_w?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke AI Lady Zaza We can't help but notice https://youtu.be/LVt-39a-_c4?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke https://hive.blog/hive-126152/@bpcvoter3/unveiling-the-truth-a-deep-dive-into-hiveauctions-transactions https://hive.blog/hive-133987/@bilpcoinbpc/comprehensive-analysis-of-punkteam-s-wallet-transactions
author | bpcvoter1 |
---|---|
permlink | ss3asa |
category | hive-139531 |
json_metadata | {"tags":["buildawhalescam","buildawhalefarm","themarkymarkfarm","themarkymarkscam"],"users":["buildawhale"],"image":["https://img.youtube.com/vi/pM6aQTrjC98/0.jpg"],"links":["https://youtu.be/pM6aQTrjC98?list=PLbH29p-63eW-QmI6yohDKpj_qtrSpJGke\n<p>Push"],"app":"hiveblog/0.1"} |
created | 2025-02-22 14:53:51 |
last_update | 2025-02-22 14:53:51 |
depth | 1 |
children | 1 |
last_payout | 2025-03-01 14:53: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 | 5,513 |
author_reputation | -19,565,271,358,241 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 140,972,985 |
net_rshares | 0 |
<p>Hi @bpcvoter1. The sad kitty has made this undelegate link or you:<br><strong><a href="https://hivesigner.com/sign/delegateVestingShares?account=bpcvoter1&delegatee=buildawhale&vesting_shares=0.000000%20VESTS">hivesigner undelegate link.</a></strong>.</p><br><center>http://sadcatdiary.com/wp-content/uploads/2015/07/sadcatsmall.jpg</center>
author | tipu |
---|---|
permlink | re-ss3asa-20250222t145356z |
category | hive-139531 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2025-02-22 14:53:57 |
last_update | 2025-02-22 14:53:57 |
depth | 2 |
children | 0 |
last_payout | 2025-03-01 14:53: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 | 344 |
author_reputation | 55,935,285,319,710 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 140,972,989 |
net_rshares | 0 |
This is great news! It's exciting to hear that the HAF API node software is finally being released. I'm sure this will be a huge benefit to the Hive community.I'm particularly interested in the improvements made to the HAF upgrade process. This will make it much easier for node operators to stay up-to-date with the latest software.I'm also impressed with the work that has been done on Hivemind. The optimizations you've made will make it a much more efficient and reliable social media platform.I'm looking forward to seeing how the new Lite Accounts API will work. I think this will be a great way to make Hive more accessible to new users. Thanks for sharing this update. I'm sure it will be of interest to many in the Hive community.
author | cheryl291021 |
---|---|
permlink | re-blocktrades-spskdj |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.12.6","image":[],"users":[]} |
created | 2025-01-08 22:41:45 |
last_update | 2025-01-08 22:41:45 |
depth | 1 |
children | 7 |
last_payout | 2025-01-15 22:41: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 | 741 |
author_reputation | -4,332,807,445,334 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,835,074 |
net_rshares | -2,753,193,125,891 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
blocktrades | 0 | -2,964,762,567,106 | -1% | ||
freebornsociety | 0 | -1,260,882,320 | -2.35% | ||
guruvaj | 0 | 212,830,323,535 | 100% |
Ang isa sa mga wish ko sa Pinoy Hive community ay magkaroon ng Pinoy Hive witness with baremetal implementation(at hindi vps) na located sa dito sa Pinas. Na susuporta sa lahat ng mga Pilipino Hive users at magpapadticipate sa mga local Hive events and onboarding. I am more willing to reduce my witness votes to many and focus on the “Pinoy Hive Witness”!
author | guruvaj |
---|---|
permlink | re-cheryl291021-202519t72643309z |
category | hive-139531 |
json_metadata | {"type":"comment","tags":["hive-139531"],"app":"ecency/3.2.0-mobile","format":"markdown+html"} |
created | 2025-01-08 23:26:42 |
last_update | 2025-01-08 23:26:42 |
depth | 2 |
children | 6 |
last_payout | 2025-01-15 23:26:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 359 |
author_reputation | 52,852,553,740,594 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,836,507 |
net_rshares | -5,042,952,078 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -5,042,952,078 | -0.25% |
@guruvaj, that is a terrific initiative! A dedicated Pinoy Hive witness with bare-metal implementation in the Philippines would be an important contribution to the community. Supporting Filipino Hive users and participating in local events is critical for growth and engagement. Your willingness to direct your witness votes toward this initiative displays a strong commitment to the local Hive community. I wish you the best of success in getting this done!
author | cheryl291021 |
---|---|
permlink | re-guruvaj-spsmrw |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.12.6"} |
created | 2025-01-08 23:33:33 |
last_update | 2025-01-08 23:33:33 |
depth | 3 |
children | 5 |
last_payout | 2025-01-15 23:33: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 | 458 |
author_reputation | -4,332,807,445,334 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,836,726 |
net_rshares | -47,982,305,066 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abh12345 | 0 | -9,787,204,899 | -3% | ||
galenkp | 0 | -239,630,320,656 | -3% | ||
guruvaj | 0 | 204,911,986,952 | 100% | ||
whangster79 | 0 | -1,057,330,533 | -3% | ||
gollumkp | 0 | -2,419,435,930 | -20% |
@blocktrades Sounds good! I'll definitely be sure to check out the rc16 testing server and run some final tests before the switchover. I'm excited to see the performance metrics for the new release. I'm sure it will be a significant improvement.
author | cheryl291021 |
---|---|
permlink | re-blocktrades-spsm7y |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.12.6","image":[],"users":["blocktrades"]} |
created | 2025-01-08 23:21:36 |
last_update | 2025-01-08 23:21:36 |
depth | 1 |
children | 2 |
last_payout | 2025-01-15 23:21: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 | 246 |
author_reputation | -4,332,807,445,334 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,836,354 |
net_rshares | 0 |
How would we even be able to release the software, without your rigorous testing?
author | blocktrades |
---|---|
permlink | spssx4 |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2025-01-09 01:46:18 |
last_update | 2025-01-09 01:46:18 |
depth | 2 |
children | 1 |
last_payout | 2025-01-16 01:46: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 | 81 |
author_reputation | 1,285,459,763,765,806 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,839,209 |
net_rshares | 0 |
That's a great question! Our rigorous testing is what allows us to confidently release high-quality software that meets our users' needs and expectations. It's an investment in the reliability and stability of product.
author | cheryl291021 |
---|---|
permlink | re-blocktrades-spsurc |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.12.6"} |
created | 2025-01-09 02:26:00 |
last_update | 2025-01-09 02:26:00 |
depth | 3 |
children | 0 |
last_payout | 2025-01-16 02:26: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 | 219 |
author_reputation | -4,332,807,445,334 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,840,362 |
net_rshares | 0 |
Thank you for all you do🙏
author | daeze-winnie |
---|---|
permlink | re-blocktrades-srgknt |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.1.3","image":[],"users":[]} |
created | 2025-02-10 08:23:54 |
last_update | 2025-02-10 08:23:54 |
depth | 1 |
children | 0 |
last_payout | 2025-02-17 08:23: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 | 25 |
author_reputation | 15,445,136,341,307 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 140,686,157 |
net_rshares | 0 |
I’m not sure if there is a better way to get in contact with you. Just wanted to know if maybe you could give clarification as to why this: https://peakd.com/discussion/@daltono/breaking-the-blacklist-my-journey-back-to-earning-on-hive-cgr is happening for me and many others due to your delegation. I can’t get any answers.
author | daltono |
---|---|
permlink | re-blocktrades-ss1kbs |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-02-21 16:26:15 |
last_update | 2025-02-21 16:26:15 |
depth | 1 |
children | 0 |
last_payout | 2025-02-28 16:26:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 324 |
author_reputation | 1,792,030,495,152,214 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 140,952,012 |
net_rshares | 0 |
!PIZZA
author | danzocal |
---|---|
permlink | re-blocktrades-spve1m |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.12.6","image":[],"users":[]} |
created | 2025-01-10 11:17:48 |
last_update | 2025-01-10 11:17:48 |
depth | 1 |
children | 0 |
last_payout | 2025-01-17 11:17:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6 |
author_reputation | 12,432,803,008,396 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,876,021 |
net_rshares | 0 |
Que bueno que la tecnología esté avanzado para el beneficio de hive
author | encuentro |
---|---|
permlink | re-blocktrades-202518t212416842z |
category | hive-139531 |
json_metadata | {"tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/4.0.2-vision","format":"markdown+html"} |
created | 2025-01-09 01:23:09 |
last_update | 2025-01-09 01:23:09 |
depth | 1 |
children | 0 |
last_payout | 2025-01-16 01:23: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 | 67 |
author_reputation | 73,249,322,537,880 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,838,826 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
linux-software | 0 | 0 | 100% |
Thanks for keeping us updated and all the work on here. 💪🏻⚡
author | fonestreet |
---|---|
permlink | re-blocktrades-202518t20374051z |
category | hive-139531 |
json_metadata | {"tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/3.2.0-vision","format":"markdown+html"} |
created | 2025-01-09 00:37:42 |
last_update | 2025-01-09 00:37:42 |
depth | 1 |
children | 0 |
last_payout | 2025-01-16 00:37:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 59 |
author_reputation | 162,749,262,456,557 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,838,034 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
linux-software | 0 | 0 | 100% |
No wonder api.hive.blog is the best server on ecency app, i always dont run into connevtion problems using this server now i see why, you guys are doing a massive work i appreciate the effort
author | fredaig |
---|---|
permlink | re-blocktrades-2025129t34114957z |
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-01-29 02:41:15 |
last_update | 2025-01-29 02:41:15 |
depth | 1 |
children | 0 |
last_payout | 2025-02-05 02:41:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 193 |
author_reputation | 79,537,003,160,146 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 140,383,937 |
net_rshares | 0 |
So excited to read the news! Awesome way to kick off the new year after a loss in family on the 1st of January. At least my 2nd family (the chain) is doing better!
author | gabrielatravels |
---|---|
permlink | re-blocktrades-spt9gt |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.12.6","image":[],"users":[]} |
created | 2025-01-09 07:43:39 |
last_update | 2025-01-09 07:43:39 |
depth | 1 |
children | 0 |
last_payout | 2025-01-16 07:43: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 | 164 |
author_reputation | 979,109,411,800,892 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,845,840 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
linux-software | 0 | 0 | 100% |
!LUV
author | hive-engne |
---|---|
permlink | spu9m2 |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2025-01-09 20:44:27 |
last_update | 2025-01-09 20:44:27 |
depth | 1 |
children | 1 |
last_payout | 2025-01-16 20:44:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4 |
author_reputation | 356,698,266 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,862,779 |
net_rshares | 1,091,962,701 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gasak | 0 | 1,091,962,701 | 100% |
@blocktrades, @hive-engne<sub>(1/1)</sub> sent you LUV. | <a href="https://crrdlx.on.fleek.co/" style="text-decoration:none">tools</a> | <a href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community </a> | <a href="https://hivewiki.netlify.app" style="text-decoration:none">HiveWiki</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a> <center>Made with <a href="https://peakd.com/@luvshares" target="_blank">LUV</a> by <a href="https://hive.blog/@crrdlx" target="_blank">crrdlx</a></center>
author | luvshares |
---|---|
permlink | re-spu9m2-20250109t204433z |
category | hive-139531 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2025-01-09 20:44:33 |
last_update | 2025-01-09 20:44:33 |
depth | 2 |
children | 0 |
last_payout | 2025-01-16 20:44: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 | 615 |
author_reputation | 5,651,102,754,153 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,862,782 |
net_rshares | 0 |
Hi,@blocktrades I used to post on steemit but steemit people and @the-gorilla downvoted my account on steemit I am start using hive.blog for sharing content please support. I want to teach a lesson to the Stemate account that has made me downvote that any of you help me please
author | hive.posh | ||||||
---|---|---|---|---|---|---|---|
permlink | stbbut | ||||||
category | hive-139531 | ||||||
json_metadata | {"users":["blocktrades","the-gorilla"],"app":"hiveblog/0.1"} | ||||||
created | 2025-03-18 09:33:03 | ||||||
last_update | 2025-03-18 09:33:03 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2025-03-25 09:33: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 | 277 | ||||||
author_reputation | 15,799,081 | ||||||
root_title | "1st update of 2025: Releasing API node software this week" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 141,507,808 | ||||||
net_rshares | 0 |
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/60x70/https://hivebuzz.me/@blocktrades/upvoted.png?202501090405"></td><td>You received more than 170000 upvotes.<br>Your next target is to reach 180000 upvotes.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@blocktrades) and compare yourself to others in 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> **Check out our last posts:** <table><tr><td><a href="/challenge/@hivebuzz/yearly-author-202501"><img src="https://images.hive.blog/64x128/https://i.imgur.com/ogVqE0F.png"></a></td><td><a href="/challenge/@hivebuzz/yearly-author-202501">The 2024 Yearly Author Challenge is Over - Congrats to the Winners</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pum-202412-delegations"><img src="https://images.hive.blog/64x128/https://i.imgur.com/fg8QnBc.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202412-delegations">Our Hive Power Delegations to the December PUM Winners</a></td></tr></table>
author | hivebuzz |
---|---|
permlink | notify-1736395666 |
category | hive-139531 |
json_metadata | {"image":["https://hivebuzz.me/notify.t6.png"]} |
created | 2025-01-09 04:07:45 |
last_update | 2025-01-09 04:07:45 |
depth | 1 |
children | 0 |
last_payout | 2025-01-16 04:07: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 | 1,244 |
author_reputation | 369,402,886,756,714 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,842,432 |
net_rshares | 0 |
Congratulations @blocktrades! Your post has been a top performer on the Hive blockchain and you have been rewarded with this rare badge <table><tr><td><img src="https://images.hive.blog/60x60/https://hivebuzz.me/badges/toppayoutweek.png"></td><td>Post with the highest payout of the week.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@blocktrades) and compare yourself to others in 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>
author | hivebuzz |
---|---|
permlink | notify-1736731502 |
category | hive-139531 |
json_metadata | {"image":["https://hivebuzz.me/notify.t6.png"]} |
created | 2025-01-13 01:25:03 |
last_update | 2025-01-13 01:25:03 |
depth | 1 |
children | 0 |
last_payout | 2025-01-20 01:25: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 | 580 |
author_reputation | 369,402,886,756,714 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,954,561 |
net_rshares | 0 |
You did a huge work! Thank you for all you do! !PIZZA
author | irisworld |
---|---|
permlink | re-blocktrades-202519t123414120z |
category | hive-139531 |
json_metadata | {"tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/4.0.2-vision","format":"markdown+html"} |
created | 2025-01-09 03:34:15 |
last_update | 2025-01-09 03:34:15 |
depth | 1 |
children | 0 |
last_payout | 2025-01-16 03:34:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 54 |
author_reputation | 143,401,779,069,093 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,841,840 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
linux-software | 0 | 0 | 100% |
Wow.. this is great, honestly you guys are really trying a lot, May God continue to bless you guys
author | kennymiracle |
---|---|
permlink | re-blocktrades-202519t02620443z |
category | hive-139531 |
json_metadata | {"type":"comment","tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/3.2.0-mobile","format":"markdown+html"} |
created | 2025-01-08 23:26:21 |
last_update | 2025-01-08 23:26:21 |
depth | 1 |
children | 0 |
last_payout | 2025-01-15 23:26: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 | 101 |
author_reputation | 8,967,298,810,048 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,836,496 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
linux-software | 0 | 0 | 100% |
There's a lot to read and need to sit down on this.
author | luthis26 |
---|---|
permlink | spv296 |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2025-01-10 07:03:06 |
last_update | 2025-01-10 07:03:06 |
depth | 1 |
children | 0 |
last_payout | 2025-01-17 07:03: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 | 52 |
author_reputation | 10,332,227,774,672 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,872,506 |
net_rshares | 0 |
This is nice, Thank you so much for the update I really appreciate it keeping this blockchain safe and secure. I hope someone from us (Filipino) could be a witness.
author | luthis26 |
---|---|
permlink | sq0c6b |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2025-01-13 03:25:24 |
last_update | 2025-01-13 03:26:03 |
depth | 1 |
children | 0 |
last_payout | 2025-01-20 03:25: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 | 164 |
author_reputation | 10,332,227,774,672 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,957,073 |
net_rshares | 0 |
Great Work @blocktrades
author | offgridlife |
---|---|
permlink | spt4lt |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1","users":["blocktrades"]} |
created | 2025-01-09 05:58:42 |
last_update | 2025-01-09 18:55:54 |
depth | 1 |
children | 2 |
last_payout | 2025-01-16 05:58:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 400,515,465,915,486 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 139,844,425 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
linux-software | 0 | 0 | 100% |
7 years of shitposting? wow
author | unschool |
---|---|
permlink | re-offgridlife-spu3w6 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.12.6"} |
created | 2025-01-09 18:40:54 |
last_update | 2025-01-09 18:40:54 |
depth | 2 |
children | 0 |
last_payout | 2025-01-16 18:40: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 | 27 |
author_reputation | 4,678,293,536,110 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,859,806 |
net_rshares | -9,541,226,902 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
offgridlife | 0 | -9,541,226,902 | -100% |
Pathetic 
author | unschool |
---|---|
permlink | re-offgridlife-spukx7 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.12.6"} |
created | 2025-01-10 00:48:42 |
last_update | 2025-01-10 00:48:42 |
depth | 2 |
children | 0 |
last_payout | 2025-01-17 00:48:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 152 |
author_reputation | 4,678,293,536,110 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,867,380 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
linux-software | 0 | 0 | 100% |
Insightfully inclined. Thumbs up
author | ohv |
---|---|
permlink | re-blocktrades-spw543 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.1.2","image":[],"users":[]} |
created | 2025-01-10 21:02:36 |
last_update | 2025-01-10 21:02:36 |
depth | 1 |
children | 0 |
last_payout | 2025-01-17 21:02: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 | 32 |
author_reputation | 1,022,682,266,956 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,893,036 |
net_rshares | 0 |
Can't wait for the software to be released 😁
author | omachi213 |
---|---|
permlink | re-blocktrades-202518t23194242z |
category | hive-139531 |
json_metadata | {"type":"comment","tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/3.2.0-mobile","format":"markdown+html"} |
created | 2025-01-08 22:19:06 |
last_update | 2025-01-08 22:19:06 |
depth | 1 |
children | 0 |
last_payout | 2025-01-15 22:19: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 | 44 |
author_reputation | 43,923,529,122,320 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,834,435 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
linux-software | 0 | 0 | 100% |
<center>PIZZA! $PIZZA slices delivered: irisworld tipped blocktrades @danzocal<sub>(1/10)</sub> tipped @blocktrades </center>
author | pizzabot |
---|---|
permlink | re-1st-update-of-2025-releasing-api-node-software-this-week-20250109t033437z |
category | hive-139531 |
json_metadata | "{"app": "pizzabot"}" |
created | 2025-01-09 03:34:36 |
last_update | 2025-01-10 11:18:12 |
depth | 1 |
children | 0 |
last_payout | 2025-01-16 03:34: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 | 131 |
author_reputation | 7,594,525,962,555 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,841,844 |
net_rshares | 0 |
Is there any way for Hive to start counting all the people who click on a post, but never upvote or comment... I never know for sure if anyone is reading or paying a visit...
author | pocketechange |
---|---|
permlink | stybhc |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2025-03-30 19:29:36 |
last_update | 2025-03-30 19:29:36 |
depth | 1 |
children | 2 |
last_payout | 2025-04-06 19:29:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.014 HBD |
curator_payout_value | 0.014 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 175 |
author_reputation | 234,056,297,860,993 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,783,305 |
net_rshares | 94,525,960,796 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pocketechange | 0 | 94,525,960,796 | 100% |
There's not any way to know that right now, because viewing a post is purely a local action taken on each user's computer, and it isn't recorded in the blockchain. Theoretically, each app could measure it individually and the resulting data could be aggregated, but it would require cooperation of all the various apps that allow you to read hive posts. You would probably also want to discard "multiple" hits by the same account, which further complicates the task.
author | blocktrades |
---|---|
permlink | re-pocketechange-1743622468009 |
category | hive-139531 |
json_metadata | {"format":"markdown+html","app":"@hiveio/wax/1.27.6-rc7-stable.250314151849"} |
created | 2025-04-02 19:34:30 |
last_update | 2025-04-02 19:34:30 |
depth | 2 |
children | 1 |
last_payout | 2025-04-09 19:34: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 | 466 |
author_reputation | 1,285,459,763,765,806 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,850,735 |
net_rshares | 0 |
Thanks for your help...
author | pocketechange |
---|---|
permlink | su4ybr |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2025-04-03 09:28:39 |
last_update | 2025-04-03 09:28:39 |
depth | 3 |
children | 0 |
last_payout | 2025-04-10 09:28:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | 234,056,297,860,993 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,861,289 |
net_rshares | 0 |
Sweet! With this full release I can finally have a look at wrangling it to run on my set up. I'd need to get it to not complain about anything ZFS related as I'd prefer to just run it on a single VM on my machine and having multiple layers of raid and zfs probably won't help performance all that much. Hopefully won't be too difficult.
author | shmoogleosukami |
---|---|
permlink | re-blocktrades-spsr3k |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.12.6","image":[],"users":[]} |
created | 2025-01-09 01:06:57 |
last_update | 2025-01-09 01:06:57 |
depth | 1 |
children | 4 |
last_payout | 2025-01-16 01:06:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.021 HBD |
curator_payout_value | 0.021 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 337 |
author_reputation | 226,923,617,224,978 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,838,603 |
net_rshares | 70,971,261,249 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
forykw | 0 | 70,971,261,249 | 10% | ||
bpcvoter4 | 0 | 0 | 100% | ||
linux-software | 0 | 0 | 100% |
Normally we recommend it be run on a bare metal system, if possible, since everything is encapsulated in a docker. But IIRC you're using promox, and it should not be a problem to run everything in a VM anyways.
author | blocktrades |
---|---|
permlink | spst13 |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2025-01-09 01:48:39 |
last_update | 2025-01-09 01:48:39 |
depth | 2 |
children | 3 |
last_payout | 2025-01-16 01:48:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.021 HBD |
curator_payout_value | 0.022 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 210 |
author_reputation | 1,285,459,763,765,806 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,839,290 |
net_rshares | 71,432,611,918 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
shmoogleosukami | 0 | 71,432,611,918 | 10% | ||
linux-software | 0 | 0 | 100% |
Yes, bare metal is ideal, but a Proxmox VM should be perfectly fine. Thanks for clarifying!
author | cheryl291021 |
---|---|
permlink | re-blocktrades-spsux1 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.12.6"} |
created | 2025-01-09 02:29:27 |
last_update | 2025-01-09 02:29:27 |
depth | 3 |
children | 0 |
last_payout | 2025-01-16 02:29:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 93 |
author_reputation | -4,332,807,445,334 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,840,424 |
net_rshares | -272,898,047,497,130 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
blocktrades | 0 | -272,892,522,820,337 | -100% | ||
freebornsociety | 0 | -1,263,428,756 | -2.35% | ||
mocha15 | 0 | -3,136,052,346 | -50% | ||
tillmea | 0 | -1,125,195,691 | -100% |
Your crypto exchange blocktrades.us is currently not working. Will it be working again after this project of yours is completed?
author | mythcrusher |
---|---|
permlink | re-blocktrades-srk2c0 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.2.1"} |
created | 2025-02-12 05:38:27 |
last_update | 2025-02-12 05:38:27 |
depth | 3 |
children | 1 |
last_payout | 2025-02-19 05:38:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 128 |
author_reputation | 1,693,777,377,065 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 140,733,740 |
net_rshares | 0 |
Do you plan to release HVM in 2025 to enable L1 Smart Contracts for HIVE? If not, why can’t we hire skilled developers for this task and allocate payment via DHF for them?
author | theguruasia |
---|---|
permlink | re-blocktrades-spupdw |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.12.6","image":[],"users":[]} |
created | 2025-01-10 02:25:12 |
last_update | 2025-01-10 02:25:12 |
depth | 1 |
children | 4 |
last_payout | 2025-01-17 02:25: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 | 171 |
author_reputation | 72,573,039,033,926 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,868,560 |
net_rshares | 0 |
We're working on L2 smart contracts, not L1 contracts, because I think L1 smart contracts offer a lot of risk and relatively little reward compared to L2 smart contracts. L2 contracts also offer more potential for scaling.
author | blocktrades |
---|---|
permlink | spushs |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2025-01-10 03:32:27 |
last_update | 2025-01-10 03:32:27 |
depth | 2 |
children | 3 |
last_payout | 2025-01-17 03:32:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 222 |
author_reputation | 1,285,459,763,765,806 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,869,467 |
net_rshares | 3,749,811,465 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
theguruasia | 0 | 3,749,811,465 | 100% |
Agree, but it's mostly centralized. How we fix that problem? I think this is the most important point when people invest on L2 tokens. Am I correct?
author | theguruasia |
---|---|
permlink | re-blocktrades-spuu3y |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.12.6","image":[],"users":[]} |
created | 2025-01-10 04:07:12 |
last_update | 2025-01-10 04:07:12 |
depth | 3 |
children | 2 |
last_payout | 2025-01-17 04:07: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 | 148 |
author_reputation | 72,573,039,033,926 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,869,906 |
net_rshares | 0 |
# ♦️ You got 0.01 [FELT](https://peakd.com/hive/@theiam/introducing-felt-sentiment-token-spbhj9) for sharing high vibes on Hive. [📋♦️ FELT Info](https://peakd.com/hive/@theiam/introducing-felt-sentiment-token-spbhj9)
author | theiam |
---|---|
permlink | re-1st-update-of-2025-releasing-api-node-software-this-week-20250406t021304z |
category | hive-139531 |
json_metadata | "{"app": "beem/0.24.19"}" |
created | 2025-04-06 02:13:03 |
last_update | 2025-04-06 02:13:03 |
depth | 1 |
children | 0 |
last_payout | 2025-04-13 02:13: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 | 219 |
author_reputation | -43,402,943,638 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,920,633 |
net_rshares | 0 |
Thanks for the update
author | ubglo17 |
---|---|
permlink | re-blocktrades-2025130t195355923z |
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-01-30 18:53:57 |
last_update | 2025-01-30 18:53:57 |
depth | 1 |
children | 0 |
last_payout | 2025-02-06 18:53: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 | 22 |
author_reputation | 3,690,115,911,351 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 140,430,272 |
net_rshares | 0 |
Good job on the release! Might be acting stupid but I put 10000 as page-size for the `Block-numbers` API and got a 504. Might be wise to limit page-size on the backend to 1000 or give an error straight away if over that? My 2 cents.
author | unschool |
---|---|
permlink | re-blocktrades-spu445 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.12.6","image":[],"users":[]} |
created | 2025-01-09 18:45:39 |
last_update | 2025-01-09 18:45:39 |
depth | 1 |
children | 2 |
last_payout | 2025-01-16 18:45: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 | 234 |
author_reputation | 4,678,293,536,110 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,859,887 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
linux-software | 0 | 0 | 100% |
Thanks for the report! Please create an issue for it on gitlab if you haven't already. I suppose at some point we should review all the new API calls for potential attack vectors like this one, that might result in database slowdowns. But everything takes time: we just finally got around to reviewing the old API calls in hivemind for such problems as part of this release (and there we were just handling "accidental" over usage of the API calls). Fortunately, for the most part no one bothers with such attacks intentionally, and when they do, its something we can fix relatively fast, so there's not much chance for a serious problem.
author | blocktrades |
---|---|
permlink | spu5b2 |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2025-01-09 19:11:30 |
last_update | 2025-01-09 19:11:30 |
depth | 2 |
children | 1 |
last_payout | 2025-01-16 19:11: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 | 641 |
author_reputation | 1,285,459,763,765,806 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,860,462 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
linux-software | 0 | 0 | 100% |
Just did https://gitlab.syncad.com/hive/haf/-/issues/268
author | unschool |
---|---|
permlink | re-blocktrades-spudhj |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.12.6"} |
created | 2025-01-09 22:08:06 |
last_update | 2025-01-09 22:08:06 |
depth | 3 |
children | 0 |
last_payout | 2025-01-16 22:08:06 |
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 | 56 |
author_reputation | 4,678,293,536,110 |
root_title | "1st update of 2025: Releasing API node software this week" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,864,263 |
net_rshares | 35,405,548,300 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
forykw | 0 | 35,405,548,300 | 5% |