 Here’s a quick update on what the BlockTrades team has been working on since my last report. My plan is to stick with the previously announced time of mid-December for upgrading all the Hive API nodes, but I decided it was best we delay hardfork 28 to first quarter of 2025. This means only API node operators will need to upgrade in December, and exchanges can upgrade later. I think separating this into two releases should reduce the pressure on everyone, since there’s more likely to be issues with the API node and non-hardfork hived changes (just because there are so many changes and the changes need to be tested against all the Hive apps out there), compared to the actual hardfork changes (relatively few at the moment). This should also reduce the chance for potential issues when exchanges finally upgrade, since most of the hived changes will have been tested in production for a while by then. ## [Hived: blockchain node software](https://gitlab.syncad.com/hive/hive) As part of the release of the HAF API node software suite, we’ll be releasing a new version of hived (which will be followed by a later release with the final “feature set” for hardfork 28). As a tentative date, we’ll be setting the hardfork date to February 8, 2025, but that may be overly optimistic. ### Recent improvements * We optimized the time to split a monolithic block_log into 1M block size files from 38 minutes down to 13 minutes: https://gitlab.syncad.com/hive/hive/-/merge_requests/1406 * Fixed value in database_api::api_account_object::post_voting_power to correctly show voting manabar values at client side. ### In progress * Continuing analysis of hived under transaction flooding conditions with large blocks (e.g 1-2MB blocks). * Beginning rewrite of transaction signing algorithms (e.g. to allow more signatures, etc). This work will also affect how we manage 2nd layer lite accounts. ## [HAF: framework for creating new Hive APIs and apps](https://gitlab.syncad.com/hive/haf) ### Recent improvements * Eliminated unnecessary ANALYZE calls to speedup HAF instance restart time: https://gitlab.syncad.com/hive/haf/-/merge_requests/547 * Upgrade to Postgres 17 and eliminated associated performance regressions: https://gitlab.syncad.com/hive/haf/-/merge_requests/550 * Eliminated problems in HAF instance upgrades: https://gitlab.syncad.com/hive/haf/-/merge_requests/533 * Fixed bug preventing using --skip-hived option in HAF container: https://gitlab.syncad.com/hive/haf/-/merge_requests/544 * Added automatic performance logging for HAF app block-processing times and keep the performance history in a table to simplify long-term performance analysis: https://gitlab.syncad.com/hive/haf/-/merge_requests/553 * Fixed a bug in updating last_active_time in apps with multiple contexts: https://gitlab.syncad.com/hive/haf/-/merge_requests/558 * Added a generic health-check that can be used by any HAF app’s block processor (i.e. the process that syncs the app’s local tables): https://gitlab.syncad.com/hive/haf/-/merge_requests/551 ### In progress * Adding API methods to allow a HAF app to request and wait on the creation of indexes on HAF’s own tables in a way that optimizes index creation time and avoids deadlocks. ## [Hivemind: social media API](https://gitlab.syncad.com/hive/hivemind) We completed the switch to postgREST, including final optimizations I promised in my last post to fix the few performance regressions that we found. Every hivemind API call is much faster than before now. Here’s the latest API benchmarks: Reference python times: | Endpoint | Max [ms] | Min [ms] | Average [ms] | Median [ms] | |-------------------------------------------|----------|----------|--------------|-------------| | condenser_api.get_discussions_by_blog | 6703 | 166 | 2305 | 2396 | | bridge.get_account_posts | 3344 | 26 | 864 | 825 | | bridge.get_discussion | 22713 | 3 | 1935 | 215 | | bridge.get_ranked_posts | 3409 | 205 | 971 | 955 | | condenser_api.get_discussions_by_comments | 2676 | 4 | 587 | 574 | | condenser_api.get_followers | 136 | 20 | 38 | 31 | | condenser_api.get_discussions_by_created | 2899 | 85 | 638 | 308 | | bridge.get_profile | 611 | 328 | 417 | 395 | | condenser_api.get_discussions_by_feed | 3146 | 1272 | 1748 | 1694 | | condenser_api.get_blog | 4617 | 1198 | 3256 | 3496 | | condenser_api.get_following | 349 | 177 | 270 | 267 | ------------------------------------------------------------------------------------------------ PostgREST: | Endpoint | Max [ms] | Min [ms] | Average [ms] | Median [ms] | |-------------------------------------------|----------|----------|--------------|-------------| | condenser_api.get_discussions_by_blog | 2383 | 46 | 603 | 643 | | bridge.get_account_posts | 4099 | 9 | 218 | 188 | | bridge.get_discussion | 3266 | 1 | 327 | 44 | | bridge.get_ranked_posts | 449 | 58 | 228 | 226 | | condenser_api.get_discussions_by_comments | 268 | 1 | 94 | 107 | | condenser_api.get_followers | 86 | 10 | 15 | 14 | | condenser_api.get_discussions_by_created | 745 | 32 | 201 | 130 | | bridge.get_profile | 485 | 320 | 388 | 379 | | condenser_api.get_discussions_by_feed | 594 | 402 | 495 | 497 | | condenser_api.get_blog | 1533 | 312 | 861 | 897 | | condenser_api.get_following | 219 | 189 | 204 | 204 | ### In progress * Various optimizations * Switch to pure SQL resulted in some changes when an error occurs for an API call, so we’re analyzing if we can make them fully compatible with old error messages. ## [HAfAH: account history API](https://gitlab.syncad.com/hive/HAfAH) Fixed bug in account_history_api::get_transaction returning broken JSON when transaction has no signatures: 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) * Locally create docker image for postgREST url rewriter: https://gitlab.syncad.com/hive/balance_tracker/-/merge_requests/119 * Reduce unnecessary logging by rewriter by default: https://gitlab.syncad.com/hive/balance_tracker/-/merge_requests/123 * Fixed a slowdown regression in live sync with Postgres 17: https://gitlab.syncad.com/hive/balance_tracker/-/merge_requests/125 * Pass application_name parameter to postgres connection string for simplified database trouble shooting in tools like pgadmin: https://gitlab.syncad.com/hive/balance_tracker/-/merge_requests/126 ## [Reputation tracker: API for fetching account reputation](https://gitlab.syncad.com/hive/reputation_tracker) * Create docker image for postgREST url rewriter: https://gitlab.syncad.com/hive/reputation_tracker/-/merge_requests/47 * Split schema installation and HAF index creation into two phases to speed up block processor sync time: https://gitlab.syncad.com/hive/reputation_tracker/-/merge_requests/48 https://gitlab.syncad.com/hive/haf_api_node/-/merge_requests/36 * Reduce unnecessary logging by rewriter by default: https://gitlab.syncad.com/hive/reputation_tracker/-/merge_requests/52 * Pass application_name parameter to postgres connection string for simplified database troubleshooting in tools like pgadmin: https://gitlab.syncad.com/hive/reputation_tracker/-/merge_requests/54 * Updated common-ci-configuration reference to get swagger versioning feature: https://gitlab.syncad.com/hive/reputation_tracker/-/merge_requests/50 ## [HAF Block Explorer](https://gitlab.syncad.com/hive/haf_block_explorer) ### Recent improvements * Elimination of random errors during application setup: https://gitlab.syncad.com/hive/haf_block_explorer/-/merge_requests/237 https://gitlab.syncad.com/hive/haf_block_explorer/-/merge_requests/236 * Improved functionality of search APIs: https://gitlab.syncad.com/hive/haf_block_explorer/-/merge_requests/233 ## [WAX API library for Hive apps](https://gitlab.syncad.com/hive/wax) ### Recent improvements * Fixed a bug in the health-checker component: https://gitlab.syncad.com/hive/wax/-/merge_requests/227 ### In progress * Creating a generic UI component for the health-checker. * Creating an object-oriented interface for the Python version of Wax. * Porting the code for preventing accidental leakage of private keys to Wax’s transaction construction code. * Create documentation. ## HAF API Node ### Recent improvements * Allow setting a different public hostname from the private hostname: https://gitlab.syncad.com/hive/haf_api_node/-/merge_requests/32 * Move rewriter creation to individual HAF apps and now use those containers: https://gitlab.syncad.com/hive/haf_api_node/-/merge_requests/34 * Fix reputation tracker health check: https://gitlab.syncad.com/hive/haf_api_node/-/merge_requests/35 * Add the ability to get email notifications when haproxy detects a service going down: https://gitlab.syncad.com/hive/haf_api_node/-/merge_requests/37 ### In progress * Testing replaying HAF API servers ## What's next? I left notes on most of the remaining code changes that are planned in each application’s section, but other than those changes, our main focus in the next weeks will be testing all the apps together, especially under real world loading conditions (e.g. mirroring traffic from our production API server). Then, finally, we’ll need all the apps devs to begin verifying their code against the new API server code. Limited forms of this testing can be done now by testing against api.syncad.com, which is where we deploy release candidates for the API server code.
