Today I'm releasing two simple HAF-powered dashboards that some may be interested in as it has been a hot topic of discussion lately. These pages are built with Bootstrap 5 and may be a precursor to a more comprehensive personal dashboard that I (or someone else) may wish to build later. <hr> # Curation Summary <center></center> Curation has been widely discussed recently, besides the [krampus co-efficient](/hive-111111/@techcoderx/thoughts-on-krampus-ratio-stake-shaming-and-accountability), another metric being used by some is the voting CSI score. In short, it shows how spread out their curation activities are taking weights of upvotes and the number of unique accounts voted in the last 7 days, higher the better. This metric was taken from [Hivetasks](https://hivetasks.com) (forked from ~~Steem~~World) and adopted for the curation summary dashboard. The first step was to determine the voting CSI formula, which can be found [here](https://github.com/fernandosoder/Hivetasks/blob/master/res/js/sw.out.min.js#L11895-L11923). This was the part many could not find, however it took only 5 minutes to search and around 15 minutes to decipher what some variables mean. Next step was to obtain the data required to calculate the score. Hivetasks calls account history API for the last 7 days to construct the source data which is not the most efficient way. As this isn't something standard APIs currently provide, I took advantage of having access to a HAF database with to query the voting data more efficiently. The query requires `hivemind_app` to be synced. >! [Click to reveal function] >```sql >CREATE OR REPLACE FUNCTION witstats_api.outgoing_votes_summary(voter VARCHAR, last_days INT, direction INT) >RETURNS jsonb AS $function$ >BEGIN > IF (SELECT hive.is_app_in_sync('hivemind_app') IS FALSE) THEN > RAISE EXCEPTION 'hivemind_app is not in sync'; > END IF; > IF last_days < 1 OR last_days > 30 THEN > RAISE EXCEPTION 'last_days must be between 1 and 30'; > ELSIF direction != 1 AND direction != 2 THEN > RAISE EXCEPTION 'direction must be 1 (upvote) or 2 (downvote)'; > ELSIF voter IS NULL OR LENGTH(voter) = 0 THEN > RAISE EXCEPTION 'invalid voter'; > END IF; > RETURN ( > WITH summary AS ( > SELECT aa.name as author, SUM(vote_percent) as vote_weight_agg, COUNT(v.author_id) as vote_count > FROM hivemind_app.hive_votes v > JOIN hivemind_app.hive_accounts aa ON > aa.id = v.author_id > JOIN hivemind_app.hive_accounts va ON > va.id = v.voter_id > WHERE va.name = voter AND v.last_update > NOW()::TIMESTAMP - (last_days * interval '1 day') AND (SELECT CASE WHEN direction = 1 THEN vote_percent > 0 ELSE vote_percent < 0 END) > GROUP BY aa.name > ORDER BY vote_count DESC, vote_weight_agg DESC > ) > SELECT jsonb_agg(jsonb_build_object( > 'author', s.author, > 'weights', s.vote_weight_agg, > 'count', s.vote_count > )) > FROM summary s > ); >END $function$ >LANGUAGE plpgsql STABLE; >``` The page is available [here](https://techcoderx.com/curation). You may append a `user` query parameter to the URL to specify the username on initial page load, [like this](https://techcoderx.com/curation?user=acidyo). Page source code may be found [here](https://github.com/techcoderx/witness-reward-stats/blob/main/frontend/curation/index.html). <hr> # Witness Reward Stats  This is for those that want to know producer rewards and number of blocks produced of a witness over a certain period of time. The data goes all the way back to the genesis block or the first block the witness has ever produced, whichever is later. This does not include producer rewards paid in liquid HIVE which may be the case prior to block 864,000. The chart is available at daily, monthly and yearly intervals. Total HIVE rewards displayed here are converted from VESTS at time of block production. The page is available [here](https://techcoderx.com/witreward). Just like curation summary, you may also append a `user` query parameter to the URL to specify the username on initial page load, [like this](https://techcoderx.com/witreward?user=arcange). Source code of the HAF app and frontend may be found [here](https://github.com/techcoderx/witness-reward-stats).
author | techcoderx |
---|---|
permlink | simple-stats-dashboard-for-curators-and-witnesses |
category | hive-139531 |
json_metadata | "{"app":"peakd/2025.6.1","format":"markdown","description":"Summary of curation activity and witness rewards.","tags":["analytics","stats","curation","witness","dev","haf","dashboard"],"users":["techcoderx"],"image":["https://files.peakd.com/file/peakd-hive/techcoderx/23uQG62iUwa19AuteMQt3chTfYi5B9Byav5p1ns3bzSwmwBKLozXrMpvEhpenUjotJRFM.png","https://files.peakd.com/file/peakd-hive/techcoderx/23tbM6Eu4V2CYZmQqAYKcj6ysv6MFCzyrkjW3iMV5mLWrMMwHRShJoV4tUBuKSkPg9akb.png"]}" |
created | 2025-06-09 15:26:54 |
last_update | 2025-06-09 15:26:54 |
depth | 0 |
children | 12 |
last_payout | 2025-06-16 15:26:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 6.158 HBD |
curator_payout_value | 6.121 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4,530 |
author_reputation | 47,797,995,910,732 |
root_title | "Simple stats dashboard for curators and witnesses" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 143,262,016 |
net_rshares | 40,837,011,803,428 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
roelandp | 0 | 47,029,938,635 | 4.2% | ||
neopatriarch | 0 | 1,957,944,120 | 50% | ||
jacor | 0 | 2,647,404,088 | 6% | ||
jeffjagoe | 0 | 397,758,960 | 0.6% | ||
fiveboringgames | 0 | 696,227,543 | 12% | ||
steevc | 0 | 2,896,754,198,123 | 80% | ||
alexisvalera | 0 | 702,982,236 | 6% | ||
justinw | 0 | 15,310,836,469 | 3.51% | ||
walterjay | 0 | 80,804,518,568 | 3.6% | ||
humanearl | 0 | 2,329,987,266 | 80% | ||
amariespeaks | 0 | 497,523,920 | 4.26% | ||
shermanedwards | 0 | 719,518,539 | 50% | ||
yiyi.maiola | 0 | 617,971,244 | 8.4% | ||
torkot | 0 | 2,158,285,192 | 6% | ||
borislavzlatanov | 0 | 26,862,859,650 | 100% | ||
detlev | 0 | 40,877,691,708 | 1.8% | ||
batman0916 | 0 | 968,036,982 | 5.33% | ||
eliel | 0 | 4,527,242,653 | 6% | ||
enginewitty | 0 | 50,842,986,561 | 50% | ||
rt395 | 0 | 1,676,131,272 | 2.5% | ||
newsflash | 0 | 661,132,529 | 9% | ||
fredrikaa | 0 | 2,785,634,316,631 | 100% | ||
rawselectmusic | 0 | 2,360,800,371 | 6% | ||
juancar347 | 0 | 52,327,573,921 | 6% | ||
jayna | 0 | 18,540,876,188 | 2.4% | ||
guchtere | 0 | 594,175,837 | 5.33% | ||
joeyarnoldvn | 0 | 522,758,288 | 1.68% | ||
decomoescribir | 0 | 1,958,874,390 | 6% | ||
livinguktaiwan | 0 | 3,963,740,772,770 | 100% | ||
st3llar | 0 | 5,798,929,875 | 25% | ||
diegoameerali | 0 | 623,237,923 | 3.6% | ||
felt.buzz | 0 | 14,544,636,032 | 2.4% | ||
abnerpantoja | 0 | 552,727,014 | 6% | ||
sanjeevm | 0 | 2,032,905,001,644 | 40% | ||
ocd | 0 | 893,755,455,419 | 12% | ||
francosteemvotes | 0 | 639,163,743 | 4.8% | ||
martibis | 0 | 15,860,707,419 | 100% | ||
vimukthi | 0 | 58,166,221 | 10% | ||
zyx066 | 0 | 2,516,220,440 | 3.6% | ||
etblink | 0 | 2,646,534,937 | 0.3% | ||
killerwhale | 0 | 22,415,252,148 | 50% | ||
gray00 | 0 | 917,278,564 | 100% | ||
niallon11 | 0 | 759,744,830,115 | 100% | ||
rumplestiltskin | 0 | 15,038,246,342 | 50% | ||
aidefr | 0 | 870,405,571 | 3.84% | ||
artlover | 0 | 1,507,319,700 | 100% | ||
drax | 0 | 7,618,141,648 | 1.44% | ||
cesinfenianos | 0 | 549,883,592 | 6% | ||
taskmaster4450 | 0 | 39,122,000,713 | 2.13% | ||
silvergoldbotty | 0 | 45,492,849,326 | 50% | ||
jlsplatts | 0 | 26,212,356,985 | 2% | ||
sku77-poprocks | 0 | 2,612,753,460 | 100% | ||
bigdizzle91 | 0 | 1,234,383,464 | 6% | ||
steemitcomics | 0 | 737,791,176 | 50% | ||
silasvogt | 0 | 850,013,443 | 50% | ||
zoidsoft | 0 | 85,932,971,050 | 100% | ||
anomallies | 0 | 5,215,821,828 | 50% | ||
abbak7 | 0 | 404,021,664,993 | 24% | ||
eonwarped | 0 | 8,471,858,886 | 3.6% | ||
emrebeyler | 0 | 98,741,281,166 | 1.2% | ||
anli | 0 | 1,979,954,594 | 12% | ||
mytechtrail | 0 | 20,232,031,414 | 15% | ||
robotics101 | 0 | 1,440,564,008 | 4.8% | ||
lpv | 0 | 705,570,584 | 2.16% | ||
steembasicincome | 0 | 192,447,838,939 | 2.35% | ||
straykat | 0 | 514,535,847 | 6% | ||
tomatom | 0 | 1,145,506,855 | 6% | ||
adelepazani | 0 | 7,691,641,651 | 2.4% | ||
spydo | 0 | 24,433,010,997 | 6% | ||
r00sj3 | 0 | 562,256,290 | 6% | ||
deepresearch | 0 | 897,296,434,622 | 21% | ||
for91days | 0 | 1,105,765,884 | 0.9% | ||
juecoree | 0 | 527,724,059 | 6% | ||
carsonroscoe | 0 | 12,373,556,083 | 6% | ||
gabrielatravels | 0 | 9,216,376,898 | 4.8% | ||
gaborockstar | 0 | 53,052,705,125 | 50% | ||
bengy | 0 | 21,452,879,858 | 25% | ||
adventuroussoul | 0 | 2,182,065,095 | 10% | ||
davemccoy | 0 | 1,754,355,360 | 10.66% | ||
mciszczon | 0 | 1,281,521,387 | 6% | ||
portugalcoin | 0 | 5,504,291,113 | 10% | ||
dynamicrypto | 0 | 3,477,701,370 | 6.25% | ||
bishoppeter1 | 0 | 461,064,066 | 10% | ||
shmoogleosukami | 0 | 547,696,078,471 | 100% | ||
psyborg | 0 | 5,688,000,517 | 50% | ||
antdroid | 0 | 5,846,920,378 | 50% | ||
neeqi | 0 | 464,019,401 | 100% | ||
ocd-witness | 0 | 150,517,464,917 | 12% | ||
tonysayers33 | 0 | 13,475,523,604 | 33% | ||
openmind3000 | 0 | 2,524,081,461 | 50% | ||
hazem91 | 0 | 4,847,051,482 | 20% | ||
captainbob | 0 | 550,593,541,070 | 100% | ||
aperterikk | 0 | 573,401,577 | 50% | ||
condeas | 0 | 433,110,804,108 | 20% | ||
katrina-ariel | 0 | 18,355,718,208 | 50% | ||
happymichael | 0 | 2,628,099,079 | 100% | ||
crowbarmama | 0 | 4,515,145,256 | 20% | ||
lesiopm | 0 | 34,404,195,511 | 3% | ||
gabbyg86 | 0 | 22,013,291,399 | 35% | ||
originalmrspice | 0 | 13,531,499,212 | 50% | ||
miosha | 0 | 652,442,286,815 | 100% | ||
jeronimorubio | 0 | 10,414,537,840 | 100% | ||
d00k13 | 0 | 16,556,579,472 | 100% | ||
mrchef111 | 0 | 58,001,630,877 | 25% | ||
darkfuseion | 0 | 1,146,217,187 | 100% | ||
gisi | 0 | 4,453,872,503 | 10% | ||
gadrian | 0 | 423,585,855,264 | 30% | ||
illuminationst8 | 0 | 6,346,716,840 | 25% | ||
manuelmusic | 0 | 555,486,477 | 3.6% | ||
voitaksoutache | 0 | 511,072,441 | 6% | ||
achimmertens | 0 | 21,317,097,152 | 6% | ||
brainpod | 0 | 1,024,532,029 | 25% | ||
joeytechtalks | 0 | 1,592,722,009 | 50% | ||
el-dee-are-es | 0 | 3,393,124,212 | 10% | ||
monchhichi23 | 0 | 470,707,229 | 50% | ||
indigoocean | 0 | 2,883,529,167 | 6% | ||
browery | 0 | 23,436,879,203 | 6% | ||
veteranforcrypto | 0 | 719,409,724 | 3.6% | ||
friendsofgondor | 0 | 37,274,140,225 | 10.66% | ||
smacommunity | 0 | 983,569,524 | 50% | ||
fw206 | 0 | 2,832,548,251,297 | 35% | ||
techcoderx | 0 | 951,984,259,744 | 100% | ||
brettblue | 0 | 1,696,826,997 | 100% | ||
hmayak | 0 | 481,321,147 | 5.33% | ||
onelovedtube | 0 | 15,940,498,293 | 100% | ||
johndoer123 | 0 | 3,645,249,882 | 3.12% | ||
toddmck | 0 | 2,504,335,392 | 100% | ||
konradxxx3 | 0 | 640,834,397 | 6% | ||
haccolong | 0 | 903,109,472 | 6% | ||
marjanko | 0 | 357,566,045,689 | 100% | ||
gaottantacinque | 0 | 0 | 100% | ||
talentclub | 0 | 8,091,376,515 | 6% | ||
qila | 0 | 11,639,549,514 | 100% | ||
thedailysneak | 0 | 531,747,052 | 0.58% | ||
ocdb | 0 | 13,293,581,577,598 | 10.66% | ||
melor9 | 0 | 9,959,176,185 | 50% | ||
icepee | 0 | 16,114,275,786 | 50% | ||
amart29 | 0 | 460,094,523 | 6% | ||
gasaeightyfive | 0 | 748,638,231 | 100% | ||
dlike | 0 | 526,078,070,992 | 100% | ||
rayshiuimages | 0 | 467,527,371 | 6% | ||
javyeslava.photo | 0 | 1,134,985,867 | 7.2% | ||
marcocasario | 0 | 9,602,242 | 0.01% | ||
thesummoner | 0 | 5,582,717,591 | 50% | ||
lunamoon | 0 | 24,971,614,220 | 50% | ||
khaldeesi | 0 | 24,816,124,408 | 50% | ||
freyamber | 0 | 25,154,321,381 | 50% | ||
cribbio | 0 | 2,718,296,634 | 100% | ||
linuxbot | 0 | 6,052,837,171 | 20% | ||
chain.games | 0 | 11,264,999,556 | 50% | ||
raoufwilly | 0 | 812,307,486 | 30% | ||
miguelbaez | 0 | 1,530,914,195 | 12% | ||
buildingpies | 0 | 1,180,062,001 | 2.35% | ||
multifacetas | 0 | 8,478,993,755 | 6% | ||
thepatriotblog | 0 | 85,619,358,444 | 100% | ||
variedades | 0 | 1,501,414,324 | 4.26% | ||
cowboysblog | 0 | 3,084,734,285 | 100% | ||
kennybobs | 0 | 508,923,903 | 10.66% | ||
bluerobo | 0 | 478,088,228,814 | 100% | ||
r-e-d | 0 | 4,020,094,881 | 50% | ||
jacuzzi | 0 | 693,000,002 | 1.5% | ||
vaultec | 0 | 1,094,462,387,421 | 100% | ||
lord-of-the-d | 0 | 5,674,333,960 | 50% | ||
pl-travelfeed | 0 | 2,309,874,250 | 1.5% | ||
instagram-models | 0 | 30,021,980,729 | 6% | ||
steemforsteem | 0 | 477,091,539 | 50% | ||
toonuts | 0 | 1,153,726,854 | 50% | ||
twonuts | 0 | 1,164,874,447 | 50% | ||
hozn4ukhlytriwc | 0 | 987,297,667 | 10% | ||
rashid5 | 0 | 581,040,353 | 12% | ||
squareonefarms | 0 | 1,171,217,173 | 6% | ||
letlove | 0 | 1,484,291,296 | 50% | ||
allied-mafia | 0 | 4,386,899,641 | 50% | ||
helgalubevi | 0 | 13,481,223,688 | 50% | ||
iamangierose | 0 | 530,608,702 | 50% | ||
steemforschool | 0 | 475,413,845 | 50% | ||
steemforschools | 0 | 587,325,586 | 50% | ||
itwasme | 0 | 738,474,617 | 50% | ||
beerlover | 0 | 2,331,322,017 | 1.8% | ||
qwerrie | 0 | 13,594,424,484 | 0.9% | ||
leighscotford | 0 | 6,453,071,004 | 12% | ||
lut-studio | 0 | 4,319,500,412 | 100% | ||
zeruxanime | 0 | 11,327,880,053 | 50% | ||
x40l1n | 0 | 23,709,265,251 | 50% | ||
theblooded | 0 | 485,783,937 | 50% | ||
blooded | 0 | 493,671,329 | 50% | ||
theclan | 0 | 1,024,338,324 | 50% | ||
angeltree | 0 | 1,028,192,802 | 50% | ||
christmasclub | 0 | 1,132,345,792 | 50% | ||
medussart | 0 | 637,143,541 | 12% | ||
publicview | 0 | 11,948,418,706 | 50% | ||
sbi-tokens | 0 | 1,293,579,561 | 1.16% | ||
whangster79 | 0 | 34,085,237,810 | 100% | ||
urun | 0 | 11,126,843,982 | 100% | ||
chris-uk | 0 | 1,251,387,206 | 6% | ||
kaeserotor | 0 | 1,508,585,195 | 8.4% | ||
unpopular | 0 | 48,924,677,837 | 4.5% | ||
birthdaywishes | 0 | 495,675,944 | 50% | ||
youdo | 0 | 1,242,664,478 | 50% | ||
bi0digital | 0 | 5,285,777,902 | 50% | ||
wittys.angels | 0 | 499,356,606 | 50% | ||
wittysangels | 0 | 499,360,013 | 50% | ||
keys-defender | 0 | 3,659,386,403 | 100% | ||
nerdvana | 0 | 916,278,310 | 6% | ||
kamilla19 | 0 | 94,786,122,961 | 20% | ||
hive-134220 | 0 | 38,304,320,797 | 100% | ||
dpend.active | 0 | 862,540,528 | 2.4% | ||
laruche | 0 | 7,567,687,415 | 4.8% | ||
artgrafiken | 0 | 12,006,724,631 | 20% | ||
the100 | 0 | 22,188,958,760 | 12% | ||
iameden | 0 | 520,860,165 | 6% | ||
evelynchacin | 0 | 5,392,072,662 | 6% | ||
balvinder294 | 0 | 2,516,463,515 | 20% | ||
millycf1976 | 0 | 27,672,250,164 | 6% | ||
lesiopm2 | 0 | 556,414,510 | 3% | ||
newigennity | 0 | 168,746,541,626 | 50% | ||
gabilan55 | 0 | 884,132,820 | 6% | ||
perceval | 0 | 654,103,750 | 12% | ||
anafae | 0 | 694,624,145 | 1.2% | ||
scriptkittie | 0 | 797,675,656 | 12% | ||
angiel | 0 | 12,536,231,579 | 50% | ||
sassafrass | 0 | 1,753,169,052 | 50% | ||
trangbaby | 0 | 565,804,216 | 10.66% | ||
hive-world | 0 | 687,661,168 | 5.33% | ||
evagavilan2 | 0 | 1,942,361,971 | 3% | ||
paolazun | 0 | 640,146,440 | 6% | ||
dhedge | 0 | 12,438,380,580 | 2.4% | ||
bellelynn | 0 | 746,923,275 | 50% | ||
meritocracy | 0 | 693,704,853,089 | 5.33% | ||
hiveart | 0 | 490,965,242 | 6% | ||
merthin | 0 | 452,696,954 | 0.75% | ||
dcrops | 0 | 44,043,273,957 | 6% | ||
zanoz | 0 | 2,777,796,836 | 6% | ||
babeltrips | 0 | 2,646,288,019 | 5.33% | ||
szukamnemo | 0 | 34,645,610,846 | 10.5% | ||
dr460n3y3 | 0 | 2,408,013,336 | 50% | ||
b34w0lf | 0 | 6,596,675,100 | 50% | ||
solymi | 0 | 56,851,632,184 | 6% | ||
traderhive | 0 | 2,086,530,960 | 12% | ||
drricksanchez | 0 | 35,724,314,106 | 6% | ||
iviaxpow3r | 0 | 876,421,952 | 6.25% | ||
timmy-turnip | 0 | 1,329,831,131 | 25% | ||
leoball | 0 | 539,681,101 | 12% | ||
khushboo108 | 0 | 769,500,262 | 6% | ||
jim-crypto | 0 | 593,974,611 | 12.5% | ||
hive-defender | 0 | 435,389,022 | 100% | ||
key-defender.shh | 0 | 0 | 100% | ||
brujita18 | 0 | 2,462,240,016 | 6% | ||
krrizjos18 | 0 | 484,216,861 | 6% | ||
mariaser | 0 | 5,244,086,136 | 7.46% | ||
partiesjohall | 0 | 1,853,507,174 | 12% | ||
jessicaossom | 0 | 1,347,959,241 | 6% | ||
josdelmi | 0 | 1,320,683,792 | 6% | ||
aprasad2325 | 0 | 1,885,668,061 | 5.33% | ||
yoieuqudniram | 0 | 1,801,270,613 | 6% | ||
trezzahn | 0 | 32,252,564,863 | 100% | ||
ivycrafts | 0 | 4,087,105,971 | 6% | ||
ikigaidesign | 0 | 899,716,158 | 6% | ||
iamleicester | 0 | 549,849,542 | 80% | ||
mochilub | 0 | 1,283,229,026 | 6.25% | ||
princekham | 0 | 35,720,988,424 | 6% | ||
blingit | 0 | 8,625,972,671 | 6% | ||
marsupia | 0 | 1,348,568,226 | 40% | ||
iproto | 0 | 2,485,223,799 | 6.25% | ||
lynnnguyen | 0 | 781,838,185 | 10.66% | ||
kimloan | 0 | 799,547,630 | 5.33% | ||
dora381 | 0 | 3,922,536,803 | 10.66% | ||
techguard | 0 | 684,944,152 | 10.5% | ||
beffeater | 0 | 2,840,360,267 | 12.5% | ||
sephiwolf | 0 | 682,466,001 | 10.8% | ||
tonton23 | 0 | 534,664,507 | 6% | ||
hive-165007 | 0 | 1,625,345,962 | 50% | ||
thebigfish | 0 | 76,580,400,241 | 50% | ||
psyberx | 0 | 2,088,478,165 | 1% | ||
hyhy93 | 0 | 490,122,856 | 10.66% | ||
crypto-shots | 0 | 225,573,502 | 50% | ||
thgaming | 0 | 2,009,420,412 | 12.5% | ||
tristan.todd | 0 | 740,160,884 | 12% | ||
noctury | 0 | 2,531,515,350 | 6% | ||
poliac | 0 | 4,426,204,850 | 6% | ||
ivypham | 0 | 1,933,109,738 | 10.66% | ||
liveofdalla | 0 | 5,004,997,699 | 6% | ||
lukasbachofner | 0 | 10,839,832,445 | 6% | ||
thorlock | 0 | 11,833,896,921 | 6.25% | ||
dlizara | 0 | 635,745,685 | 6% | ||
hannes-stoffel | 0 | 26,783,406,820 | 100% | ||
cryptoshots.nft | 0 | 10,708,209 | 100% | ||
pgm-curator | 0 | 2,107,960,290 | 6% | ||
prosocialise | 0 | 29,217,378,396 | 6% | ||
tokencav | 0 | 25,715,846,034 | 25% | ||
aletoalonewolf | 0 | 561,808,639 | 6% | ||
creativepixie | 0 | 483,615,989 | 6% | ||
bigorna1 | 0 | 651,706,237 | 3% | ||
cryptoshots.play | 0 | 0 | 50% | ||
sommylove | 0 | 6,564,500,611 | 88% | ||
cindynancy | 0 | 996,150,019 | 6% | ||
w1tty | 0 | 3,638,461,461 | 50% | ||
zehn34 | 0 | 515,444,271 | 6% | ||
cthings | 0 | 1,246,694,906 | 2.4% | ||
cryptoshotsdoom | 0 | 0 | 50% | ||
nhaji01 | 0 | 3,556,928,963 | 6% | ||
twosomesup | 0 | 2,082,133,410 | 5.33% | ||
minas-glory | 0 | 796,848,314 | 6% | ||
the-burn | 0 | 3,712,454,121 | 6% | ||
humbe | 0 | 7,243,262,565 | 2% | ||
hive-195880 | 0 | 4,271,669,726 | 100% | ||
willendorfia | 0 | 9,053,153,088 | 100% | ||
abu78 | 0 | 1,957,553,931 | 5.33% | ||
actordontee | 0 | 5,505,636,350 | 50% | ||
vetfunding | 0 | 8,756,608,823 | 25% | ||
hd-treasury | 0 | 1,401,253,939 | 6% | ||
karina.gpt | 0 | 0 | 100% | ||
monkeymanking | 0 | 2,022,123,734 | 100% | ||
argo8 | 0 | 14,057,480,434 | 6% | ||
briefmarken | 0 | 1,239,893,147 | 2.35% | ||
hivedrip | 0 | 4,735,152,903 | 6.25% | ||
karina.yana | 0 | 1,015,406,390 | 50% | ||
flourishandflora | 0 | 704,865,313 | 6% | ||
reyn-is-chillin | 0 | 800,330,150 | 50% | ||
nism | 0 | 19,714,225,763 | 50% | ||
kathrynkw | 0 | 46,690,709,454 | 100% | ||
luisarrazola | 0 | 787,882,550 | 6% | ||
thetradecenter | 0 | 10,259,997,226 | 50% | ||
bipolar95 | 0 | 1,680,744,702 | 10% | ||
imoog1en3v3rm0r3 | 0 | 1,737,660,327 | 30% | ||
hive-156436 | 0 | 736,147,457 | 6% | ||
janwrites | 0 | 904,852,252 | 12% | ||
eberechi01 | 0 | 916,385,695 | 6% | ||
strangedad | 0 | 1,771,435,654 | 100% | ||
blemish | 0 | 1,311,936,464 | 50% | ||
soundminds | 0 | 3,148,885,213 | 80% | ||
ryanaa | 0 | 44,322,169,472 | 100% | ||
imx.center | 0 | 2,642,783,361 | 12% | ||
francismary | 0 | 544,002,502 | 6% | ||
techstyle | 0 | 1,005,921,606 | 50% | ||
yuraimatc | 0 | 336,324,071 | 100% | ||
magic.byte | 0 | 0 | 100% | ||
arka1 | 0 | 7,005,573,195 | 3% | ||
sambapools | 0 | 69,784,126,490 | 100% | ||
peakecoin.matic | 0 | 572,077,533 | 100% |
<div class='pull-right'>https://files.peakd.com/file/peakd-hive/beerlover/yiuU6bdf-beerlover20gives20BEER.gif<p><sup><a href='https://hive-engine.com/?p=market&t=BEER'>View or trade </a> <code>BEER</code>.</sup></p></div><center><br> <p>Hey @techcoderx, here is a little bit of <code>BEER</code> from @steevc for you. Enjoy it!</p> <p>Learn how to <a href='https://peakd.com/beer/@beerlover/what-is-proof-of-stake-with-beer'>earn <b>FREE BEER</b> each day </a> by staking your <code>BEER</code>.</p> </center><div></div>
author | beerlover |
---|---|
permlink | re-techcoderx-simple-stats-dashboard-for-curators-and-witnesses-20250609t210024463z |
category | hive-139531 |
json_metadata | {"app":"beerlover/3.0","language":"rust","developer":"wehmoen"} |
created | 2025-06-09 21:00:24 |
last_update | 2025-06-09 21:00:24 |
depth | 1 |
children | 0 |
last_payout | 2025-06-16 21:00: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 | 521 |
author_reputation | 25,827,334,384,261 |
root_title | "Simple stats dashboard for curators and witnesses" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,266,746 |
net_rshares | 0 |
<div class='pull-right'>https://files.peakd.com/file/peakd-hive/beerlover/yiuU6bdf-beerlover20gives20BEER.gif<p><sup><a href='https://hive-engine.com/?p=market&t=BEER'>View or trade </a> <code>BEER</code>.</sup></p></div><center><br> <p>Hey @techcoderx, here is a little bit of <code>BEER</code> from @steevc for you. Enjoy it!</p> <p>Do you want to <a href='https://friends.beersaturday.com/'>win <b>SOME BEER</b> together with your friends </a> and draw the <code>BEERKING</code>.</p> </center><div></div>
author | beerlover |
---|---|
permlink | re-techcoderx-simple-stats-dashboard-for-curators-and-witnesses-20250609t210030613z |
category | hive-139531 |
json_metadata | {"app":"beerlover/3.0","language":"rust","developer":"wehmoen"} |
created | 2025-06-09 21:00:30 |
last_update | 2025-06-09 21:00:30 |
depth | 1 |
children | 0 |
last_payout | 2025-06-16 21:00: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 | 508 |
author_reputation | 25,827,334,384,261 |
root_title | "Simple stats dashboard for curators and witnesses" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,266,749 |
net_rshares | 0 |
Thanks for the tools. I missed having view like the distribution of votes. I tried out HiveTasks a few times in the past, and the tools I tried didn't work for me so I gave up on checking it any longer. HAF-based tools are already next generation...
author | gadrian |
---|---|
permlink | re-techcoderx-sxludw |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.6.1","image":[],"users":[]} |
created | 2025-06-09 20:03:33 |
last_update | 2025-06-09 20:03:33 |
depth | 1 |
children | 1 |
last_payout | 2025-06-16 20:03:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.164 HBD |
curator_payout_value | 0.164 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 249 |
author_reputation | 644,691,742,451,719 |
root_title | "Simple stats dashboard for curators and witnesses" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,266,119 |
net_rshares | 1,087,674,730,241 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steevc | 0 | 142,475,057,621 | 4% | ||
mmmmkkkk311 | 0 | -4,886,135,762 | -10% | ||
mariuszkarowski | 0 | -508,091,409 | -10% | ||
techcoderx | 0 | 956,574,699,057 | 100% | ||
bluesniper | 0 | -1,622,269,484 | -10% | ||
primeradue | 0 | -76,344,005 | -10% | ||
ctime | 0 | -3,388,790,032 | -10% | ||
mk-photo-token | 0 | 0 | -10% | ||
csport | 0 | -108,454,014 | -10% | ||
gaskets | 0 | -37,526,586 | -10% | ||
tenpik | 0 | -71,726,339 | -10% | ||
zeltra | 0 | -64,823,531 | -10% | ||
sonntags | 0 | -598,977,220 | -10% | ||
ovlagik | 0 | -7,248,562 | -10% | ||
labutamol | 0 | -4,639,493 | -10% |
Indeed, much easier to query data beyond what standard APIs provide.
author | techcoderx |
---|---|
permlink | re-gadrian-sxm5x9 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.6.1"} |
created | 2025-06-10 00:12:45 |
last_update | 2025-06-10 00:12:45 |
depth | 2 |
children | 0 |
last_payout | 2025-06-17 00: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 | 68 |
author_reputation | 47,797,995,910,732 |
root_title | "Simple stats dashboard for curators and witnesses" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,269,228 |
net_rshares | 0 |
Congratulations @techcoderx! 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/@techcoderx/payout.png?202506301629"></td><td>You received more than 5000 HP as payout for your posts, comments and curation.<br>Your next payout target is 6000 HP.<br><sub>The unit is Hive Power equivalent because post and comment rewards can be split into HP and HBD</sub></td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@techcoderx) 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="/hive-122221/@hivebuzz/pum-202507"><img src="https://images.hive.blog/64x128/https://i.imgur.com/M9RD8KS.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202507">Be ready for the July edition of the Hive Power Up Month!</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pud-202507"><img src="https://images.hive.blog/64x128/https://i.imgur.com/805FIIt.jpg"></a></td><td><a href="/hive-122221/@hivebuzz/pud-202507">Hive Power Up Day - July 1st 2025</a></td></tr></table>
author | hivebuzz |
---|---|
permlink | notify-1751301464 |
category | hive-139531 |
json_metadata | {"image":["https://hivebuzz.me/notify.t6.png"]} |
created | 2025-06-30 16:37:45 |
last_update | 2025-06-30 16:37:45 |
depth | 1 |
children | 0 |
last_payout | 2025-07-07 16:37: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,312 |
author_reputation | 370,747,128,097,864 |
root_title | "Simple stats dashboard for curators and witnesses" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,669,790 |
net_rshares | 0 |
Thanks for the CSI tool. It's neat. I see the CSI can be negative when the upvotes are highly concentrated to an account. Just curious, based on the formula, is there a min or max score? Like if I were to only upvote 1 account all the time, how low would that go? And will the score differ if I cast only 1x100% upvote Vs 10x100% to one account only?
author | livinguktaiwan |
---|---|
permlink | re-techcoderx-sxlzw4 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.6.1","image":[],"users":[]} |
created | 2025-06-09 22:02:27 |
last_update | 2025-06-09 22:02:27 |
depth | 1 |
children | 2 |
last_payout | 2025-06-16 22:02:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.148 HBD |
curator_payout_value | 0.148 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 352 |
author_reputation | 1,683,707,409,886,159 |
root_title | "Simple stats dashboard for curators and witnesses" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,267,552 |
net_rshares | 974,593,687,796 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
techcoderx | 0 | 974,593,687,796 | 100% | ||
bpcvoter4 | 0 | 0 | 100% |
Formula does not look bounded by a min/max value. Yes, the score worsens the more concentrated the votes are. Some real examples: * [Using all voting power towards one account](https://techcoderx.com/curation?user=themarkymark) (-2.78) * [Using all voting power towards self](https://techcoderx.com/curation?user=buildawhale) (-7.72) * [Only one 100% vote](https://techcoderx.com/curation?user=randomvlogs) (0.95)
author | techcoderx |
---|---|
permlink | re-livinguktaiwan-sxm5n1 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.6.1"} |
created | 2025-06-10 00:06:39 |
last_update | 2025-06-10 00:06:39 |
depth | 2 |
children | 1 |
last_payout | 2025-06-17 00:06:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.052 HBD |
curator_payout_value | 0.053 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 414 |
author_reputation | 47,797,995,910,732 |
root_title | "Simple stats dashboard for curators and witnesses" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,269,157 |
net_rshares | 349,900,247,137 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
livinguktaiwan | 0 | 349,900,247,137 | 8% |
The first two examples are interesting. So more self vote lowers the score. That's good
author | livinguktaiwan |
---|---|
permlink | re-techcoderx-sxnafa |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.6.1"} |
created | 2025-06-10 14:47:33 |
last_update | 2025-06-10 14:47:33 |
depth | 3 |
children | 0 |
last_payout | 2025-06-17 14:47: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 | 88 |
author_reputation | 1,683,707,409,886,159 |
root_title | "Simple stats dashboard for curators and witnesses" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,279,916 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bpcvoter4 | 0 | 0 | 100% |
Thank you for the curation summary page, how do we know the reward from it ?
author | sanjeevm |
---|---|
permlink | re-techcoderx-sxmitw |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.6.1","image":[],"users":[]} |
created | 2025-06-10 04:51:36 |
last_update | 2025-06-10 04:51:36 |
depth | 1 |
children | 1 |
last_payout | 2025-06-17 04:51:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.144 HBD |
curator_payout_value | 0.143 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 77 |
author_reputation | 720,756,364,147,578 |
root_title | "Simple stats dashboard for curators and witnesses" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,271,826 |
net_rshares | 933,087,436,806 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
techcoderx | 0 | 933,087,436,806 | 100% |
Main focus on that page is the voting CSI score for now. Curation rewards and APR will probably be part of the comprehensive personal dashboard but that's low priority for me right now.
author | techcoderx |
---|---|
permlink | re-sanjeevm-sxmmn3 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.6.1"} |
created | 2025-06-10 06:13:54 |
last_update | 2025-06-10 06:13:54 |
depth | 2 |
children | 0 |
last_payout | 2025-06-17 06:13:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.037 HBD |
curator_payout_value | 0.037 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 185 |
author_reputation | 47,797,995,910,732 |
root_title | "Simple stats dashboard for curators and witnesses" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,272,906 |
net_rshares | 253,320,735,491 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sanjeevm | 0 | 253,320,735,491 | 5% |
The witness rewards tool is pretty sweet, Always wondered how much I've made from being a witness so far.
author | shmoogleosukami |
---|---|
permlink | re-techcoderx-sxm25q |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.6.1","image":[],"users":[]} |
created | 2025-06-09 22:51:27 |
last_update | 2025-06-09 22:51:27 |
depth | 1 |
children | 0 |
last_payout | 2025-06-16 22:51:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.157 HBD |
curator_payout_value | 0.157 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 105 |
author_reputation | 227,677,396,580,585 |
root_title | "Simple stats dashboard for curators and witnesses" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,268,203 |
net_rshares | 1,037,226,045,038 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steevc | 0 | 117,588,815,924 | 3% | ||
techcoderx | 0 | 919,637,229,114 | 100% |
This is neat. I think people should be encouraged to spread out their votes and you app shows it well. !BEER
author | steevc |
---|---|
permlink | re-techcoderx-sxlx09 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.6.1","image":[],"users":[]} |
created | 2025-06-09 21:00:12 |
last_update | 2025-06-09 21:00:12 |
depth | 1 |
children | 0 |
last_payout | 2025-06-16 21:00:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.142 HBD |
curator_payout_value | 0.142 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 109 |
author_reputation | 1,393,404,291,442,827 |
root_title | "Simple stats dashboard for curators and witnesses" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,266,743 |
net_rshares | 938,423,664,857 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
techcoderx | 0 | 938,369,674,183 | 100% | ||
bpcvoter4 | 0 | 53,990,674 | 100% |