Hey All,  This post is in continuation with my Yesterdays post - [Hive Reputation Explained: Step-by-Step Conversion Guide - with an EXAMPLE...](https://peakd.com/hive-146620/@gungunkrishu/hive-reputation-explained-step-by-step-conversion-guide-with-an-example), where we saw Hive users who had a reputation close to my Hive reputation which is 79.3. This data was not sufficient to conclude to anything and hence this part2 post where we fill further deep dive into looking these users which are close to my reputation what their #HIVE Power aka HP is and at the same time we will see #HIVE users closest to my Hive Power and their Reputation. I know it may sound some what confusing but trust me when you see that data and table it would be intresting to analyze, compare, and truly understand ONEs position among others. Ok here is the the DBeaver UI where I had the query working. And then we have the output of the query in table form.  ### Top 10 Hive users closest to my Reputation & their Hive Power | Name | Reputation (raw) | Rep Score | Hive Power (VESTS) | Hive Power (HP) | |----------------|-------------------|-----------|---------------------|-----------------| | ***gungunkrishu*** | ***1074557065212202*** | ***79.28106535596065*** | ***233473354.351516*** | ***140540.73775321752*** | | stayoutoftherz | 1082988226441942 | 79.31161361750247 | 747335301.737578 | 449863.13297700154 | | teamukraine | 1064252086102883 | 79.24340059122466 | 13157101.184945 | 7919.998889645867 | | bengy | 1064212948383316 | 79.24325684851965 | 10103351.685370 | 6081.775385401247 | | ssekulji | 1089679392599398 | 79.33568864058742 | 18212132.345870 | 10962.906337029657 | | steemflow | 1092312324349458 | 79.34512150367976 | 60228927.162746 | 36255.17730298614 | | omarcitorojas | 1092591668552799 | 79.34612096070312 | 3611579.817376 | 2174.0129335035517 | | creativecrypto | 1055131252444029 | 79.20975838125304 | 0.368483 | 0.0002218106336518 | | cryptopassion | 1095186992075950 | 79.35539449198377 | 8533.824072 | 5.136988476763447 | | susanli3769 | 1096957439065679 | 79.3617079990954 | 95772191.295858 | 57650.66621134431 | | eddiespino | 1050927028586630 | 79.1941530554422 | 12771610.137349 | 7687.950155961106 | I leveraged Python script using Pandas and Matplotlib to visualize ythe above table. You can clearly see that my reputation score which is (79.28) places me right in the middle of other only one top accounts with a Hive Power of stayoutoftherz (449K HP). At the same time there are 5 users whoes reputation and Hive Power is almost close to each other. One One extreme case where creativecrypto has almost no Hive Power (0 HP) but still a comparable rep score of (79.20). Overall we can say that users can have similar reputation but widely different influence in terms of HP.  And here is the working Query to retriev records users closest to your reputation and the users Hive Power. ``` WITH globals AS ( SELECT CAST(total_vesting_shares AS FLOAT) AS total_vests, CAST(total_vesting_fund_hive AS FLOAT) AS total_hive_fund FROM DynamicGlobalProperties ), base AS ( SELECT a.name, a.reputation, CASE WHEN a.reputation = 0 THEN 25 ELSE (LOG10(CAST(ABS(a.reputation) AS FLOAT)) - 9) * (CASE WHEN a.reputation > 0 THEN 1 ELSE -1 END) * 9 + 25 END AS rep_score, a.vesting_shares, g.total_vests, g.total_hive_fund FROM Accounts a CROSS JOIN globals g ) SELECT TOP 11 name, reputation, rep_score, vesting_shares AS hive_power_vests, (vesting_shares / total_vests) * total_hive_fund AS hive_power_hp FROM base ORDER BY ABS(rep_score - (SELECT rep_score FROM base WHERE name = 'gungunkrishu')); ``` Next I didnt stop here and went on to query records with a slight change. I wanted to see users reputation when compared to my Hive Power. Interesting, isn’t it?.  ### Top 10 Hive users closest to my Hive Power and their Reputation.... | Name | Hive Power (VESTS) | Hive Power (HP) | Raw Reputation | Readable Reputation | |-----------------|---------------------|-----------------|---------------------|----------------------| | livinguktaiwan | 237426177.371026 | 142920.08346503 | 1412963888039479 | 80.35117956220648 | | deepresearch | 234499614.910854 | 141158.42198480 | 131269668168915 | 71.06347948668746 | | bitcointalker | 234000000.000000 | 140857.67585162 | 0 | 25.00000000000000 | | ***gungunkrishu*** | ***233473354.351516*** | ***140540.65840699*** | ***1074557065212202*** | ***79.28106535596065*** | | revisesociology | 233382641.885788 | 140486.05350488 | 1903459948240358 | 81.51589368713266 | | moderator | 232557143.000000 | 139989.13959689 | 0 | 25.00000000000000 | | peakd | 232211483.884969 | 139781.06806022 | 292225183600292 | 74.19145876148988 | | delegate.lafona | 232193959.460069 | 139770.51912962 | 1604913152392 | 53.84906382529933 | | giuatt07 | 231356352.739348 | 139266.31683920 | 481416188174986 | 76.14268620853996 | | gengua | 229646455.012197 | 138237.03384864 | 12380977244976 | 61.83479432866368 |  This is what I get when I plot the above table information using Phython. I got only one user whoes Hive Power and reputation score is close to me. Rest users have a scatterd Hive power and reputation score. Two users having greater HP and score than me and rest had lesser HP and score. ### Working Query to retriev records users closest to your Hive Power and their reputation ``` WITH globals AS ( SELECT CAST(total_vesting_shares AS FLOAT) AS total_vests, CAST(total_vesting_fund_hive AS FLOAT) AS total_hive_fund FROM DynamicGlobalProperties ), base AS ( SELECT a.name, a.vesting_shares, a.reputation, CASE WHEN a.reputation = 0 THEN 25 ELSE (LOG10(CAST(ABS(a.reputation) AS FLOAT)) - 9) * (CASE WHEN a.reputation > 0 THEN 1 ELSE -1 END) * 9 + 25 END AS rep_score, g.total_vests, g.total_hive_fund FROM Accounts a CROSS JOIN globals g ), closest AS ( SELECT TOP 10 name, vesting_shares AS hive_power_vests, (vesting_shares / total_vests) * total_hive_fund AS hive_power_hp, reputation AS raw_reputation, rep_score AS readable_reputation FROM base ORDER BY ABS(vesting_shares - (SELECT vesting_shares FROM base WHERE name = 'gungunkrishu')) ) SELECT * FROM closest ORDER BY hive_power_hp DESC; ``` Overall, it was a great learning experience to pull records and explore Hive users with Reputation Scores and Hive Power similar to mine. It’s always insightful to see how these two metrics work together in reflecting an account’s influence and growth on Hive. That’s all for today’s post on “***Hive Reputation Explained: Part 2 – Hive Power & Reputation Analysis***.” I hope I was able to explain the concept clearly. If you have any follow-up questions or doubts, please feel free to share them in the comments below.Happy Learning with HiveSQL....Cheers... ###### Hive Reputation Explained: Part2 - HIVE POWER & HIVE REPUTATION - Analysis... #Hive #Blockchain #Crypto #HiveSQL #Reputation #HiveCommunity #Web3 #Decentralization #HiveBlog Best Regards Paras Image Courtesy:: pro canva license, hiveblocks, DBeaver PS:- None of the above is a FINANCIAL Advice. Please DYOR; Do your own research. I've have an interest in BlockChain & Cryptos and have been investing in many emerging projects.
author | gungunkrishu | ||||||
---|---|---|---|---|---|---|---|
permlink | hive-reputation-explained-part2-hive-power-and-hive-reputation-analysis | ||||||
category | hive-146620 | ||||||
json_metadata | {"app":"peakd/2025.8.3","format":"markdown","tags":["hive","hivesql","reputation","hivepower","analysis","indiaunited","dbeaver","cent"],"users":["gungunkrishu"],"image":["https://files.peakd.com/file/peakd-hive/gungunkrishu/23tvAf9drcZaP7T1AfMcD1Y532cSaaueYQzAFch4nYRcnvbowZoYitXZQ7vfKyLr421fF.png","https://files.peakd.com/file/peakd-hive/gungunkrishu/23wCbb3Y22pwubBzZ3uiCtatcakzY7ScVjsW8uDVy4bHiXxsVJN7K2gEtt7cmABwXdUAY.png","https://files.peakd.com/file/peakd-hive/gungunkrishu/23t8DBnQEwGRbVvxxufrsuKLf5ziiFE1gkAPYbSqjs6XQxUuuqD97HwUVzfzJyfhfC83m.png","https://files.peakd.com/file/peakd-hive/gungunkrishu/243gBKLHneHWnEPstpzU8hMf6m6uSCryj8XD6TGogCM19NmXwrk4wgAVwbneQgExpAnQq.png","https://files.peakd.com/file/peakd-hive/gungunkrishu/Eo2BTunhLvhsc4M5Ae3zXqDvQbBW3dmhHyVWWxBLBm3EeSumXdCarG89N5hQxQ7KdaD.png"]} | ||||||
created | 2025-08-19 03:30:36 | ||||||
last_update | 2025-08-19 03:30:36 | ||||||
depth | 0 | ||||||
children | 2 | ||||||
last_payout | 1969-12-31 23:59:59 | ||||||
cashout_time | 2025-08-26 03:30:36 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 16.971 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 8,561 | ||||||
author_reputation | 1,358,507,022,092,951 | ||||||
root_title | "Hive Reputation Explained: Part2 - HIVE POWER & HIVE REPUTATION - Analysis..." | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 145,171,783 | ||||||
net_rshares | 56,986,155,637,484 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steemychicken1 | 0 | 1,475,090,076,499 | 36% | ||
good-karma | 0 | 12,315,816,735 | 1% | ||
magicmonk | 0 | 3,759,894,556,112 | 50% | ||
penguinpablo | 0 | 142,354,916,022 | 14% | ||
funnyman | 0 | 1,491,689,396 | 5.6% | ||
eforucom | 0 | 21,109,661,883 | 100% | ||
redes | 0 | 5,197,606,962,656 | 51% | ||
funnel | 0 | 14,480,438,418 | 20% | ||
esteemapp | 0 | 3,060,511,494 | 1% | ||
stefanialexis | 0 | 989,661,648 | 20% | ||
sudutpandang | 0 | 649,213,975 | 100% | ||
bsameep | 0 | 4,508,138,142 | 30% | ||
giuatt07 | 0 | 2,093,657,293,138 | 54% | ||
alphacore | 0 | 7,380,973,061 | 7.12% | ||
joeyarnoldvn | 0 | 519,876,085 | 1.68% | ||
vikbuddy | 0 | 20,773,359,514 | 25.5% | ||
hardikv | 0 | 2,020,572,359 | 15% | ||
geekgirl | 0 | 1,919,618,767,496 | 50% | ||
benedict08 | 0 | 3,250,224,609 | 50% | ||
rafalski | 0 | 835,202,431 | 63.9% | ||
codingdefined | 0 | 110,021,690,639 | 15% | ||
sanjeevm | 0 | 5,841,485,304,206 | 100% | ||
chetanpadliya | 0 | 45,712,168,948 | 100% | ||
etblink | 0 | 130,376,756,107 | 15% | ||
nainaztengra | 0 | 1,432,960,141,053 | 100% | ||
munawar1235 | 0 | 1,039,606,251 | 100% | ||
felander | 0 | 405,330,815,840 | 71% | ||
splash-of-angs63 | 0 | 5,233,912,406 | 20% | ||
sayee | 0 | 518,731,810 | 0.9% | ||
esteem.app | 0 | 369,254,119 | 1% | ||
tobetada | 0 | 795,352,166,748 | 25% | ||
fedesox | 0 | 6,156,136,240,429 | 35% | ||
jatinhota | 0 | 41,767,926,758 | 40% | ||
coolguy123 | 0 | 138,983,218,853 | 50% | ||
bobinson | 0 | 347,863,678,468 | 30% | ||
sankysanket18 | 0 | 674,033,590 | 15% | ||
angelina6688 | 0 | 57,646,608,512 | 50% | ||
sidp715 | 0 | 458,033,685 | 30% | ||
vishire | 0 | 1,275,220,325 | 30% | ||
silenteyes | 0 | 1,024,807,139 | 15% | ||
shonyishere | 0 | 1,625,146,518 | 30% | ||
yousafharoonkhan | 0 | 93,598,668,363 | 57% | ||
iptrucs | 0 | 4,234,364,823 | 25% | ||
ahmadmangazap | 0 | 1,548,441,036 | 0.5% | ||
cryptonized | 0 | 235,008,226 | 14% | ||
frames | 0 | 830,187,015 | 25% | ||
r1s2g3 | 0 | 872,769,818,622 | 75% | ||
bala41288 | 0 | 1,113,404,853,492 | 30% | ||
indiaunited | 0 | 1,973,664,139,878 | 30% | ||
roger.remix | 0 | 867,049,109 | 71% | ||
shaidon | 0 | 2,861,826,876 | 20% | ||
unconditionalove | 0 | 9,220,088,046 | 35.5% | ||
moeenali | 0 | 2,042,606,404,513 | 100% | ||
sweetkathy | 0 | 2,682,567,661 | 100% | ||
bhattg | 0 | 10,031,004,362 | 0.9% | ||
russellstockley | 0 | 40,003,941,935 | 30% | ||
dwayne16 | 0 | 695,175,549,469 | 50% | ||
oadissin | 0 | 1,399,707,955 | 0.3% | ||
raqibul | 0 | 603,590,407 | 15% | ||
quochuy | 0 | 624,538,582,623 | 6.23% | ||
manojbhatt | 0 | 13,863,606,431 | 30% | ||
rainbowbala | 0 | 935,380,892 | 30% | ||
beco132 | 0 | 2,107,799,006 | 54% | ||
slobberchops | 0 | 1,779,770,820,108 | 20% | ||
ragavee | 0 | 1,067,846,408 | 15% | ||
cryptoandcoffee | 0 | 1,829,268,732,071 | 40% | ||
joanm897 | 0 | 4,716,371,363 | 100% | ||
decepticons | 0 | 945,019,939 | 30% | ||
gabrielrr17 | 0 | 562,245,210 | 10% | ||
indiaunited-bot | 0 | 1,124,596,199 | 30% | ||
ambiguity | 0 | 37,274,362,786 | 50% | ||
pardinus | 0 | 44,948,464,809 | 10% | ||
digi-me | 0 | 2,423,599,059 | 0.5% | ||
crypt-skip | 0 | 55,296,068,038 | 100% | ||
vixmemon | 0 | 9,082,333,199 | 28.33% | ||
definethedollar | 0 | 1,089,357,161,453 | 50% | ||
florino | 0 | 830,890,088 | 15% | ||
marianaemilia | 0 | 2,529,572,587 | 20% | ||
mango-juice | 0 | 730,455,653,053 | 100% | ||
karishmasingh711 | 0 | 6,216,714,024 | 30% | ||
jacuzzi | 0 | 679,706,814 | 1.4% | ||
gomster | 0 | 943,521,527 | 10% | ||
crowdwitness | 0 | 19,339,111,132 | 37.5% | ||
steemtelly | 0 | 2,282,355,358 | 6.23% | ||
iamcyril | 0 | 8,075,589,936 | 50% | ||
hungrybear | 0 | 624,160,103 | 14% | ||
claudio83 | 0 | 1,155,062,225,773 | 50% | ||
wenchebakken | 0 | 49,146,469,193 | 50% | ||
libertycrypto27 | 0 | 1,729,793,594,811 | 100% | ||
solairitas | 0 | 386,122,872,889 | 50% | ||
imagenius | 0 | 547,230,343 | 71% | ||
reeta0119 | 0 | 998,965,314 | 100% | ||
anjanida | 0 | 12,459,762,125 | 100% | ||
bastter | 0 | 745,886,371 | 20% | ||
blumela | 0 | 2,379,795,099 | 0.5% | ||
plankton.token | 0 | 1,399,033,852 | 30% | ||
fighter4-freedom | 0 | 71,610,093,737 | 100% | ||
tggr | 0 | 9,614,022,588 | 15% | ||
ph1102 | 0 | 655,772,558,224 | 19% | ||
milu-the-dog | 0 | 741,055,693 | 71% | ||
badfinger | 0 | 868,836,607 | 15% | ||
binodkatuwal | 0 | 1,850,221,912 | 100% | ||
capp | 0 | 11,713,239,603 | 50% | ||
dechuck | 0 | 1,681,710,384 | 9.5% | ||
kanibot | 0 | 69,597,015,096 | 30% | ||
urun | 0 | 2,755,557,878 | 100% | ||
electronico | 0 | 4,827,987,412 | 50% | ||
bozz.sports | 0 | 11,692,518,402 | 5% | ||
unpopular | 0 | 139,826,340,600 | 12.75% | ||
gloriaolar | 0 | 8,317,038,722 | 7.5% | ||
bilpcoinbpc | 0 | 1,828,286,045 | 10% | ||
solairibot | 0 | 59,724,624,057 | 50% | ||
dpend.active | 0 | 5,231,967,819 | 14.2% | ||
luckyali | 0 | 33,126,020,752 | 100% | ||
dcityrewards | 0 | 1,518,730,910,703 | 71% | ||
sketching | 0 | 4,718,062,741 | 35.5% | ||
satoshil | 0 | 27,383,156,914 | 50% | ||
ecency | 0 | 474,350,854,448 | 1% | ||
balvinder294 | 0 | 1,496,023,703 | 6% | ||
cronicasdelcesar | 0 | 5,627,070,765 | 100% | ||
ecency.stats | 0 | 384,334,577 | 1% | ||
dikshabihani | 0 | 1,276,639,741 | 15% | ||
goliathus | 0 | 825,847,951 | 10% | ||
hive-world | 0 | 2,789,595,066 | 10% | ||
vandanabhatt | 0 | 599,915,318 | 30% | ||
yogeshbhatt | 0 | 2,678,635,116 | 30% | ||
carlosro | 0 | 502,912,550 | 20% | ||
brucolac | 0 | 3,394,422,355 | 12% | ||
brando28 | 0 | 638,553,804 | 10% | ||
xrayman | 0 | 21,750,773,536 | 10% | ||
mythix | 0 | 44,774,409,759 | 50% | ||
juecoree.stem | 0 | 708,680,454 | 100% | ||
muterra | 0 | 193,677,894,686 | 30% | ||
okluvmee | 0 | 26,241,895,933 | 15% | ||
photo-hive-five | 0 | 1,021,344,443 | 71% | ||
mythix.market | 0 | 39,075,582,623 | 50% | ||
hive.friends | 0 | 887,732,122 | 50% | ||
sodomlv | 0 | 7,527,960,893 | 100% | ||
yeouido.park | 0 | 1,631,593,647,773 | 15% | ||
disha30 | 0 | 3,774,599,525 | 30% | ||
sodom-lv | 0 | 40,663,381,920 | 100% | ||
supriya.gupta | 0 | 90,784,614,213 | 100% | ||
kamaleshwar | 0 | 4,639,690,445 | 30% | ||
chandra.shekar | 0 | 22,146,050,246 | 30% | ||
kannannv | 0 | 52,169,712,709 | 30% | ||
pishio | 0 | 193,339,816,470 | 5% | ||
menzo | 0 | 2,744,665,526 | 15% | ||
mythix.token | 0 | 24,370,662,797 | 50% | ||
olympicdragon | 0 | 563,397,856 | 100% | ||
vitoragnelli | 0 | 449,137,638 | 100% | ||
gamerzaza | 0 | 412,340,597 | 15% | ||
adulruna | 0 | 6,447,688,834 | 20% | ||
victoradebiyiart | 0 | 9,881,376,644 | 100% | ||
emd012 | 0 | 518,190,589 | 10% | ||
hkinuvaime | 0 | 1,006,331,994 | 10% | ||
t0xicgh0st | 0 | 451,985,022 | 100% | ||
qyses | 0 | 464,853,075 | 18% | ||
kojiri | 0 | 648,959,768 | 10% | ||
eolianpariah2 | 0 | 762,581,358 | 0.35% | ||
deimage | 0 | 9,516,313,892 | 15% | ||
lobaobh | 0 | 767,194,925 | 12% | ||
rc-assist | 0 | 18,291,891,878 | 70% | ||
jpleron | 0 | 752,545,548 | 20% | ||
bteim | 0 | 8,763,664,519 | 50% | ||
highfist | 0 | 849,444,362 | 10% | ||
pravesh0 | 0 | 325,700,909,411 | 100% | ||
heteroclite | 0 | 11,182,725,065 | 15% | ||
islandboi | 0 | 808,086,407 | 100% | ||
balaz | 0 | 33,451,938,569 | 30% | ||
dub-c | 0 | 845,628,243 | 100% | ||
genepoolchlrn8r | 0 | 491,645,903 | 10% | ||
sydechan | 0 | 1,154,026,133,277 | 100% | ||
emreal | 0 | 484,906,189 | 9% | ||
alessandrawhite | 0 | 487,751,706 | 0.5% | ||
genepoolcardlord | 0 | 23,380,404,401 | 10% | ||
bgmoha | 0 | 473,307,525 | 55% | ||
pinkchic | 0 | 1,363,372,060 | 4.5% | ||
tuba777 | 0 | 681,407,471 | 15% | ||
gaurav.art | 0 | 7,752,765,282 | 80% | ||
imacryptogeek | 0 | 9,265,618,987 | 30% | ||
fun.pravesh0 | 0 | 7,729,014,725 | 100% | ||
arsh11 | 0 | 37,948,891,933 | 100% | ||
abhay2695 | 0 | 1,050,067,949 | 15% | ||
bemier | 0 | 210,444,459,323 | 100% | ||
leotaker | 0 | 5,429,821,103 | 100% | ||
flowtrader | 0 | 6,920,851,580 | 100% | ||
mrdani12 | 0 | 171,849,480,512 | 100% | ||
argo8 | 0 | 543,446,012 | 0.25% | ||
nhi-nguyen | 0 | 1,747,758,115 | 100% | ||
econo | 0 | 25,633,721,706 | 100% | ||
untilwelearn | 0 | 174,508,837,867 | 50% | ||
chisomdamian | 0 | 7,411,454,561 | 50% | ||
adeade123 | 0 | 812,771,617 | 15% | ||
philossifer | 0 | 12,363,024,692 | 15% | ||
ladyaryastark | 0 | 1,210,491,563 | 7.5% | ||
tebesc | 0 | 6,430,405,356 | 7.5% | ||
hiventhusiast | 0 | 6,763,179,178 | 50% | ||
dbfbfutures | 0 | 16,727,286,256 | 100% | ||
ifhy | 0 | 619,714,494 | 25% | ||
clipzz | 0 | 3,576,607,668 | 50% | ||
bbypanda4 | 0 | 2,212,420,188 | 30% | ||
luckygold | 0 | 21,455,138,261 | 100% | ||
gifufaithful | 0 | 28,484,452,256 | 3% | ||
letusbuyhive | 0 | 537,256,627,485 | 12.75% | ||
longhunter | 0 | 1,745,770,409 | 100% | ||
finpulse | 0 | 1,854,016,055,839 | 100% | ||
arka1 | 0 | 1,133,554,634 | 0.5% |
This post has been manually curated by @bhattg from Indiaunited community. Join us on our [Discord Server](https://discord.gg/bGmS2tE). Do you know that you can earn a passive income by delegating to @indiaunited. We share more than 100 % of the curation rewards with the delegators in the form of IUC tokens. HP delegators and IUC token holders also get upto 20% additional vote weight. Here are some handy links for delegations: [100HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=166123.98786159602%20VESTS), [250HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=415309.96965399%20VESTS), [500HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=830619.93930798%20VESTS), [1000HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=1661239.87861596%20VESTS). [](https://discord.gg/bGmS2tE) <sub>**100% of the rewards from this comment goes to the curator for their manual curation efforts. Please encourage the curator @bhattg by upvoting this comment and support the community by voting the posts made by @indiaunited.**</sub>. This post received an extra 10.00% vote for delegating HP / holding IUC tokens.
author | indiaunited | ||||||
---|---|---|---|---|---|---|---|
permlink | indiaunited-1755578126629 | ||||||
category | hive-146620 | ||||||
json_metadata | {"app":"hiveblog/0.1","format":"markdown","tags":["hive","hivesql","reputation","hivepower","analysis","indiaunited","dbeaver","cent"]} | ||||||
created | 2025-08-19 04:35:27 | ||||||
last_update | 2025-08-19 04:35:27 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 1969-12-31 23:59:59 | ||||||
cashout_time | 2025-08-26 04:35:27 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 1,405 | ||||||
author_reputation | 101,235,713,462,882 | ||||||
root_title | "Hive Reputation Explained: Part2 - HIVE POWER & HIVE REPUTATION - Analysis..." | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 145,173,628 | ||||||
net_rshares | 0 |
Thanks for this wonderful information, it was good to read and understand this things from you.
author | ronimarie82 |
---|---|
permlink | re-gungunkrishu-t18v5r |
category | hive-146620 |
json_metadata | {"tags":["hive-146620"],"app":"peakd/2025.8.3","image":[],"users":[]} |
created | 2025-08-19 14:06:33 |
last_update | 2025-08-19 14:06:33 |
depth | 1 |
children | 0 |
last_payout | 1969-12-31 23:59:59 |
cashout_time | 2025-08-26 14:06:33 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 95 |
author_reputation | 14,988,352,305,992 |
root_title | "Hive Reputation Explained: Part2 - HIVE POWER & HIVE REPUTATION - Analysis..." |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 145,183,017 |
net_rshares | 0 |