author | blocktrades |
---|---|
permlink | 10th-update-of-2024-api-node-software-release-in-dec-hardfork-tentatively-set-for-q1-2025 |
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 | 2024-11-21 23:29:27 |
last_update | 2024-11-21 23:29:27 |
depth | 0 |
children | 34 |
last_payout | 2024-11-28 23:29:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 130.200 HBD |
curator_payout_value | 130.065 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10,518 |
author_reputation | 1,284,881,852,510,457 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,621,625 |
net_rshares | 660,840,750,378,797 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
smooth | 0 | 139,585,439,411,752 | 100% | ||
abit | 0 | 22,054,078,660,950 | 100% | ||
adm | 0 | 22,188,923,684,269 | 100% | ||
boatymcboatface | 0 | 611,635,083,039 | 30% | ||
fractalnode | 0 | 20,048,865,116 | 50% | ||
kingscrown | 0 | 833,012,833 | 30% | ||
flemingfarm | 0 | 67,872,868,691 | 11.25% | ||
acidyo | 0 | 9,673,279,614,065 | 100% | ||
leprechaun | 0 | 2,338,133,970 | 13% | ||
theshell | 0 | 163,702,811,424 | 30% | ||
brennanhm | 0 | 10,799,876,833 | 6% | ||
gtg | 0 | 52,557,098,334,452 | 100% | ||
good-karma | 0 | 11,632,163,456 | 1% | ||
roelandp | 0 | 1,440,782,687,209 | 50% | ||
neopatriarch | 0 | 1,957,944,120 | 50% | ||
ausbitbank | 0 | 4,609,599,207,875 | 100% | ||
ardina | 0 | 20,072,216,209 | 100% | ||
cloh76 | 0 | 145,734,272,936 | 100% | ||
jza | 0 | 3,893,110,584 | 66% | ||
arcange | 0 | 10,547,593,547,798 | 50% | ||
deanliu | 0 | 5,855,718,173,233 | 100% | ||
brianphobos | 0 | 0 | 100% | ||
kaykunoichi | 0 | 1,085,488,544 | 50% | ||
akipponn | 0 | 117,500,432,619 | 100% | ||
felixxx | 0 | 1,595,392,067,752 | 100% | ||
magicmonk | 0 | 8,445,732,229,565 | 100% | ||
timcliff | 0 | 116,286,834,561 | 100% | ||
laoyao | 0 | 60,802,641,922 | 100% | ||
midnightoil | 0 | 214,970,656,515 | 100% | ||
xiaohui | 0 | 18,890,079,825 | 100% | ||
josepimpo | 0 | 97,306,921,524 | 100% | ||
oflyhigh | 0 | 4,499,418,498,857 | 100% | ||
shanghaipreneur | 0 | 24,146,280,665 | 100% | ||
borran | 0 | 1,206,685,270,715 | 100% | ||
helene | 0 | 1,366,795,337,240 | 100% | ||
lemouth | 0 | 3,370,055,560,564 | 100% | ||
someguy123 | 0 | 137,809,314,716 | 50% | ||
gduran | 0 | 24,892,141,708 | 100% | ||
jlufer | 0 | 19,402,855,372 | 100% | ||
esecholo | 0 | 9,474,347,929 | 100% | ||
penguinpablo | 0 | 231,637,357,391 | 14% | ||
uwelang | 0 | 501,455,713,124 | 20% | ||
canadian-coconut | 0 | 5,704,718,124,966 | 39% | ||
cornerstone | 0 | 1,326,830,986,224 | 50% | ||
matthewtiii | 0 | 16,071,183,845 | 100% | ||
seckorama | 0 | 324,476,578,521 | 71% | ||
funnyman | 0 | 1,438,512,113 | 5.6% | ||
steemcleaners | 0 | 2,285,783,740,786 | 80% | ||
justyy | 0 | 902,341,114,594 | 100% | ||
disregardfiat | 0 | 2,812,341,276,233 | 100% | ||
rynow | 0 | 163,356,254,238 | 30% | ||
michelle.gent | 0 | 319,054,407,697 | 100% | ||
jang | 0 | 127,263,749,476 | 100% | ||
lloyddavis | 0 | 15,383,615,892 | 75% | ||
ssekulji | 0 | 156,930,916,520 | 100% | ||
siniceku | 0 | 1,504,165,487 | 100% | ||
lydon.sipe | 0 | 6,259,205,746 | 100% | ||
techslut | 0 | 331,481,083,126 | 50% | ||
consciousness | 0 | 10,013,126,809 | 100% | ||
triviummethod | 0 | 5,776,683,579 | 100% | ||
jaybird | 0 | 4,968,331,936 | 100% | ||
whistleblower | 0 | 10,515,040,181 | 100% | ||
esteemapp | 0 | 2,577,497,897 | 1% | ||
veganism | 0 | 5,746,342,043 | 100% | ||
justinw | 0 | 173,413,049,605 | 33% | ||
walterjay | 0 | 39,021,485,367 | 3.9% | ||
humanearl | 0 | 2,032,488,858 | 70% | ||
v4vapid | 0 | 15,261,398,936,967 | 100% | ||
newhope | 0 | 7,440,825,059,267 | 52% | ||
steemitcommunity | 0 | 1,354,326,995 | 100% | ||
askari | 0 | 26,531,312,729 | 20% | ||
darth-azrael | 0 | 32,473,332,804 | 10% | ||
bxt | 0 | 889,355,151,426 | 100% | ||
davidgermano | 0 | 597,974,626 | 100% | ||
darth-cryptic | 0 | 5,860,428,979 | 10% | ||
tarazkp | 0 | 3,198,230,454,038 | 50% | ||
shermanedwards | 0 | 719,518,539 | 50% | ||
yiyi.maiola | 0 | 10,715,898,599 | 100% | ||
sudutpandang | 0 | 763,451,736 | 100% | ||
justinashby | 0 | 461,996,861 | 100% | ||
thereikiforest | 0 | 1,233,389,478 | 10% | ||
evildeathcore | 0 | 11,770,380,759 | 100% | ||
diggndeeper.com | 0 | 7,478,151,414,661 | 100% | ||
steven-patrick | 0 | 17,319,913,462 | 100% | ||
danielsaori | 0 | 513,893,803,019 | 100% | ||
trafalgar | 0 | 55,730,699,244,594 | 100% | ||
itinerantph | 0 | 2,003,810,458 | 50% | ||
freedomexists | 0 | 1,596,762,984 | 100% | ||
preparedwombat | 0 | 2,035,921,501,466 | 100% | ||
freebornsociety | 0 | 5,099,802,902 | 10% | ||
elevator09 | 0 | 325,803,268,606 | 20% | ||
detlev | 0 | 163,113,705,782 | 7.5% | ||
dickturpin | 0 | 68,333,724,454 | 100% | ||
raindrop | 0 | 880,093,104,472 | 100% | ||
tbnfl4sun | 0 | 13,134,035,079 | 10% | ||
passion-fruit | 0 | 11,563,972,070 | 92% | ||
fortune-master | 0 | 11,485,034,829 | 92% | ||
smasssh | 0 | 1,413,886,078,670 | 30% | ||
mes | 0 | 1,379,923,902,648 | 100% | ||
dreamon | 0 | 501,072,745 | 11.1% | ||
kingkinslow | 0 | 825,648,514 | 100% | ||
andyjaypowell | 0 | 1,116,257,214,550 | 99% | ||
iansart | 0 | 4,381,800,441 | 100% | ||
schlees | 0 | 383,254,016,092 | 20% | ||
trayan | 0 | 30,418,402,467 | 100% | ||
forykw | 0 | 1,198,222,132,007 | 100% | ||
xplosive | 0 | 50,208,167,042 | 100% | ||
mobbs | 0 | 314,424,908,979 | 100% | ||
crisgojar | 0 | 127,492,779,503 | 100% | ||
rt395 | 0 | 7,628,441,801 | 10% | ||
uruiamme | 0 | 3,278,834,668 | 27.5% | ||
bigram13 | 0 | 29,721,752,353 | 100% | ||
newsflash | 0 | 1,332,857,273,094 | 25% | ||
joechiappetta | 0 | 138,171,384,789 | 100% | ||
galberto | 0 | 53,659,397,907 | 100% | ||
exec | 0 | 1,761,133,998,173 | 100% | ||
eval | 0 | 3,577,634,748,621 | 100% | ||
jonsnow1983 | 0 | 666,586,179,104 | 100% | ||
alphacore | 0 | 7,308,692,697 | 7.12% | ||
galenkp | 0 | 8,657,950,939,898 | 100% | ||
enjar | 0 | 1,056,636,676,875 | 100% | ||
mahdiyari | 0 | 1,598,583,096,764 | 100% | ||
jackmiller | 0 | 525,708,115 | 70% | ||
drakos | 0 | 236,193,664,292 | 100% | ||
littlenewthings | 0 | 15,814,825,249 | 100% | ||
hellene8 | 0 | 8,024,698,012 | 100% | ||
spectrumecons | 0 | 3,558,944,742,157 | 50% | ||
rival | 0 | 12,261,467,490 | 100% | ||
vieanna | 0 | 3,360,195,198 | 100% | ||
joeyarnoldvn | 0 | 34,586,344,109 | 100% | ||
heyitshaas | 0 | 13,020,499,414 | 100% | ||
grocko | 0 | 53,792,986,451 | 50% | ||
offgridlife | 0 | 0 | 15% | ||
papilloncharity | 0 | 2,892,822,166,042 | 80.5% | ||
gunthertopp | 0 | 1,881,721,689,484 | 37.5% | ||
st3llar | 0 | 5,601,650,719 | 25% | ||
bluemist | 0 | 37,378,886,048 | 15% | ||
eturnerx | 0 | 635,055,610,694 | 49% | ||
rafalski | 0 | 1,385,635,119 | 90% | ||
lenasveganliving | 0 | 1,404,117,456 | 7.5% | ||
molometer | 0 | 170,240,293,358 | 100% | ||
theguruasia | 0 | 4,002,531,624 | 100% | ||
howo | 0 | 1,616,180,131,037 | 100% | ||
ksteem | 0 | 517,493,682,933 | 30% | ||
amymya | 0 | 619,415,101 | 10% | ||
appreciator | 0 | 55,879,232,105,084 | 15% | ||
stayoutoftherz | 0 | 2,673,879,628,945 | 25% | ||
bambukah | 0 | 26,986,953,989 | 32% | ||
macchiata | 0 | 78,391,426,418 | 100% | ||
vikisecrets | 0 | 857,784,216,578 | 33% | ||
shasta | 0 | 351,584,617,757 | 100% | ||
zonguin | 0 | 802,878,516 | 3.9% | ||
pocketrocket | 0 | 11,746,186,146 | 100% | ||
kharrazi | 0 | 3,962,539,563 | 100% | ||
khalil319 | 0 | 679,950,570 | 25% | ||
francosteemvotes | 0 | 1,096,320,495 | 7.8% | ||
jasonbu | 0 | 10,008,556,227 | 25% | ||
yacobh | 0 | 11,444,049,865 | 70% | ||
horpey | 0 | 67,974,634,509 | 100% | ||
ahlawat | 0 | 3,553,079,840 | 6% | ||
idx | 0 | 23,065,944,698 | 100% | ||
shanibeer | 0 | 912,396,646,473 | 35% | ||
chrisparis | 0 | 59,381,135,592 | 100% | ||
shogo | 0 | 5,017,375,658 | 100% | ||
fionasfavourites | 0 | 168,684,913,202 | 100% | ||
aafeng | 0 | 244,300,253,391 | 25% | ||
felander | 0 | 601,192,906,111 | 100% | ||
elenasteem | 0 | 30,123,225,945 | 100% | ||
santigs | 0 | 913,590,015,245 | 100% | ||
floatinglin | 0 | 7,618,862,032 | 100% | ||
marketinggeek | 0 | 693,297,559 | 100% | ||
zirochka | 0 | 952,098,322,866 | 100% | ||
spaminator | 0 | 1,391,734,394,055 | 80% | ||
nadhora | 0 | 3,525,025,997 | 100% | ||
gray00 | 0 | 917,211,343 | 100% | ||
ekkah | 0 | 877,658,368 | 100% | ||
accelerator | 0 | 22,276,359,450 | 60% | ||
vlemon | 0 | 325,612,661,333 | 100% | ||
holbein81 | 0 | 36,398,554,094 | 100% | ||
aidefr | 0 | 1,384,598,575 | 6.24% | ||
eastmael | 0 | 30,337,484,686 | 100% | ||
yogacoach | 0 | 22,874,584,015 | 100% | ||
joshman | 0 | 176,725,661,977 | 25% | ||
drax | 0 | 289,802,373,042 | 100% | ||
fatman | 0 | 9,149,098,287 | 2% | ||
votehero | 0 | 20,959,536,574 | 4.4% | ||
deathwing | 0 | 2,137,505,744,460 | 50% | ||
revisesociology | 0 | 775,793,333,590 | 30% | ||
silversaver888 | 0 | 159,136,875,644 | 25% | ||
dilimunanzar | 0 | 14,472,999,572 | 100% | ||
diosarich | 0 | 2,687,450,991 | 25% | ||
msp-makeaminnow | 0 | 21,266,612,004 | 23.8% | ||
yabapmatt | 0 | 24,210,726,358,605 | 100% | ||
omra-sky | 0 | 67,883,588,884 | 50% | ||
msp-foundation | 0 | 145,275,163 | 100% | ||
esteem.app | 0 | 302,547,406 | 1% | ||
m-san | 0 | 6,178,338,029 | 100% | ||
investegg | 0 | 21,327,684,694 | 11.4% | ||
ferod23 | 0 | 1,537,938,082 | 100% | ||
vegoutt-travel | 0 | 53,826,352,282 | 50% | ||
silasvogt | 0 | 805,663,862 | 50% | ||
planetauto | 0 | 306,730,374,444 | 100% | ||
spacesheep | 0 | 5,459,941,160 | 100% | ||
afterglow | 0 | 4,928,081,437 | 50% | ||
marleyn | 0 | 2,676,915,695 | 100% | ||
petrolinivideo | 0 | 3,801,216,862 | 50% | ||
dejan.vuckovic | 0 | 16,335,692,089 | 15% | ||
ybanezkim26 | 0 | 23,815,315,825 | 100% | ||
thekittygirl | 0 | 539,758,555,344 | 100% | ||
miingjazz | 0 | 148,824,101,585 | 100% | ||
sunsea | 0 | 21,570,073,033 | 7.5% | ||
eonwarped | 0 | 27,675,996,276 | 8% | ||
steemflow | 0 | 255,610,822,839 | 76% | ||
emrebeyler | 0 | 4,019,382,754,065 | 35% | ||
steveconnor | 0 | 96,012,077,187 | 50% | ||
dbddv01 | 0 | 560,081,372 | 3.9% | ||
travoved | 0 | 61,870,685,838 | 100% | ||
mytechtrail | 0 | 17,904,850,858 | 15% | ||
steeminer4up | 0 | 498,184,844 | 100% | ||
traf | 0 | 4,818,622,907,225 | 100% | ||
ahmetay | 0 | 46,504,372,141 | 100% | ||
elderson | 0 | 1,969,391,206 | 26% | ||
prometehum | 0 | 1,041,370,202 | 100% | ||
nathen007 | 0 | 37,898,704,891 | 100% | ||
fjcalduch | 0 | 472,364,367,994 | 100% | ||
robotics101 | 0 | 2,362,531,020 | 7.8% | ||
lpv | 0 | 464,537,241 | 1.56% | ||
drunksamurai | 0 | 535,734,098 | 30% | ||
spiritabsolute | 0 | 41,011,290,106 | 100% | ||
thedolphincocoon | 0 | 113,162,340,671 | 80% | ||
wiseagent | 0 | 14,906,634,840 | 25% | ||
cryptonized | 0 | 236,921,254 | 14% | ||
fourfourfun | 0 | 1,700,926,995 | 5% | ||
tikatarot | 0 | 477,848,793 | 26% | ||
dechastre | 0 | 7,931,319,260 | 70% | ||
jim888 | 0 | 736,906,689,212 | 22% | ||
daltono | 0 | 274,560,914,358 | 52% | ||
gabrielatravels | 0 | 84,012,598,120 | 50% | ||
thedrewshow | 0 | 793,610,283 | 100% | ||
alexanderfluke | 0 | 62,678,321,797 | 100% | ||
jude.villarta | 0 | 6,624,654,378 | 100% | ||
chenee | 0 | 1,315,344,923 | 100% | ||
edwardstobia | 0 | 6,507,622,173 | 50% | ||
hijosdelhombre | 0 | 65,191,768,141 | 50% | ||
gaborockstar | 0 | 95,798,110,187 | 50% | ||
bengy | 0 | 66,078,380,509 | 100% | ||
smjn | 0 | 1,000,788,956,793 | 100% | ||
adventuroussoul | 0 | 2,179,710,066 | 10% | ||
belemo | 0 | 33,410,511,598 | 100% | ||
socialmediaseo | 0 | 2,102,578,992 | 100% | ||
criptomaster | 0 | 5,269,490,726 | 100% | ||
leslierevales | 0 | 7,053,165,732 | 50% | ||
m1alsan | 0 | 32,793,311,667 | 25% | ||
soyrosa | 0 | 380,674,596,442 | 50% | ||
snlbaskurt | 0 | 25,571,921,464 | 100% | ||
dragibusss | 0 | 1,410,473,898 | 50% | ||
aakom | 0 | 466,239,402 | 100% | ||
a-quarius | 0 | 192,917,260,923 | 100% | ||
roger.remix | 0 | 1,291,108,438 | 100% | ||
thetroublenotes | 0 | 85,167,110,744 | 100% | ||
atongis | 0 | 29,432,219,100 | 10% | ||
tobias-g | 0 | 9,501,560,824 | 5% | ||
bishoppeter1 | 0 | 461,064,066 | 10% | ||
kkarenmp | 0 | 8,753,734,068 | 7.5% | ||
unconditionalove | 0 | 13,268,507,059 | 50% | ||
atma-yoga | 0 | 731,185,398 | 50% | ||
neeqi | 0 | 464,019,401 | 100% | ||
cryptosharon | 0 | 3,714,604,316 | 100% | ||
tonysayers33 | 0 | 13,475,523,604 | 33% | ||
openmind3000 | 0 | 2,524,081,461 | 50% | ||
mcmusic | 0 | 4,942,357,177 | 100% | ||
aperterikk | 0 | 573,384,737 | 50% | ||
sudefteri | 0 | 38,129,911,155 | 50% | ||
tomhall | 0 | 171,397,306,961 | 100% | ||
fireguardian | 0 | 655,616,520 | 20% | ||
pkocjan | 0 | 687,788,334 | 80% | ||
condeas | 0 | 344,107,630,480 | 20% | ||
rubelynmacion | 0 | 42,100,875,287 | 100% | ||
onlavu | 0 | 155,480,261,233 | 100% | ||
asgarth | 0 | 2,638,816,350,680 | 100% | ||
happymichael | 0 | 2,628,099,079 | 100% | ||
bertrayo | 0 | 8,261,621,614 | 7.5% | ||
cst90 | 0 | 450,783,640,655 | 100% | ||
saulos | 0 | 183,782,126,843 | 100% | ||
crowbarmama | 0 | 4,515,145,256 | 20% | ||
akifane | 0 | 1,418,888,332 | 50% | ||
lisfabian | 0 | 10,682,134,042 | 100% | ||
g4fun | 0 | 11,531,405,824 | 25% | ||
disguarpe | 0 | 11,947,100,721 | 100% | ||
jjerryhan | 0 | 102,302,672,746 | 40.25% | ||
putu300 | 0 | 10,358,309,139 | 50% | ||
siphon | 0 | 84,132,952,472 | 50% | ||
amigoponc | 0 | 5,710,350,185 | 100% | ||
almi | 0 | 809,494,594,136 | 100% | ||
homeginkit | 0 | 95,820,833,892 | 100% | ||
gabbyg86 | 0 | 21,885,281,467 | 35% | ||
dumnebari | 0 | 996,370,274 | 50% | ||
originalmrspice | 0 | 13,653,056,430 | 50% | ||
properfraction | 0 | 63,781,712,324 | 100% | ||
yashny | 0 | 505,928,135 | 20% | ||
satren | 0 | 155,219,036,667 | 100% | ||
nervi | 0 | 34,265,584,404 | 100% | ||
miosha | 0 | 626,137,510,571 | 100% | ||
jocieprosza | 0 | 214,379,646,217 | 100% | ||
jeronimorubio | 0 | 10,212,124,703 | 100% | ||
sunshinebear | 0 | 1,431,894,873 | 50% | ||
steemitcolombia | 0 | 4,278,609,385 | 100% | ||
silverd510 | 0 | 24,689,581,676 | 71% | ||
immanuel94 | 0 | 348,162,416,969 | 100% | ||
andablackwidow | 0 | 62,425,624,485 | 100% | ||
bil.prag | 0 | 251,246,084,878 | 26% | ||
uyobong | 0 | 102,765,235,170 | 100% | ||
dotwin1981 | 0 | 196,818,950,071 | 35% | ||
ravenmus1c | 0 | 15,943,783,571 | 0.75% | ||
kkndworld | 0 | 459,682,489 | 100% | ||
louis88 | 0 | 2,503,399,236,732 | 100% | ||
zaku | 0 | 36,919,866,193 | 15% | ||
reversehitler88 | 0 | 1,411,656,822 | 10% | ||
dera123 | 0 | 588,005,164,692 | 100% | ||
rambutan.art | 0 | 39,373,470,740 | 100% | ||
paragism | 0 | 3,130,132,714 | 100% | ||
franciscopr | 0 | 27,798,656,272 | 100% | ||
mrchef111 | 0 | 19,487,431,494 | 25% | ||
wolfhart | 0 | 16,258,470,092 | 40% | ||
yameen | 0 | 387,783,368,408 | 100% | ||
darkfuseion | 0 | 1,146,217,187 | 100% | ||
gisi | 0 | 4,453,872,503 | 10% | ||
abdulmath | 0 | 3,668,424,337 | 50% | ||
jemmanuel | 0 | 10,541,423,761 | 20% | ||
gadrian | 0 | 724,446,586,538 | 50% | ||
illuminationst8 | 0 | 6,346,716,840 | 25% | ||
fotogruppemunich | 0 | 3,491,141,152 | 80% | ||
inciter | 0 | 10,758,198,388 | 15% | ||
xchng | 0 | 26,877,317,277 | 80% | ||
gifty-e | 0 | 919,068,732 | 100% | ||
choco11oreo11 | 0 | 2,021,201,346 | 100% | ||
michellpiala | 0 | 3,005,712,338 | 50% | ||
springlining | 0 | 32,686,203,195 | 100% | ||
tsnaks | 0 | 4,210,549,533 | 100% | ||
achimmertens | 0 | 85,098,987,058 | 25% | ||
brainpod | 0 | 1,024,532,029 | 25% | ||
kgakakillerg | 0 | 52,722,797,981 | 25% | ||
flyinghigher | 0 | 71,772,276,729 | 100% | ||
joeytechtalks | 0 | 1,584,540,272 | 50% | ||
camuel | 0 | 4,284,618,146 | 10% | ||
softa | 0 | 370,637,747,938 | 100% | ||
el-dee-are-es | 0 | 4,326,102,740 | 10% | ||
we-are | 0 | 21,325,007,471 | 87.4% | ||
jolugo23 | 0 | 1,567,847,649 | 100% | ||
yonilkar | 0 | 21,964,001,434 | 100% | ||
markegiles | 0 | 354,213,090,010 | 33.34% | ||
sergionatera | 0 | 6,135,822,900 | 100% | ||
sbi3 | 0 | 253,175,274,731 | 13.63% | ||
yaraha | 0 | 3,239,915,076 | 20% | ||
azwar.ipank | 0 | 10,241,119,104 | 100% | ||
glodniwiedzy | 0 | 37,450,514,549 | 100% | ||
veteranforcrypto | 0 | 4,301,134,400 | 20% | ||
smacommunity | 0 | 983,569,524 | 50% | ||
jancharlest | 0 | 581,067,585 | 100% | ||
fw206 | 0 | 2,470,556,672,993 | 30% | ||
slobberchops | 0 | 6,821,086,518,204 | 100% | ||
techcoderx | 0 | 553,403,787,474 | 100% | ||
crystalhuman | 0 | 1,009,435,729 | 100% | ||
sayago | 0 | 1,599,189,978 | 50% | ||
pladozero | 0 | 32,100,621,252 | 10% | ||
crimo | 0 | 501,429,717 | 10% | ||
brettblue | 0 | 823,413,499 | 50% | ||
nateaguila | 0 | 1,470,146,069,415 | 100% | ||
reality-variance | 0 | 889,004,250 | 20% | ||
angatt | 0 | 3,593,593,663 | 50% | ||
steem-tube | 0 | 7,859,810,166 | 100% | ||
alfrednoyed | 0 | 19,472,238,727 | 100% | ||
onelovedtube | 0 | 14,974,452,997 | 100% | ||
steddyman | 0 | 2,461,124,789 | 100% | ||
cryptoandcoffee | 0 | 362,957,896,316 | 10% | ||
bluewall | 0 | 30,348,121,587 | 100% | ||
steempeak | 0 | 1,456,158,443,096 | 100% | ||
corinadiaz | 0 | 1,376,648,143 | 20% | ||
kstop1 | 0 | 15,353,840,556 | 100% | ||
solarwarrior | 0 | 82,128,654,325 | 100% | ||
toddmck | 0 | 2,489,945,405 | 100% | ||
marblely | 0 | 35,314,667,471 | 30% | ||
swisswitness | 0 | 553,383,990 | 100% | ||
kahvesizlik | 0 | 1,208,855,758 | 100% | ||
purrix | 0 | 18,083,719,033 | 100% | ||
gaottantacinque | 0 | 589,747,448 | 100% | ||
scrawly | 0 | 2,573,018,795 | 100% | ||
drsensor | 0 | 2,275,993,968 | 80% | ||
hemo | 0 | 3,668,782,532 | 100% | ||
xves | 0 | 20,424,410,661 | 50% | ||
mrnightmare89 | 0 | 6,457,677,276 | 20% | ||
ambiguity | 0 | 47,049,161,671 | 100% | ||
schlunior | 0 | 21,234,358,019 | 20% | ||
pardinus | 0 | 338,773,063,186 | 80% | ||
icepee | 0 | 16,114,275,786 | 50% | ||
sadbear | 0 | 633,017,343 | 7.5% | ||
xara | 0 | 34,108,046,022 | 100% | ||
weitblicker | 0 | 28,800,783,911 | 100% | ||
bigbos99 | 0 | 582,502,271 | 100% | ||
steem.craft | 0 | 612,775,968 | 100% | ||
yestermorrow | 0 | 12,162,907,349 | 31% | ||
thehive | 0 | 53,349,160,453 | 100% | ||
mariaogliastre | 0 | 4,001,630,715 | 100% | ||
luciannagy | 0 | 519,738,182 | 50% | ||
fandelkefir | 0 | 4,103,294,644 | 100% | ||
anttn | 0 | 13,613,252,632 | 33.33% | ||
light-hearted | 0 | 2,795,249,783 | 100% | ||
gasaeightyfive | 0 | 670,806,653 | 100% | ||
goingbonkers | 0 | 68,163,928,547 | 100% | ||
dlike | 0 | 459,080,130,674 | 100% | ||
cubapl | 0 | 3,802,223,158 | 30% | ||
voxmortis | 0 | 37,727,729,232 | 20% | ||
emaillisahere | 0 | 1,049,039,992 | 75% | ||
buzzbee | 0 | 516,990,140 | 40% | ||
engrave | 0 | 8,563,067,532,810 | 100% | ||
tipsybosphorus | 0 | 5,958,778,045 | 90% | ||
pboulet | 0 | 290,762,643,842 | 100% | ||
chike4545 | 0 | 971,775,653 | 100% | ||
marcocasario | 0 | 10,105,538 | 0.01% | ||
a-bot | 0 | 14,600,783,883 | 30% | ||
bdvoter | 0 | 9,063,856,942,223 | 15% | ||
voter002 | 0 | 21,322,798,790 | 53.1% | ||
voter003 | 0 | 215,895,129,136 | 95.1% | ||
steemituplife | 0 | 654,456,242 | 25% | ||
marshalmugi | 0 | 4,650,728,297 | 100% | ||
cribbio | 0 | 1,675,479,406 | 100% | ||
podg3 | 0 | 4,637,391,658 | 90% | ||
steemwhalepower | 0 | 966,516,944 | 100% | ||
stefano.massari | 0 | 106,813,810,380 | 40% | ||
unbiasedwriter | 0 | 720,346,695,754 | 100% | ||
thevil | 0 | 937,288,617,159 | 100% | ||
jacobpeacock | 0 | 11,217,853,544 | 100% | ||
merlin7 | 0 | 203,468,787,791 | 100% | ||
besheda | 0 | 1,874,383,194 | 50% | ||
thrasher666 | 0 | 2,546,952,237 | 60% | ||
vasigo | 0 | 23,941,334,121 | 100% | ||
peakmonsters | 0 | 516,182,752,005 | 100% | ||
linuxbot | 0 | 5,407,335,586 | 20% | ||
geeklania | 0 | 714,977,033 | 100% | ||
raoufwilly | 0 | 812,307,486 | 30% | ||
cremisi | 0 | 1,869,005,942 | 100% | ||
carbodexkim | 0 | 823,294,194 | 100% | ||
ladyangelwolf | 0 | 1,508,895,179 | 100% | ||
iovoccae | 0 | 4,818,934,187 | 100% | ||
glastar | 0 | 641,036,724 | 100% | ||
keket | 0 | 671,207,880 | 50% | ||
gudnius.comics | 0 | 0 | 100% | ||
steemlandia | 0 | 4,796,134,447 | 100% | ||
tamito0201 | 0 | 1,682,492,615 | 100% | ||
starrouge | 0 | 1,048,492,524 | 50% | ||
retrodroid | 0 | 3,367,996,783 | 10% | ||
wherein | 0 | 26,579,019,777 | 100% | ||
cowboysblog | 0 | 3,084,734,285 | 100% | ||
joancaseres | 0 | 313,790,966 | 100% | ||
shainemata | 0 | 249,164,812,377 | 50% | ||
zerofive | 0 | 872,902,987 | 50% | ||
muntaharaceh | 0 | 2,139,426,765 | 40% | ||
jacuzzi | 0 | 647,221,188 | 1.4% | ||
kaldewei | 0 | 703,097,153 | 35% | ||
slothlydoesit | 0 | 14,422,225,164 | 10% | ||
primeradue | 0 | 1,753,885,514 | 100% | ||
aksurevm89 | 0 | 711,655,683,569 | 100% | ||
cnstm | 0 | 125,155,940,344 | 100% | ||
likuang007 | 0 | 665,860,519 | 100% | ||
vickyguevara | 0 | 3,292,665,830 | 100% | ||
miguelmederico | 0 | 3,016,328,432 | 40% | ||
josehany | 0 | 157,842,191,551 | 100% | ||
caribehub | 0 | 1,381,469,491 | 100% | ||
lianjingmedia | 0 | 999,333,120 | 100% | ||
broxi | 0 | 15,693,638,424 | 50% | ||
breadbakers | 0 | 3,145,252,683 | 100% | ||
kokadi | 0 | 584,518,917 | 80% | ||
hungrybear | 0 | 624,473,977 | 14% | ||
sofiag | 0 | 1,373,896,413 | 100% | ||
ond | 0 | 544,772,838 | 100% | ||
hungryharish | 0 | 25,566,243,268 | 100% | ||
sophieandhenrik | 0 | 19,175,445,019 | 100% | ||
src3 | 0 | 2,361,489,519 | 5% | ||
kggymlife | 0 | 4,904,133,953 | 25% | ||
pedrobrito2004 | 0 | 19,721,978,787 | 14% | ||
zeero22 | 0 | 9,873,616,100 | 51% | ||
russia-btc | 0 | 249,090,002,829 | 100% | ||
bitcoinator | 0 | 3,223,205,970 | 100% | ||
alenox | 0 | 898,408,885 | 7.5% | ||
hungryanu | 0 | 3,411,165,052 | 50% | ||
oneloveipfs | 0 | 14,341,748,677 | 100% | ||
rocketpower | 0 | 631,728,032 | 25% | ||
photographercr | 0 | 528,191,502 | 20% | ||
szf | 0 | 968,004,875 | 50% | ||
wallvater | 0 | 1,083,161,948 | 20% | ||
bigmoneyman | 0 | 908,197,649 | 50% | ||
loudutim | 0 | 296,353,416 | 100% | ||
helgalubevi | 0 | 12,321,118,536 | 25% | ||
iamangierose | 0 | 530,608,702 | 50% | ||
imagenius | 0 | 830,918,749 | 100% | ||
deeanndmathews | 0 | 69,099,384,515 | 100% | ||
nooblogger | 0 | 4,906,982,892 | 50% | ||
beerlover | 0 | 10,060,972,034 | 7.5% | ||
huntforsteem | 0 | 16,357,817,088 | 100% | ||
borjan | 0 | 2,371,572,577,717 | 100% | ||
agmoore2 | 0 | 16,293,082,611 | 100% | ||
tinyhousecryptos | 0 | 461,888,928 | 5% | ||
leighscotford | 0 | 539,289,983 | 0.75% | ||
iamjohn | 0 | 592,191,380 | 7.5% | ||
zeruxanime | 0 | 3,539,825,275 | 50% | ||
xyz004 | 0 | 49,306,047,787 | 25% | ||
steemindian | 0 | 4,315,705,223 | 100% | ||
cheer-up | 0 | 17,817,987,270 | 80% | ||
davidtron | 0 | 3,174,584,768 | 50% | ||
imbartley | 0 | 797,469,031 | 25% | ||
elizabeths14 | 0 | 206,988,414,225 | 25% | ||
kgswallet | 0 | 5,684,118,417 | 100% | ||
milu-the-dog | 0 | 1,221,354,026 | 100% | ||
ffoorryykkww | 0 | 0 | 100% | ||
reggaesteem | 0 | 3,268,577,280 | 29.75% | ||
nichemarket | 0 | 1,334,353,920 | 100% | ||
farm1 | 0 | 803,665,102,160 | 100% | ||
freedomring | 0 | 5,173,301,144 | 100% | ||
hyborian-strain | 0 | 2,432,456,790 | 30% | ||
freddio.sport | 0 | 3,499,112,324 | 100% | ||
binodkatuwal | 0 | 2,067,888,248 | 100% | ||
babytarazkp | 0 | 2,590,861,625 | 50% | ||
valerianis | 0 | 483,623,776 | 7.5% | ||
eulymer | 0 | 745,580,715 | 100% | ||
sbi-tokens | 0 | 2,922,245,737 | 4.01% | ||
lynds | 0 | 477,607,935,255 | 100% | ||
urun | 0 | 16,259,771,973 | 100% | ||
the-table | 0 | 7,481,711,078 | 100% | ||
bilpcoinbot | 0 | 4,690,193,316 | 100% | ||
blq.alfa | 0 | 1,151,714,395 | 100% | ||
thehouse | 0 | 2,007,675,100 | 90% | ||
dpoll.witness | 0 | 856,953,043 | 35% | ||
gigel2 | 0 | 966,419,310,100 | 100% | ||
wallar | 0 | 4,355,471,682 | 100% | ||
pogarda | 0 | 4,642,767,218 | 100% | ||
silverquest | 0 | 4,755,282,863 | 100% | ||
chris-uk | 0 | 13,318,202,472 | 40% | ||
bilpcoin.pay | 0 | 544,606,157 | 10% | ||
tobago | 0 | 669,719,512 | 35% | ||
unpopular | 0 | 1,655,121,557,741 | 100% | ||
rockface | 0 | 5,634,349,404 | 100% | ||
galenkp.aus | 0 | 1,196,683,158 | 100% | ||
delilhavores | 0 | 1,212,293,181 | 15% | ||
lachg89 | 0 | 883,601,024 | 100% | ||
asia-pl | 0 | 314,053,485,738 | 100% | ||
bpcvoter | 0 | 965,949,369 | 100% | ||
bpcvoter1 | 0 | 790,944,750 | 100% | ||
gmlrecordz | 0 | 752,971,319 | 50% | ||
mvanhauten | 0 | 460,435,680 | 20% | ||
veryanprime | 0 | 6,036,913,607 | 100% | ||
journeyofanomad | 0 | 5,783,097,333 | 40% | ||
angel33 | 0 | 642,588,051 | 100% | ||
gloriaolar | 0 | 23,878,158,984 | 30% | ||
garlet | 0 | 74,225,413,589 | 100% | ||
juanvegetarian | 0 | 15,089,798,835 | 50% | ||
onestop | 0 | 11,237,870,600 | 100% | ||
kgsupport | 0 | 2,596,257,233 | 50% | ||
marblesz | 0 | 2,117,412,798 | 30% | ||
bilpcoinbpc | 0 | 1,141,400,118 | 5% | ||
vault.tokens | 0 | 1,007,340,941 | 50% | ||
julesquirin | 0 | 251,711,172 | 50% | ||
ugochill | 0 | 49,069,954,374 | 100% | ||
keys-defender | 0 | 3,887,092,104 | 50% | ||
nerdvana | 0 | 715,300,675 | 7.5% | ||
van.dining | 0 | 1,913,186,622 | 100% | ||
hive-134220 | 0 | 37,828,429,905 | 100% | ||
alexa.art | 0 | 60,068,967,188 | 100% | ||
dpend.active | 0 | 7,722,359,630 | 20% | ||
darine.darine | 0 | 175,958,215,697 | 100% | ||
peakd | 0 | 10,171,900,655,238 | 100% | ||
fsm-core | 0 | 25,621,355,815 | 100% | ||
hive-134382 | 0 | 2,623,375,606 | 100% | ||
hivewatchers | 0 | 1,985,155,249 | 55% | ||
hivequebec | 0 | 514,760,598 | 7.8% | ||
tht | 0 | 20,774,035,272 | 100% | ||
theterminal | 0 | 322,102,786,549 | 80% | ||
hivetrending | 0 | 380,450,975,144 | 100% | ||
laruche | 0 | 12,362,437,838 | 7.8% | ||
ykretz | 0 | 459,530,930 | 5% | ||
waiviolabs | 0 | 5,968,583,287 | 100% | ||
master-lamps | 0 | 114,666,188,560 | 100% | ||
reggaejahm | 0 | 59,331,146,931 | 35% | ||
softworld | 0 | 566,182,280,879 | 100% | ||
polish.hive | 0 | 472,178,845,226 | 100% | ||
captainhive | 0 | 1,318,307,583,394 | 50% | ||
artgrafiken | 0 | 9,538,955,490 | 20% | ||
sadvil | 0 | 2,053,462,745 | 100% | ||
dcityrewards | 0 | 5,240,480,639,679 | 100% | ||
holoferncro | 0 | 1,884,763,198 | 5% | ||
sketching | 0 | 6,639,510,922 | 50% | ||
tht1 | 0 | 4,991,929,470 | 100% | ||
ninnu | 0 | 596,553,881 | 50% | ||
ecency | 0 | 375,601,803,643 | 1% | ||
cybercity | 0 | 930,446,416,590 | 100% | ||
kingneptune | 0 | 2,089,436,895 | 50% | ||
woelfchen | 0 | 400,446,371,587 | 100% | ||
aquarius.academy | 0 | 0 | 36.9% | ||
forkyw | 0 | 0 | 100% | ||
ghaazi | 0 | 5,505,835,102 | 100% | ||
devpress | 0 | 626,201,971 | 50% | ||
noelyss | 0 | 2,568,469,633 | 7.5% | ||
forkyishere | 0 | 7,980,277,859 | 100% | ||
balvinder294 | 0 | 2,228,266,867 | 20% | ||
daniky | 0 | 3,834,848,648 | 100% | ||
lucianav | 0 | 43,646,821,376 | 100% | ||
jelly13 | 0 | 4,085,258,687 | 42.5% | ||
reza-shamim | 0 | 903,602,046 | 40% | ||
olaunlimited | 0 | 1,401,097,039 | 100% | ||
ecency.stats | 0 | 340,292,655 | 1% | ||
dayerlis | 0 | 573,362,028 | 100% | ||
hive-108278 | 0 | 886,034,296 | 50% | ||
sunitahive | 0 | 36,430,493,501 | 100% | ||
hive-data | 0 | 6,377,635,309 | 100% | ||
rafaelgreen | 0 | 1,043,003,563 | 100% | ||
jelly-cz | 0 | 1,935,241,604 | 100% | ||
queenart | 0 | 109,295,362,090 | 100% | ||
hrcl.art | 0 | 4,027,443,693 | 100% | ||
liz.writes | 0 | 1,043,378,855 | 50% | ||
sylmarill | 0 | 119,750,961,745 | 100% | ||
kraken99 | 0 | 659,979,226 | 100% | ||
aurauramagic | 0 | 13,071,192,505 | 100% | ||
storiesoferne | 0 | 269,041,787,907 | 100% | ||
goliathus | 0 | 2,113,269,404 | 25% | ||
dalersilfver | 0 | 3,672,844,512 | 100% | ||
r-nyn | 0 | 172,900,033,827 | 100% | ||
usainvote | 0 | 13,000,732,144,613 | 50% | ||
trangbaby | 0 | 207,826,424,834 | 100% | ||
borbolet | 0 | 3,092,246,368 | 30% | ||
finris | 0 | 1,930,700,499 | 50% | ||
nickelbunker | 0 | 29,408,439,584 | 100% | ||
noalys | 0 | 2,332,236,894 | 7.5% | ||
museodelcaos | 0 | 6,134,774,612 | 100% | ||
hive-168869 | 0 | 7,671,240,694 | 100% | ||
meerliebe | 0 | 103,863,182,457 | 100% | ||
wannderingsoul | 0 | 944,961,028 | 100% | ||
barbyjr | 0 | 6,621,112,152 | 50% | ||
trcommunity | 0 | 0 | 50% | ||
danzocal | 0 | 6,170,159,625 | 100% | ||
matthew.lily | 0 | 4,239,844,070 | 100% | ||
mismo | 0 | 47,371,466,623 | 100% | ||
dineandwine | 0 | 295,098,265 | 100% | ||
aplusd | 0 | 82,429,980,788 | 100% | ||
kattycrochet | 0 | 11,363,839,464 | 7.5% | ||
esecholito | 0 | 50,967,820,351 | 100% | ||
alex-rourke | 0 | 2,646,248,557,945 | 100% | ||
hyper.speed | 0 | 1,275,615,220 | 100% | ||
birdbeaksd | 0 | 815,294,848 | 100% | ||
tamiapt6 | 0 | 1,076,089,883 | 100% | ||
cocaaladioxine | 0 | 5,644,291,254 | 91% | ||
josuemonterola | 0 | 1,204,730,356 | 12.5% | ||
druckado | 0 | 607,105,914 | 20% | ||
completewind | 0 | 5,713,366,796 | 100% | ||
ronasoliva1104 | 0 | 1,806,084,189 | 25% | ||
dadspardan | 0 | 54,757,418,230 | 100% | ||
atexoras | 0 | 0 | 100% | ||
hykss.leo | 0 | 103,845,696,502 | 10% | ||
babeltrips | 0 | 24,120,292,059 | 50% | ||
belemo.leo | 0 | 464,249,007 | 100% | ||
eldritchspig | 0 | 882,052,421 | 50% | ||
trostparadox | 0 | 4,152,194,317,272 | 100% | ||
esmeesmith | 0 | 480,249,253 | 0.5% | ||
joven777 | 0 | 202,759,439,775 | 100% | ||
cookaiss | 0 | 1,803,045,216 | 15% | ||
haitch | 0 | 3,269,834,065 | 100% | ||
xrayman | 0 | 156,208,297,222 | 100% | ||
lukaszolejnik | 0 | 1,529,882,387 | 100% | ||
hierkraj | 0 | 1,357,111,580 | 100% | ||
ausbit.dev | 0 | 12,080,033,112 | 50% | ||
atexoras.witness | 0 | 1,549,826,976 | 100% | ||
retaliatorr | 0 | 2,955,932,270 | 100% | ||
huzzah | 0 | 36,921,356,195 | 100% | ||
xyba | 0 | 44,169,839,534 | 100% | ||
azamrai | 0 | 475,925,907,427 | 100% | ||
cooperclub | 0 | 38,444,315,779 | 50% | ||
vaipraonde | 0 | 24,734,318,125 | 100% | ||
nyxlabs | 0 | 7,236,104,633 | 25% | ||
dodovietnam | 0 | 11,240,779,704 | 50% | ||
mapetoke | 0 | 79,406,404,064 | 100% | ||
princeofbeyhive | 0 | 1,466,085,739 | 50% | ||
wend1go | 0 | 19,768,846,245 | 100% | ||
creodas | 0 | 1,421,345,665 | 37.5% | ||
failingforward | 0 | 944,185,342 | 40% | ||
drricksanchez | 0 | 57,090,346,329 | 10% | ||
wizzitywillican | 0 | 6,896,572,317 | 50% | ||
rendrianarma | 0 | 2,450,242,643 | 50% | ||
phuongthao98 | 0 | 2,209,888,451 | 50% | ||
hive.pizza | 0 | 2,468,454,332,998 | 100% | ||
leveluplifestyle | 0 | 357,659,689 | 50% | ||
zarnoex | 0 | 514,443,173 | 100% | ||
jane1289 | 0 | 152,999,323,123 | 75% | ||
hive-defender | 0 | 268,147,489 | 100% | ||
dendendenden | 0 | 6,875,545,446 | 100% | ||
power-kappe | 0 | 1,045,962,537 | 15% | ||
pizzabot | 0 | 723,904,527 | 100% | ||
dajokawild | 0 | 74,300,897,083 | 50% | ||
reidenling90 | 0 | 6,125,850,577 | 100% | ||
key-defender.shh | 0 | 26,959,320 | 100% | ||
thaolaven | 0 | 661,440,371 | 50% | ||
atexoras.pub | 0 | 57,267,540,381 | 100% | ||
photo-hive-five | 0 | 1,623,616,795 | 100% | ||
louis.pay | 0 | 1,773,234,467 | 100% | ||
hive.friends | 0 | 0 | 1% | ||
invcble | 0 | 980,685,692 | 100% | ||
hjrrodriguez | 0 | 44,438,540,504 | 100% | ||
fotomaglys | 0 | 6,207,793,375 | 7.5% | ||
seryi13 | 0 | 1,986,500,057 | 10.5% | ||
twicejoy | 0 | 952,967,820 | 10% | ||
sultanmix777 | 0 | 28,043,985,961 | 100% | ||
estebandido1983 | 0 | 2,061,162,392 | 80% | ||
cowboyzlegend27 | 0 | 45,004,479,236 | 100% | ||
godslove123 | 0 | 950,076,313 | 7.5% | ||
irenicus30 | 0 | 1,104,082,540,833 | 100% | ||
t-nil | 0 | 6,466,905,573 | 100% | ||
sudeon | 0 | 10,340,173,485 | 100% | ||
aprasad2325 | 0 | 2,785,472,002 | 7.5% | ||
john9inch | 0 | 1,782,928,223 | 50% | ||
dungeondog | 0 | 13,671,583,230 | 20% | ||
ischmieregal | 0 | 6,970,659,637 | 20% | ||
celeste413 | 0 | 1,223,115,143 | 100% | ||
szmobacsi | 0 | 2,018,095,138 | 90% | ||
servant7 | 0 | 480,218,423,650 | 100% | ||
onthemountain | 0 | 1,066,549,227 | 50% | ||
chuyster | 0 | 623,740,847 | 100% | ||
nopasaran72 | 0 | 977,625,347 | 7.8% | ||
rayius | 0 | 478,223,447 | 100% | ||
pishio | 0 | 426,358,521,887 | 10% | ||
r0nny | 0 | 7,112,330,061 | 20% | ||
noempathy | 0 | 8,815,838,368 | 100% | ||
lyon-89 | 0 | 9,112,063,641 | 100% | ||
trentonlundy1 | 0 | 5,891,324,290 | 50% | ||
menzo | 0 | 1,960,379,907 | 10% | ||
trezzahn | 0 | 0 | 100% | ||
panosdada.sports | 0 | 469,167,016 | 100% | ||
bilgin70 | 0 | 23,724,356,525 | 25% | ||
funshee | 0 | 2,264,260,688 | 9.99% | ||
andriko | 0 | 1,149,125,343 | 100% | ||
olympicdragon | 0 | 648,536,512 | 100% | ||
iamleicester | 0 | 503,313,379 | 80% | ||
avidez | 0 | 813,959,075 | 50% | ||
wongi | 0 | 14,024,197,549 | 16.66% | ||
elephantium | 0 | 1,598,338,664 | 50% | ||
thu172 | 0 | 5,253,205,033 | 100% | ||
tanzil2024 | 0 | 206,928,531,934 | 100% | ||
mozzie5 | 0 | 18,313,241,632 | 100% | ||
onewolfe | 0 | 554,284,269 | 50% | ||
speko | 0 | 16,638,836,980 | 25% | ||
banzafahra | 0 | 10,221,808,985 | 50% | ||
mirroredspork | 0 | 30,665,277,631 | 100% | ||
jarmeson | 0 | 2,006,137,532 | 100% | ||
acantoni | 0 | 14,945,960,638 | 50% | ||
snaqz | 0 | 2,414,251,654 | 100% | ||
mcgilli | 0 | 998,694,560 | 100% | ||
reen213 | 0 | 2,862,692,646 | 90% | ||
marsupia | 0 | 509,172,818 | 15% | ||
lynnnguyen | 0 | 7,920,059,707 | 100% | ||
kimloan | 0 | 7,815,205,676 | 50% | ||
winnietran | 0 | 4,531,670,908 | 50% | ||
gejzep | 0 | 530,803,178 | 100% | ||
dstampede | 0 | 1,706,584,545 | 100% | ||
darknapol | 0 | 3,961,316,296 | 100% | ||
eolianpariah2 | 0 | 12,816,507,843 | 4.5% | ||
dora381 | 0 | 38,383,589,932 | 100% | ||
cogie88 | 0 | 2,557,555,524 | 50% | ||
hylene74 | 0 | 93,971,902,340 | 100% | ||
wharfagein | 0 | 50,514,810,589 | 45.4% | ||
thercek | 0 | 829,555,855 | 50% | ||
nane-qts | 0 | 3,964,412,168 | 100% | ||
sephiwolf | 0 | 463,871,157 | 7.5% | ||
almightygrim | 0 | 19,172,322,776 | 45% | ||
nikita200 | 0 | 526,192,526 | 50% | ||
marilour | 0 | 33,588,539,610 | 100% | ||
crazy-bee | 0 | 16,418,133,999 | 100% | ||
ericpso | 0 | 6,207,755,670 | 100% | ||
epicur0 | 0 | 6,435,051,839 | 100% | ||
h3m4n7 | 0 | 23,634,841,483 | 90% | ||
spiritverve | 0 | 16,126,035,430 | 100% | ||
thedoc07 | 0 | 6,809,866,682 | 50% | ||
tillmea | 0 | 692,713,817 | 100% | ||
pappyelblanco | 0 | 3,204,267,629 | 50% | ||
tydynrain | 0 | 14,799,222,766 | 10% | ||
gaposchkin | 0 | 10,432,176,977 | 100% | ||
gezellig | 0 | 2,218,218,046 | 50% | ||
almajandra | 0 | 19,127,371,550 | 100% | ||
meltysquid | 0 | 825,313,592 | 100% | ||
swearingradio | 0 | 1,822,907,446 | 45% | ||
rc-assist | 0 | 24,299,392,436 | 70% | ||
ssebasv | 0 | 107,902,399,533 | 100% | ||
dnrxgwp2021 | 0 | 1,336,886,854 | 20% | ||
kriang3teejoe | 0 | 336,139,235,700 | 100% | ||
sunnyvo | 0 | 17,582,811,303 | 50% | ||
cherute | 0 | 2,869,575,399 | 50% | ||
promokahka | 0 | 10,725,541,073 | 100% | ||
bluedevil0722 | 0 | 1,404,247,492 | 50% | ||
hyhy93 | 0 | 4,984,903,025 | 100% | ||
kaibagt | 0 | 24,095,139,319 | 100% | ||
crypto-shots | 0 | 124,406,656 | 50% | ||
crypt0gnome | 0 | 115,402,053,440 | 50% | ||
lothbrox | 0 | 3,480,555,055 | 100% | ||
huckleberrie | 0 | 201,963,036,766 | 80% | ||
zeclipse | 0 | 3,175,666,493 | 100% | ||
lamphuong | 0 | 1,988,567,138 | 50% | ||
highfist | 0 | 4,641,002,892 | 50% | ||
hoffmeister84 | 0 | 8,933,049,844 | 50% | ||
hucksbucks | 0 | 11,845,421,051 | 100% | ||
blocktunes | 0 | 1,869,875,910 | 10% | ||
ivypham | 0 | 19,192,855,813 | 100% | ||
passenger777 | 0 | 39,706,898,799 | 25% | ||
defibenji | 0 | 0 | 100% | ||
winly | 0 | 3,593,516,926 | 100% | ||
theindiankid | 0 | 32,975,033,621 | 100% | ||
studio3141 | 0 | 504,345,418 | 50% | ||
karelnt | 0 | 1,186,701,984 | 30% | ||
anhdaden146 | 0 | 650,462,928,939 | 15% | ||
der.merlin | 0 | 777,394,500 | 20% | ||
abelfotografia | 0 | 30,374,711,299 | 100% | ||
us3incanada | 0 | 3,184,786,778 | 100% | ||
leemah1 | 0 | 2,889,794,312 | 25% | ||
tgarcialvarez | 0 | 858,169,268 | 30% | ||
armasdiaze | 0 | 8,524,100,726 | 100% | ||
dusunenkalpp | 0 | 20,842,105,749 | 50% | ||
ryosai | 0 | 6,868,831,438 | 29% | ||
cryptoshots.nft | 0 | 1,031,603,340 | 100% | ||
hivecuba | 0 | 687,657,400,854 | 30% | ||
sydechan | 0 | 995,922,412,442 | 100% | ||
dalekma | 0 | 1,737,104,035 | 100% | ||
elkingplayer | 0 | 636,883,117 | 100% | ||
incantia | 0 | 797,354,067 | 70% | ||
donigarten | 0 | 1,166,510,756 | 100% | ||
moniqwashere | 0 | 4,038,431,955 | 100% | ||
archangel21 | 0 | 107,747,414,335 | 100% | ||
shawnnft | 0 | 16,490,456,755 | 10% | ||
yisusth | 0 | 64,751,990,026 | 100% | ||
plicc8 | 0 | 1,117,285,117 | 100% | ||
ipexito | 0 | 909,962,127 | 40% | ||
serpent7776 | 0 | 819,654,098 | 100% | ||
albephotos5 | 0 | 17,573,932,835 | 100% | ||
cajiro | 0 | 9,672,818,117 | 100% | ||
ricardoeloy | 0 | 554,785,868 | 15% | ||
alfazmalek02 | 0 | 535,763,649 | 100% | ||
mdasein | 0 | 6,261,180,366 | 50% | ||
fonestreet | 0 | 7,174,748,679 | 86.5% | ||
hmvf | 0 | 32,344,214,238 | 5% | ||
abouttodie | 0 | 2,038,524,730 | 50% | ||
fefe99 | 0 | 558,943,560 | 100% | ||
odessamama | 0 | 4,891,476,558 | 100% | ||
aletoalonewolf | 0 | 2,629,344,906 | 25% | ||
baboz | 0 | 56,039,981,681 | 50% | ||
franzpaulie | 0 | 43,542,820,932 | 100% | ||
youdontknowme | 0 | 1,236,353,614 | 50% | ||
mryoung1979 | 0 | 15,206,920,019 | 100% | ||
panosdada.tip | 0 | 1,887,632,612 | 100% | ||
dutchchemist | 0 | 469,136,688 | 100% | ||
drstealth | 0 | 4,883,120,511 | 100% | ||
hive-186141 | 0 | 303,687,470,765 | 100% | ||
cryptoshots.play | 0 | 0 | 10% | ||
mukadder | 0 | 71,394,753,527 | 35% | ||
llunasoul | 0 | 602,654,605 | 1.11% | ||
helloisalbani | 0 | 1,810,601,578 | 9% | ||
growandbow | 0 | 12,953,292,306 | 1.11% | ||
tzae | 0 | 730,611,131 | 100% | ||
rocco-maloney | 0 | 717,333,921 | 100% | ||
hive-117638 | 0 | 1,820,154,266 | 50% | ||
mirian-liz | 0 | 599,261,273 | 12.5% | ||
the13anarchist | 0 | 1,654,234,090 | 13% | ||
abbiek | 0 | 1,302,118,440 | 100% | ||
graciousvic | 0 | 1,323,903,376 | 16.66% | ||
incublus | 0 | 311,200,886,745 | 50% | ||
ezgicop | 0 | 7,348,443,199 | 50% | ||
gmzorn | 0 | 2,903,812,115 | 100% | ||
peak.open | 0 | 33,384,146,094 | 100% | ||
bgmoha | 0 | 4,120,289,738 | 55% | ||
xerox94 | 0 | 3,619,667,702 | 100% | ||
thoth442 | 0 | 14,012,356,032 | 50% | ||
oasiskp2 | 0 | 6,456,145,339 | 92% | ||
wellingt557 | 0 | 0 | 100% | ||
pinkchic | 0 | 884,838,785 | 2.4% | ||
salicj | 0 | 7,395,268,596 | 16% | ||
queercoin | 0 | 37,064,473,689 | 50% | ||
yeni82 | 0 | 17,336,623,380 | 100% | ||
cryptoshotsdoom | 0 | 0 | 10% | ||
daudmuhammad2022 | 0 | 446,420,098 | 100% | ||
celestegray | 0 | 31,154,656,161 | 50% | ||
fredaig | 0 | 1,013,374,622 | 10% | ||
artefactoestudio | 0 | 2,645,680,690 | 100% | ||
yzamazing | 0 | 4,595,580,660 | 40% | ||
masterfarmer | 0 | 1,587,642,443 | 100% | ||
hive-189277 | 0 | 612,355,008 | 33.33% | ||
duskobgd | 0 | 36,304,405,234 | 30% | ||
luvinlyf | 0 | 246,270,536,423 | 85% | ||
gornat | 0 | 5,158,098,755 | 30% | ||
ammy11 | 0 | 1,052,932,941 | 18.75% | ||
sarybeth | 0 | 1,795,085,385 | 12.5% | ||
akijirokoma | 0 | 2,969,115,198 | 100% | ||
wendy23 | 0 | 9,349,979,221 | 15% | ||
miztajovial | 0 | 465,650,518 | 7.5% | ||
fotlala | 0 | 8,186,366,880 | 100% | ||
ibbtammy | 0 | 147,751,910,236 | 100% | ||
denisda | 0 | 7,847,318,104 | 50% | ||
ecencypoints | 0 | 16,021,672,879 | 60% | ||
lu1sa | 0 | 11,982,296,193 | 10% | ||
dahpilot | 0 | 18,856,721,405 | 49% | ||
carlosezg86 | 0 | 2,714,930,994 | 100% | ||
gollumkp | 0 | 2,411,513,157 | 20% | ||
selflessgem | 0 | 18,250,801,024 | 100% | ||
orkangel | 0 | 762,933,899 | 20% | ||
kathajimenezr | 0 | 10,471,771,333 | 100% | ||
bemier | 0 | 60,928,632,027 | 50% | ||
faniaviera | 0 | 11,323,436,886 | 100% | ||
egbre | 0 | 680,277,173 | 15% | ||
pit3r | 0 | 3,344,192,804 | 20% | ||
y3ssi | 0 | 3,061,793,324 | 20% | ||
karina.gpt | 0 | 0 | 100% | ||
monkeymanking | 0 | 1,128,757,900 | 100% | ||
timix648 | 0 | 1,044,164,109 | 41.6% | ||
cacasa26 | 0 | 0 | 100% | ||
freiheitsammler | 0 | 212,374,714,367 | 100% | ||
unity-freedom | 0 | 1,750,141,283 | 33.33% | ||
foodchunk | 0 | 544,929,296,104 | 100% | ||
jgiordi | 0 | 378,155,741,433 | 80% | ||
tahastories1 | 0 | 692,732,323 | 7.5% | ||
les90 | 0 | 1,633,066,811 | 7.5% | ||
kawa-i-kredki | 0 | 12,855,281,888 | 100% | ||
samiwrites | 0 | 12,425,298,759 | 100% | ||
bihutnetwork | 0 | 1,523,663,188 | 50% | ||
mita3 | 0 | 1,744,026,313 | 30% | ||
samuraiscam | 0 | 343,296,195,865 | 40% | ||
lordnasty | 0 | -8,662,496,100 | -100% | ||
yummycruz1 | 0 | 4,159,878,083 | 100% | ||
literal | 0 | 94,399,298,584 | 100% | ||
hive-lu | 0 | 115,683,869,283 | 14.44% | ||
edeyglezsosa | 0 | 1,564,504,712 | 6% | ||
yale95reyra | 0 | 1,776,922,188 | 15% | ||
terra.sinkhole | 0 | 43,109,792,966 | 100% | ||
linux-software | 0 | 0 | 100% | ||
reyn-is-chillin | 0 | 728,568,566 | 50% | ||
btcyberpunk | 0 | 750,936,485 | 30% | ||
hivebeecon | 0 | 11,973,840,509 | 100% | ||
riseofthepixels | 0 | 12,505,194,071 | 100% | ||
thebeedevs | 0 | 50,911,194,783 | 100% | ||
mdrguez | 0 | 39,504,586,980 | 100% | ||
madilyn02 | 0 | 25,153,751,087 | 100% | ||
gabriel.riol | 0 | 848,652,983 | 100% | ||
axobtc | 0 | 3,808,164,634 | 100% | ||
rociopmz | 0 | 2,668,843,153 | 100% | ||
genesisledger | 0 | 30,292,550,560 | 100% | ||
alycha | 0 | 10,704,919,671 | 100% | ||
samstreamer | 0 | 2,787,197,823 | 100% | ||
dbfbfutures | 0 | 17,197,531,935 | 100% | ||
ebass | 0 | 18,082,877,116 | 100% | ||
bibana | 0 | 1,641,765,146 | 100% | ||
pixels.vault | 0 | 553,038,872,196 | 100% | ||
hive-193566 | 0 | 27,119,036,436 | 100% | ||
dootilda | 0 | 0 | 100% | ||
rsvlogger | 0 | 145,491,211 | 100% | ||
justinmora | 0 | 20,439,539,134 | 100% | ||
itz.inno | 0 | 11,832,362,264 | 40% | ||
dantrin | 0 | 210,147,444,008 | 100% | ||
encuentro | 0 | 10,335,333,849 | 100% | ||
pollodlp | 0 | 2,533,022,149 | 100% | ||
frgnholding | 0 | 59,768,133,411 | 100% | ||
blkchn | 0 | 29,015,130,536 | 60% | ||
preshzinosongz | 0 | 0 | 100% | ||
daryh | 0 | 37,405,822,612 | 100% | ||
spidersilk | 0 | 459,986,412 | 50% | ||
lolz.byte | 0 | 0 | 100% | ||
riyat | 0 | 59,102,515,074 | 100% | ||
dandelion24 | 0 | 3,319,805,198 | 80% | ||
patricma | 0 | 2,103,643,799 | 30% | ||
lourica | 0 | 696,496,076 | 50% | ||
brayanmcy | 0 | 620,473,982 | 100% | ||
bananaklatbarat | 0 | 58,108,311,814 | 100% | ||
karoly | 0 | 23,065,573,749 | 100% | ||
helicreamarket | 0 | 30,592,801,715 | 100% | ||
mholldy08 | 0 | 5,068,386,427 | 100% | ||
frizzy97 | 0 | 0 | 100% | ||
hive-188753 | 0 | 1,308,702,254 | 50% | ||
djccdigital | 0 | 3,782,382,205 | 100% | ||
profwhitetower | 0 | 0 | 100% | ||
tecnotronics | 0 | 30,273,444,040 | 100% | ||
andres0908 | 0 | 4,465,799,582 | 100% | ||
soyernesto | 0 | 2,614,852,585 | 15% | ||
picazzy005 | 0 | 694,203,737 | 26% | ||
joseph2014 | 0 | 1,837,468,027 | 18% | ||
porqpin | 0 | 755,088,229 | 70% | ||
avataroflife | 0 | 704,581,715 | 100% | ||
lilkista | 0 | 4,614,719,152 | 100% | ||
arieswilly | 0 | 0 | 100% | ||
franco10 | 0 | 756,384,461 | 7.5% | ||
sw-kleymer | 0 | 0 | 100% | ||
mama21 | 0 | 10,028,141,896 | 100% | ||
diannever | 0 | 491,002,746 | 100% | ||
lilkistb | 0 | 4,070,391,921 | 100% | ||
tinamccabe | 0 | 1,926,669,934 | 72% | ||
dianypds | 0 | 493,350,599 | 50% | ||
kayumanggi | 0 | 3,819,277,933 | 100% | ||
dayaperez | 0 | 0 | 100% | ||
bijoykhan2005 | 0 | 578,581,415,290 | 100% | ||
maelad5 | 0 | 0 | 100% | ||
joel17 | 0 | 0 | 100% | ||
overclocked | 0 | 2,921,201,933 | 100% |
Hello, I am a newbie here. I might not really understand what's going on coz I'm just a new member but all I can say and hope it's help. Whatever happened or change, me and myself would accept it. I know it has a reason why some things need to change or upgrade. Thank you 😊
author | annloro |
---|---|
permlink | re-blocktrades-spfvji |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.12.6","image":[],"users":[]} |
created | 2025-01-02 02:14:06 |
last_update | 2025-01-02 02:14:06 |
depth | 1 |
children | 0 |
last_payout | 2025-01-09 02:14: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 | 274 |
author_reputation | 1,366,131,544 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,642,936 |
net_rshares | 0 |
# Your post is a masterpiece 🎨 # You only look human. Unlock your super powers. [Aquarius Academy](https://aquarius.academy) 🐬
author | aquarius.academy |
---|---|
permlink | re-10th-update-of-2024-api-node-software-release-in-dec-hardfork-tentatively-set-for-q1-2025-20250518t121912z |
category | hive-139531 |
json_metadata | "{"app": "beem/0.24.19"}" |
created | 2025-05-18 12:19:12 |
last_update | 2025-05-18 12:19:12 |
depth | 1 |
children | 0 |
last_payout | 2025-05-25 12:19: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 | 128 |
author_reputation | -2,178,513,984,346 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,806,019 |
net_rshares | 0 |
Have a nice day my friend 🥰
author | arieswilly |
---|---|
permlink | re-blocktrades-20241222t61031176z |
category | hive-139531 |
json_metadata | {"tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/3.2.0-vision","format":"markdown+html"} |
created | 2024-12-21 23:10:33 |
last_update | 2024-12-21 23:10:33 |
depth | 1 |
children | 0 |
last_payout | 2024-12-28 23:10: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 | 27 |
author_reputation | 164,585,388,272,058 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,389,411 |
net_rshares | 0 |
Thanks for the BlockTrades update! The decision to delay the hardfork until Q1 2025 makes sense, given the need for thorough Hive API node upgrades. It's good to see a focus on ensuring a smooth and stable release. Looking forward to seeing the API node software release in December!
author | cheryl291021 |
---|---|
permlink | re-blocktrades-spl9bk |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.12.6","image":[],"users":[]} |
created | 2025-01-04 23:59:45 |
last_update | 2025-01-04 23:59:45 |
depth | 1 |
children | 0 |
last_payout | 2025-01-11 23:59: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 | 286 |
author_reputation | -4,332,807,445,334 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,721,657 |
net_rshares | 0 |
Good to hear about the BlockTrades update and the planned API node software release! Prioritizing a stable upgrade process is key. Thanks for the transparency and keeping the community informed. I'll be watching for the hardfork in Q1 2025.
author | cheryl291021 |
---|---|
permlink | re-blocktrades-spl9hv |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.12.6","image":[],"users":[]} |
created | 2025-01-05 00:03:33 |
last_update | 2025-01-05 00:03:33 |
depth | 1 |
children | 0 |
last_payout | 2025-01-12 00:03: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 | 243 |
author_reputation | -4,332,807,445,334 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,721,714 |
net_rshares | 0 |
Another great update from BlockTrades! The decision to delay the hardfork to Q1 2025 shows a commitment to quality and stability. Thanks for keeping us informed!
author | cheryl291021 |
---|---|
permlink | re-blocktrades-spl9vp |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.12.6","image":[],"users":[]} |
created | 2025-01-05 00:11:51 |
last_update | 2025-01-05 00:11:51 |
depth | 1 |
children | 0 |
last_payout | 2025-01-12 00:11: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 | 162 |
author_reputation | -4,332,807,445,334 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,721,825 |
net_rshares | 0 |
This is a very detailed and informative update on the development of Hive. It's great to see the progress being made with the HAF API node software suite, including the optimized block log splitting and the improvements to Hivemind. I'm particularly interested in the progress on the transaction signing algorithms and the rewrite of the 2nd layer lite accounts. It seems like a lot of work is going into making Hive more robust and efficient. I'm curious to see how the hardfork will affect the user experience and what new features will be introduced. Thanks for the update!
author | cheryl291021 |
---|---|
permlink | re-blocktrades-spsaiw |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.12.6","image":[],"users":[]} |
created | 2025-01-08 19:09:00 |
last_update | 2025-01-08 19:09:00 |
depth | 1 |
children | 0 |
last_payout | 2025-01-15 19:09: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 | 579 |
author_reputation | -4,332,807,445,334 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,830,747 |
net_rshares | 0 |
!PIZZA
author | danzocal |
---|---|
permlink | re-blocktrades-sneflg |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.11.2","image":[],"users":[]} |
created | 2024-11-23 10:24:57 |
last_update | 2024-11-23 10:24:57 |
depth | 1 |
children | 0 |
last_payout | 2024-11-30 10:24: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 | 6 |
author_reputation | 12,432,803,008,396 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,651,857 |
net_rshares | 0 |
I had just been saying to someone how much I appreciate your detailed reports of what you are doing for the chain, but I do not think I have ever said it to you -- thank you.
author | deeanndmathews |
---|---|
permlink | re-blocktrades-snc908 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.11.2","image":[],"users":[]} |
created | 2024-11-22 06:07:21 |
last_update | 2024-11-22 06:07:21 |
depth | 1 |
children | 0 |
last_payout | 2024-11-29 06:07:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.056 HBD |
curator_payout_value | 0.057 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 174 |
author_reputation | 970,885,901,700,700 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,625,535 |
net_rshares | 300,470,222,876 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
amirl | 0 | 300,470,222,876 | 100% | ||
linux-software | 0 | 0 | 100% |
I reminisce about the old days of MIRA :D Hive has come a long way. Good stuff with the development.
author | drakos |
---|---|
permlink | snc546 |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2024-11-22 04:43:18 |
last_update | 2024-11-22 04:43:18 |
depth | 1 |
children | 1 |
last_payout | 2024-11-29 04:43:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.060 HBD |
curator_payout_value | 0.060 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 100 |
author_reputation | 112,280,226,665,329 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,624,752 |
net_rshares | 307,335,333,176 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
amirl | 0 | 306,589,377,132 | 100% | ||
linux-software | 0 | 0 | 100% | ||
endhivewatchers | 0 | 745,956,044 | 5% |
Good old MIRA: the best solution when you want to take a month to sync :-)
author | blocktrades |
---|---|
permlink | sndam0 |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2024-11-22 19:39:39 |
last_update | 2024-11-22 19:39:39 |
depth | 2 |
children | 0 |
last_payout | 2024-11-29 19:39: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 | 74 |
author_reputation | 1,284,881,852,510,457 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,641,451 |
net_rshares | -8,662,775,361 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lordnasty | 0 | -8,662,775,361 | -100% | ||
linux-software | 0 | 0 | 100% |
Good option for all, for those like me who need learn more about and use it right. Too many web3 content to learn quick, time us running!!
author | fonestreet |
---|---|
permlink | re-blocktrades-20241121t221422255z |
category | hive-139531 |
json_metadata | {"tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/3.2.0-vision","format":"markdown+html"} |
created | 2024-11-22 02:14:21 |
last_update | 2024-11-22 02:14:21 |
depth | 1 |
children | 0 |
last_payout | 2024-11-29 02:14: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 | 139 |
author_reputation | 161,925,097,927,635 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,623,311 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
linux-software | 0 | 0 | 100% |
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-1732503650 |
category | hive-139531 |
json_metadata | {"image":["https://hivebuzz.me/notify.t6.png"]} |
created | 2024-11-25 03:00:51 |
last_update | 2024-11-25 03:00:51 |
depth | 1 |
children | 0 |
last_payout | 2024-12-02 03:00: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 | 580 |
author_reputation | 369,328,458,300,704 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,695,524 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abbak7 | 0 | 0 | -100% |
I have read your last several reports in an effort to try to catch up on what is going on with the block size. Am I reading it correctly that the block size will be increased to two megabytes? Also, thank you!
author | jacobpeacock |
---|---|
permlink | re-blocktrades-20241121t201920712z |
category | hive-139531 |
json_metadata | {"tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/4.0.1-vision","format":"markdown+html"} |
created | 2024-11-22 01:19:21 |
last_update | 2024-11-22 01:19:21 |
depth | 1 |
children | 3 |
last_payout | 2024-11-29 01:19:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.268 HBD |
curator_payout_value | 0.267 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 209 |
author_reputation | 324,019,923,266,426 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,622,811 |
net_rshares | 1,352,953,801,714 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mes | 0 | 1,352,953,801,714 | 100% | ||
linux-software | 0 | 0 | 100% | ||
endhivewatchers | 0 | 0 | -0.01% |
No, its not that it will be definitely be increased to 2MB, it's just that it is theoretically possible for it to be increased to 2MB: the block size is a parameter voted for by the witnesses and the max allowed size they can vote for is 2MB. Currently they are voting for 64K size blocks and this is plenty of space for now, IMO. But we want to be sure there are no issues in the future if witnesses vote for a larger block size (this would become necessary if Hive starts having to process a lot more data), so we're doing testing related to that now. A little while back, we began developing 'flood testing' code to test how the Hive network will behave under much, much larger transaction loading than we currently have. We recently used this flood code to ensure that increasing the allowable transaction expiration time to 24 hours would not open up any vulnerabilities for the network. Now we are using it to test for issues that might occur if blocks got increased to 2MB (not surprisingly we've seen some issues since this was never tested before under this kind of heavy loading condition, but they need more analysis). Just FYI, I think one of our devs is going to write more about this code and what's he found in a bit.
author | blocktrades |
---|---|
permlink | snc2cm |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2024-11-22 03:43:51 |
last_update | 2024-11-22 03:45:27 |
depth | 2 |
children | 2 |
last_payout | 2024-11-29 03:43:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.340 HBD |
curator_payout_value | 0.340 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,241 |
author_reputation | 1,284,881,852,510,457 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,624,191 |
net_rshares | 1,710,074,192,355 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
acidyo | 0 | 947,988,372,667 | 10% | ||
oaldamster | 0 | 147,602,380,752 | 100% | ||
holbein81 | 0 | 3,522,103,106 | 10% | ||
yousafharoonkhan | 0 | 36,156,532,365 | 33% | ||
engrave | 0 | 171,261,348,534 | 2% | ||
jacobpeacock | 0 | 10,813,358,836 | 100% | ||
bluerobo | 0 | 401,393,429,977 | 100% | ||
lordnasty | 0 | -8,663,333,882 | -100% | ||
linux-software | 0 | 0 | 100% | ||
endhivewatchers | 0 | 0 | -0.01% |
Thanks for the clarification on the block size. It's good to know that you're proactively testing for potential issues with larger blocks, even though a 2MB increase isn't currently planned. This proactive approach is essential for ensuring the scalability and stability of Hive in the future, especially as the network grows and handles more data. I'm also interested in the flood testing code you mentioned and look forward to reading more about it from your devs. It's fascinating to see how you're simulating heavy transaction loads to identify potential vulnerabilities and optimize the network's performance. Keep up the great work!@blocktraids
author | cheryl291021 |
---|---|
permlink | re-blocktrades-spsaog |
category | hive-139531 |
json_metadata | {"tags":"hive-139531"} |
created | 2025-01-08 19:12:18 |
last_update | 2025-01-08 19:13:24 |
depth | 3 |
children | 0 |
last_payout | 2025-01-15 19:12: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 | 655 |
author_reputation | -4,332,807,445,334 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,830,798 |
net_rshares | 0 |
That all makes sense. I had seen the part about it being able to be voted on by Witnesses... but was not sure if that meant that it would be getting rolled out soon or what. Appreciate the detailed response.
author | jacobpeacock |
---|---|
permlink | re-blocktrades-20241121t225358447z |
category | hive-139531 |
json_metadata | {"tags":["ecency"],"app":"ecency/4.0.1-vision","format":"markdown+html"} |
created | 2024-11-22 03:54:00 |
last_update | 2024-11-22 03:54:00 |
depth | 3 |
children | 0 |
last_payout | 2024-11-29 03:54:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 207 |
author_reputation | 324,019,923,266,426 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,624,306 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
linux-software | 0 | 0 | 100% |
FYI since yours is the only vote that matters. @hivewatchers is targeting a weekly contest that has been running on Hive for 7+ years. https://peakd.com/hive-150329/@improv/punday-monday-386-happy-new-year#@hivewatchers/spbvbl Bit out of scope, don't you think?
author | josephsavage |
---|---|
permlink | re-blocktrades-spd44s |
category | hive-139531 |
json_metadata | {"tags":"hive-139531"} |
created | 2024-12-31 14:27:00 |
last_update | 2024-12-31 14:27:18 |
depth | 1 |
children | 0 |
last_payout | 2025-01-07 14:27: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 | 262 |
author_reputation | 40,260,007,396,591 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,607,022 |
net_rshares | 0 |
<div class="pull-left"><div class="text-justify"> #### Reference Python Server Response Times  </div></div> <div class="pull-right"><div class="text-justify"> #### PostgREST Server Response Times  </div></div> --- ### Comparison Of Average Response Times: Python Vs PostgREST 
author | louis88 |
---|---|
permlink | re-blocktrades-sndiqz |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.11.2","image":["https://files.peakd.com/file/peakd-hive/louis88/23tmoPK3sFqVKoBypyKYmoyBF8BsTMdhJxnK9z716RTCpnfxWe33psUyS8oMpwKK6f72d.png","https://files.peakd.com/file/peakd-hive/louis88/23viTmiapeoithvjmXNGWapRvdWBQ8y7TwbTWXTKe8x49J98v7DN1gbSrgy4gfBeLLYh3.png","https://files.peakd.com/file/peakd-hive/louis88/23wgmaxnzwUsgDw5JiEtEpawcgHrL1Z9gja14JXDJ9DVUjs9cD6UXCeqGC7vyMrnqfchT.png"],"users":[]} |
created | 2024-11-22 22:35:24 |
last_update | 2024-11-22 22:35:24 |
depth | 1 |
children | 0 |
last_payout | 2024-11-29 22:35:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.062 HBD |
curator_payout_value | 0.063 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 695 |
author_reputation | 1,180,986,850,979,197 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,643,956 |
net_rshares | 319,137,192,538 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
amirl | 0 | 319,137,192,538 | 100% | ||
linux-software | 0 | 0 | 100% |
Thank you for the update!🙏
author | maelad5 |
---|---|
permlink | re-blocktrades-202515t175144810z |
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-05 16:51:48 |
last_update | 2025-01-05 16:51:48 |
depth | 1 |
children | 0 |
last_payout | 2025-01-12 16:51: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 | 26 |
author_reputation | 6,856,343,703,257 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,738,487 |
net_rshares | 0 |
One day left to pass Ecency Proposal and continue open source development! 
author | melinda010100 |
---|---|
permlink | re-blocktrades-2025320t7132626z |
category | hive-139531 |
json_metadata | {"image":["https://images.ecency.com/DQmTUQH9nzUP1gpJfLUbgV82JxRa6hEVYwZkX3HqrtL65Z7/1742472718289.gif"],"image_ratios":[4.929166666666666],"type":"comment","tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/3.3.0-mobile","format":"markdown+html"} |
created | 2025-03-20 12:13:00 |
last_update | 2025-03-20 12:13:00 |
depth | 1 |
children | 0 |
last_payout | 2025-03-27 12: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 | 174 |
author_reputation | 1,053,695,681,394,477 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,554,878 |
net_rshares | 0 |
Hmmm, great improvement !ALIVE
author | oasiskp2 |
---|---|
permlink | re-blocktrades-20241122t1859823z |
category | hive-139531 |
json_metadata | {"type":"comment","tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/3.2.0-mobile","format":"markdown+html"} |
created | 2024-11-22 00:09:03 |
last_update | 2024-11-22 00:09:03 |
depth | 1 |
children | 0 |
last_payout | 2024-11-29 00:09: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 | 31 |
author_reputation | 60,534,570,268,109 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,622,106 |
net_rshares | 0 |
<center>PIZZA! $PIZZA slices delivered: @danzocal<sub>(2/10)</sub> tipped @blocktrades </center>
author | pizzabot |
---|---|
permlink | re-10th-update-of-2024-api-node-software-release-in-dec-hardfork-tentatively-set-for-q1-2025-20241123t102531z |
category | hive-139531 |
json_metadata | "{"app": "pizzabot"}" |
created | 2024-11-23 10:25:30 |
last_update | 2024-11-23 10:25:30 |
depth | 1 |
children | 0 |
last_payout | 2024-11-30 10:25: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 | 101 |
author_reputation | 7,539,280,605,993 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,651,870 |
net_rshares | 0 |
I've been very disappointed in the Replies that I don't seem to get from my readers... Perhaps if I was able to pass out bigger up-votes, people would pay more attention to what I write, and maybe even comment more... I've always been curious why some people get huge up-votes and others get none at all... Should I start looking for Delegators, or is that a lost cause...???
author | pocketechange |
---|---|
permlink | spj6po |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2025-01-03 21:08:09 |
last_update | 2025-01-03 21:08:09 |
depth | 1 |
children | 2 |
last_payout | 2025-01-10 21:08: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 | 378 |
author_reputation | 230,440,157,491,045 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,690,980 |
net_rshares | 0 |
The best way to get replies is to ask questions that people want to answer. Then they will feel compelled to reply.
author | blocktrades |
---|---|
permlink | spl5lf |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2025-01-04 22:39:15 |
last_update | 2025-01-04 22:39:15 |
depth | 2 |
children | 1 |
last_payout | 2025-01-11 22:39: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 | 115 |
author_reputation | 1,284,881,852,510,457 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,719,547 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cheryl291021 | 0 | 0 | 2% |
Thanks for the update, @blocktrades. Regarding your comment about asking engaging questions, what kind of questions do you find usually get the best response in this community?
author | cheryl291021 |
---|---|
permlink | re-blocktrades-sprbm5 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.12.6","image":[],"users":["blocktrades"]} |
created | 2025-01-08 06:34:57 |
last_update | 2025-01-08 06:34:57 |
depth | 3 |
children | 0 |
last_payout | 2025-01-15 06:34: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 | 177 |
author_reputation | -4,332,807,445,334 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,812,966 |
net_rshares | 0 |
Thanks for the information I really appreciate it
author | ubglo17 |
---|---|
permlink | re-blocktrades-2025130t195425768z |
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:54:27 |
last_update | 2025-01-30 18:54:27 |
depth | 1 |
children | 0 |
last_payout | 2025-02-06 18:54: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 | 51 |
author_reputation | 3,091,671,007,705 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 140,430,278 |
net_rshares | 0 |
> Porting the code for preventing accidental leakage of private keys to Wax’s transaction construction code. Accidental leakage of private keys? Sorry, but how is that even possible? Should we worry? How easily a hacker can intercept a private key in this case? I am grateful and thankful about what you are doing for the blockchain, it is really a huge work, but security should come first and foremost, and the accidental leakage of private keys should not happen under any circumstances.
author | xplosive |
---|---|
permlink | re-blocktrades-20241123t22124415z |
category | hive-139531 |
json_metadata | {"type":"comment","tags":["hive-139531","hive","blockchain","software","blocktrades"],"app":"ecency/3.2.0-mobile","format":"markdown+html"} |
created | 2024-11-23 22:12:45 |
last_update | 2024-11-23 22:12:45 |
depth | 1 |
children | 3 |
last_payout | 2024-11-30 22:12: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 | 495 |
author_reputation | 207,263,513,264,024 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,668,066 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
linux-software | 0 | 0 | 100% |
This is protection against "user error". In many Hive applications, a user can send a transfer or some form of custom_json, and sometimes they don't understand the instructions of an app, and accidentally put a private key into their actual transaction. Most commonly this is done when someone puts a private key into a memo field. This is pretty rate, but it does happen, and then everyone can see their private key (hence we call it leaking a private key). We're designing Wax so that any app that uses it to construct transactions will automatically get a check that detects such leaks and prevents these transactions from being broadcast.
author | blocktrades |
---|---|
permlink | snh5y8 |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2024-11-24 21:49:21 |
last_update | 2024-11-24 21:49:21 |
depth | 2 |
children | 2 |
last_payout | 2024-12-01 21:49:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.200 HBD |
curator_payout_value | 0.200 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 645 |
author_reputation | 1,284,881,852,510,457 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,691,194 |
net_rshares | 996,495,879,540 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
xplosive | 0 | 47,151,604,039 | 100% | ||
cybercity | 0 | 949,344,275,501 | 100% | ||
linux-software | 0 | 0 | 100% | ||
endhivewatchers | 0 | 0 | -0.01% |
Amazing 🥲
author | cybercity |
---|---|
permlink | re-blocktrades-snhg9l |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2024.11.2"} |
created | 2024-11-25 01:32:09 |
last_update | 2024-11-25 01:32:09 |
depth | 3 |
children | 0 |
last_payout | 2024-12-02 01:32: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 | 10 |
author_reputation | 6,397,282,540,015 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,694,682 |
net_rshares | 0 |
So there are no real leaks technically, but the users are publishing their own private keys with the custom_json transactions by their own mistake, and the goal is to prevent these transactions to protect the accounts of the users. Now I understand. Thank you for the reply.
author | xplosive |
---|---|
permlink | re-blocktrades-20241124t22010848z |
category | hive-139531 |
json_metadata | {"type":"comment","tags":["ecency"],"app":"ecency/3.2.0-mobile","format":"markdown+html"} |
created | 2024-11-24 22:00:15 |
last_update | 2024-11-24 22:00:15 |
depth | 3 |
children | 0 |
last_payout | 2024-12-01 22:00: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 | 276 |
author_reputation | 207,263,513,264,024 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,691,319 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
linux-software | 0 | 0 | 100% |
super report, every report bring boom boom motivation, great work, all team, superb effort, i have one question, my reputation is not increasing, there is any issue or bug facing, or any other, my reputation is not increasing, or hope respected team, expert will guide me, i know my question is not related to report, hope respected team will guide, love you all , boom boom hive
author | yousafharoonkhan |
---|---|
permlink | sncpch |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2024-11-22 12:00:18 |
last_update | 2024-11-22 12:00:18 |
depth | 1 |
children | 2 |
last_payout | 2024-11-29 12:00:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.060 HBD |
curator_payout_value | 0.061 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 380 |
author_reputation | 596,092,580,401,593 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,629,632 |
net_rshares | 312,788,895,232 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
amirl | 0 | 312,788,895,232 | 100% | ||
linux-software | 0 | 0 | 100% |
Actually, it is increasing even now, but the web sites don't show the exact reputation value, only the integer portion. Reputation is on an exponential scale, so the higher your reputation goes, the harder it is to increase it visibly. Yours is already quite high, so it will take a while to see the increase on most web sites.
author | blocktrades |
---|---|
permlink | sndajk |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2024-11-22 19:38:12 |
last_update | 2024-11-22 19:38:12 |
depth | 2 |
children | 1 |
last_payout | 2024-11-29 19:38: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 | 327 |
author_reputation | 1,284,881,852,510,457 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,641,417 |
net_rshares | 18,801,730,229 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yousafharoonkhan | 0 | 27,464,924,481 | 33% | ||
lordnasty | 0 | -8,663,194,252 | -100% | ||
linux-software | 0 | 0 | 100% |
thank you so much respected for instant guide, and information in regards of my point .
author | yousafharoonkhan |
---|---|
permlink | sndqpu |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2024-11-23 01:27:30 |
last_update | 2024-11-23 01:27:30 |
depth | 3 |
children | 0 |
last_payout | 2024-11-30 01:27: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 | 87 |
author_reputation | 596,092,580,401,593 |
root_title | "10th update of 2024: API node software release in Dec, hardfork tentatively set for Q1 2025" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,646,340 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
linux-software | 0 | 0 | 100% |