Hello Hive Community Members! ๐๐ Letโs dive into the latest happenings from the **CheckinWithXyz** project and how we've transformed the onboarding experience like a boss! ๐ --- ## ๐ **Earlier Implementation: Snail Speed Mode**  Before our API glow-up: - Onboarding approvals were comment-based ๐จ๏ธ - Onboarders dropped comments on intro posts - A cronjob on the server gobbled them later ๐ก - Result? Long wait time โฑ๏ธ... like 2-3 minutes! - Not very Hive-like when blocks are born every 3 seconds โณ Thatโs like delivering pizza with pigeons when drones are available! ๐ --- ## ๐ **New Flow: API-Driven Approvals for the Win!**  To fix the delays, we moved to **API-based approvals** ๐ก - Whitelisted onboarders can now approve directly via the app - It fires off approval comment ๐ฌ + instant reward ๐ฐ - We now **store approval details** too (fancy, huh?) ๐ง ๐งโ๐ป Shoutout to @starkerz, @meno, @ecoinstant, @eddiespino & all the onboarders โ they loved the upgrade! ๐ --- ## ๐ **Onboarding Reports: Data is the New Oil!**  Now that weโre storing data, **reports are possible** ๐ - Changes took effect from **July 2025** - But wait! We did onboardings before that too ๐ฎ - For example, at **TalentLand**, many Hive souls joined ๐ฑ - Sent reports to @starkerz, but they said, โHey, some juicy details are missing!" ๐ต๏ธ --- ## ๐ค **Let's Write a Script & Hunt Down That Data!**  Buckle up, itโs time for detective coding with Node.js! ๐ต๏ธโโ๏ธ๐ป --- ### โ **Step 1: Get Transfers** ``` const dhive = require("@hiveio/dhive"); async function getTransfers(client, author, limit, start) { const op = dhive.utils.operationOrders; const operationsBitmask = dhive.utils.makeBitMaskFilter([op.transfer]); const records = await client.database.getAccountHistory( author, start, limit, operationsBitmask ); return records; } exports.getTransfers = getTransfers; ``` This gets us the juicy transfer records from Hive ๐ฏ --- ### โ **Step 2: Fetch Transfers for threespeakselfie** ``` async function updateCheckinRecords() { let transfers = await getTransfers( dhiveClient, "threespeakselfie", 1000, -1 ); ``` Boom! ๐ฅ Pulling the latest 1000 transactions ๐ฏ --- ### โ **Step 3: Filter the Right Kind of Transfers** Look for transfers that: 1. Are outgoing ๐ธ 2. Have memos ๐งพ 3. Contain blog links ๐ ``` let onboardings = transfers .filter((r) => { return ( r.op.from === "threespeakselfie" && r.op.memo.length > 0 && r.op.memo.includes("Your blog (https://hive.blog/@") ); }) ``` --- ### โ **Step 4: Shape the Data to Our Needs** Transform raw memos into onboarding records ๐ฆ ``` .map((r) => { const memo = r.op.memo; const regex = /Your blog $$https:\/\/hive\.blog\/@(.+)\/(.+)$$/; const match = memo.match(regex); return { username: match, memo: r.op.memo, dateOfApproval: r.timestamp, permlink: match, status: "approved", } }) ``` Now we have: - โ Username - โ Memo text - โ Approval timestamp - โ Permlink Smells like reporting gold ๐ชโจ --- ### โ **Step 5: Find Out Who Did the Onboarding** Since transfer doesnโt tell us **who approved**, we gotta extract it from the postโs title ๐ฏ ``` for (const item of onboardings) { try { const postDetails = await dhiveClient.database.call('get_content', [item.username, item.permlink]); const title = postDetails.title || "No Title"; const regex = "by @(.+)"; const match = title.match(regex); const onboarder = match ? match : "unknown"; ``` Boom! ๐งโโ๏ธ We got their names from the shadows (aka post titles). --- ## ๐ฏ Wrapping Up Thanks to this script, we were able to recover all **missing onboarding data** ๐ ๏ธ Itโs now updated in our backend database, making reporting & tracking future-proof! โ ๐ Next up: Work on the front-end! ๐จ๐ฅ๏ธ --- ## ๐ Thank You! That's it for now, folks! Thanks for scrolling all the way down ๐ ๐ More power to the Hive Blockchain ๐ ๐ช More power to all our community members ๐ Until next time, Happy Coding! ๐ปโจ --- ### ๐ Final Note - I asked Perplexity to help optimize this post to make it more readable and viewer-friendly. - Here is the link where you can find both original content & improvements made by AI - https://www.perplexity.ai/search/4125659a-303b-46d9-8565-9d91cb298b1a --- ### ๐ My Contributions to โฆ๏ธ Hive Ecosystem | Contribution | To | Hive | Ecosystem | |--------------|----|------|-----------| | Hive Witness Node | Hive API Node (in progress) | 3Speak Video Encoder Node Operator (highest number of nodes) | 3Speak Mobile App Developer | | 3Speak Podcast App Developer | 3Speak Shorts App Developer | 3Speak Support & Maintenance Team | [Distriator Developer](https://distriator.com/) | | [CheckinWithXYZ](https://checkinwith.xyz/) | [Hive Inbox](https://hive-inbox.the-hive-mobile.app/) | [HiFind](https://hifind.the-hive-mobile.app/) | [Hive Donate App](https://donate.the-hive-mobile.app/) | | Contributed to HiveAuth Mobile App | Ecency โ 3Speak Integration | Ecency โ InLeo Integration | Ecency โ Actifit Integration | | [Hive Stats App](https://stats.the-hive-mobile.app/) | [Vote for Witness App](https://witness.the-hive-mobile.app/) | [HiveFlutterKit](https://hiveflutterkit.sagarkothari88.one/docs/intro) | [New 3Speak App](https://3speak.sagarkothari88.one/#/?tab=home) | --- ### ๐ Support Back โค๏ธ **Appreciate my work? Consider supporting @threespeak & @sagarkothari88!** โค๏ธ | Vote | For | Witness | |------|-----|---------| | [](https://witness.the-hive-mobile.app/#/witnesses/@sagarkothari88) | [sagarkothari88](https://witness.the-hive-mobile.app/#/witnesses/@sagarkothari88) | @sagarkothari88 | | [](https://witness.the-hive-mobile.app/#/witnesses/@threespeak) | [threespeak](https://witness.the-hive-mobile.app/#/witnesses/@threespeak) | @threespeak | ---
author | sagarkothari88 |
---|---|
permlink | upgrading-hive-onboarding-from-snail-speed-to-lightning-fast-with-api-magic |
category | hive-139531 |
json_metadata | "{"app":"peakd/2025.7.3","format":"markdown","description":"Switched CheckinWithXyz onboarding to API-powered boosts ๐ Instant rewards, better tracking & scripts for missing data","tags":["hive","development","india","waiv","neoxian","witness","checkinwithxyz","pimp","pob","bro"],"users":["starkerz","meno","ecoinstant","eddiespino","hiveio","threespeak","sagarkothari88"],"image":["https://media.tenor.com/kI2WQAiG3KAAAAAC/waiting.gif","https://media.tenor.com/ACa-OD0jYcAAAAAC/blow-money-geld-verdienen.gif","https://media.tenor.com/R6mBrn0nQ1MAAAAC/sort-graph.gif","https://media.tenor.com/XKAoRp1nL0sAAAAC/javascript-i-love-it.gif","https://images.hive.blog/u/sagarkothari88/avatar","https://images.hive.blog/u/threespeak/avatar"]}" |
created | 2025-08-06 04:31:00 |
last_update | 2025-08-06 04:31:00 |
depth | 0 |
children | 7 |
last_payout | 2025-08-13 04:31:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 14.160 HBD |
curator_payout_value | 14.132 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6,300 |
author_reputation | 572,009,936,287,495 |
root_title | "๐ Upgrading Hive Onboarding: From Snail Speed ๐ to Lightning Fast โก๏ธ with API Magic" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 144,726,482 |
net_rshares | 88,823,112,490,987 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ardina | 0 | 16,940,709,494 | 100% | ||
daveks | 0 | 924,095,160,850 | 18% | ||
penguinpablo | 0 | 143,236,720,594 | 14% | ||
funnyman | 0 | 1,546,275,142 | 5.6% | ||
gamer00 | 0 | 19,419,417,211 | 5% | ||
mangos | 0 | 2,674,467,537,554 | 38% | ||
thecrazygm | 0 | 86,633,230,640 | 100% | ||
andyjaypowell | 0 | 614,137,224,768 | 51% | ||
nenio | 0 | 91,245,864,963 | 23% | ||
ecoinstant | 0 | 37,366,187,242 | 100% | ||
cryptoknight12 | 0 | 53,561,607,555 | 100% | ||
bsameep | 0 | 3,435,807,966 | 22.51% | ||
alphacore | 0 | 5,470,170,891 | 5.39% | ||
joeyarnoldvn | 0 | 449,319,413 | 1.47% | ||
hardikv | 0 | 1,483,749,525 | 11.25% | ||
eturnerx | 0 | 25,571,224,019 | 1.9% | ||
codingdefined | 0 | 82,849,639,310 | 11.25% | ||
sanjeevm | 0 | 1,573,487,202,795 | 30% | ||
oneray | 0 | 64,197,058,195 | 50% | ||
ahlawat | 0 | 18,072,527,680 | 30% | ||
aafeng | 0 | 226,052,768,936 | 25% | ||
valchiz | 0 | 1,058,720,879 | 10% | ||
etblink | 0 | 102,184,628,466 | 11.25% | ||
stoodkev | 0 | 9,821,311,372,774 | 70% | ||
noloafing | 0 | 3,080,830,438 | 49.76% | ||
accelerator | 0 | 21,252,363,179 | 60% | ||
artonmysleeve | 0 | 1,716,557,622 | 9% | ||
tomiscurious | 0 | 271,470,127,215 | 45.7% | ||
sorin.cristescu | 0 | 317,314,815,928 | 50% | ||
fatman | 0 | 9,284,728,873 | 2% | ||
votehero | 0 | 26,854,181,284 | 5.3% | ||
deathwing | 0 | 1,368,482,484,541 | 50% | ||
splash-of-angs63 | 0 | 5,277,452,955 | 20% | ||
msp-makeaminnow | 0 | 27,022,787,408 | 28.6% | ||
jatinhota | 0 | 42,952,168,942 | 40% | ||
lifecruiser | 0 | 4,253,022,161 | 50% | ||
inuke | 0 | 3,752,666,882 | 50% | ||
emrebeyler | 0 | 1,698,651,975,431 | 35% | ||
bobinson | 0 | 259,435,729,984 | 22.51% | ||
sankysanket18 | 0 | 501,168,584 | 11.25% | ||
paulmoon410 | 0 | 25,351,249,144 | 75% | ||
sidp715 | 0 | 1,005,770,656 | 22.51% | ||
vishire | 0 | 772,501,812 | 22.51% | ||
silenteyes | 0 | 742,485,287 | 11.25% | ||
jozefkrichards | 0 | 5,153,435,832 | 50% | ||
kernelillo | 0 | 1,476,503,267 | 50% | ||
nathen007 | 0 | 993,779,391,557 | 100% | ||
shonyishere | 0 | 1,223,939,160 | 22.51% | ||
sneakyninja | 0 | 17,138,731,927 | 24.88% | ||
steembasicincome | 0 | 3,087,957,662,337 | 100% | ||
cryptonized | 0 | 236,772,743 | 14% | ||
spydo | 0 | 46,727,100,180 | 11.25% | ||
frames | 0 | 865,354,442 | 25% | ||
deepresearch | 0 | 761,028,997,713 | 17% | ||
irisworld | 0 | 1,243,980,709 | 7.5% | ||
bengy | 0 | 2,662,274,867 | 3% | ||
bala41288 | 0 | 743,067,185,058 | 20% | ||
m1alsan | 0 | 23,131,421,384 | 25% | ||
aakom | 0 | 451,987,680 | 100% | ||
indiaunited | 0 | 1,526,987,416,629 | 22.51% | ||
upfundme | 0 | 5,631,281,164 | 15% | ||
sudefteri | 0 | 45,134,597,540 | 50% | ||
anikys3reasure | 0 | 1,727,297,914 | 50% | ||
vinamra | 0 | 1,199,952,568 | 9% | ||
akifane | 0 | 1,642,052,027 | 50% | ||
abrockman | 0 | 3,093,008,581,071 | 100% | ||
louis88 | 0 | 3,070,967,194,991 | 100% | ||
sbi2 | 0 | 2,013,978,857,306 | 100% | ||
awesomegames007 | 0 | 1,285,663,488 | 50% | ||
knot | 0 | 42,843,846,562 | 50% | ||
manojbhatt | 0 | 10,450,235,350 | 22.51% | ||
rainbowbala | 0 | 707,623,108 | 22.51% | ||
cedricguillas | 0 | 308,525,546,218 | 70% | ||
maujmasti | 0 | 581,847,980 | 100% | ||
sbi3 | 0 | 987,154,146,858 | 100% | ||
sbi4 | 0 | 745,426,536,512 | 100% | ||
netzisde | 0 | 3,429,294,941 | 100% | ||
ragavee | 0 | 793,951,101 | 11.25% | ||
dailyspam | 0 | 35,573,520,481 | 30% | ||
frieder | 0 | 1,607,310,533 | 50% | ||
bububoomt | 0 | 5,424,266,747 | 100% | ||
sbi5 | 0 | 511,003,783,382 | 100% | ||
apshamilton | 0 | 885,897,271,370 | 40% | ||
indiaunited-bot | 0 | 866,561,884 | 22.51% | ||
sbi6 | 0 | 383,839,858,222 | 100% | ||
thedailysneak | 0 | 23,396,974,791 | 24.88% | ||
hamismsf | 0 | 287,377,486,958 | 40% | ||
smartvote | 0 | 85,655,658,892 | 4% | ||
vixmemon | 0 | 9,762,176,563 | 30.16% | ||
yaelg | 0 | 26,064,630,998 | 36% | ||
sbi7 | 0 | 286,155,599,482 | 100% | ||
cubapl | 0 | 3,832,163,619 | 30% | ||
tdas0 | 0 | 2,034,130,515 | 50% | ||
voxmortis | 0 | 11,192,995,417 | 6% | ||
thelittlebank | 0 | 1,006,304,591,931 | 50% | ||
a-bot | 0 | 13,638,821,731 | 30% | ||
voter002 | 0 | 26,973,810,663 | 55.4% | ||
ravensavage | 0 | 4,893,319,618 | 49.76% | ||
ecoinstats | 0 | 218,229,458,579 | 100% | ||
sbi8 | 0 | 211,526,045,840 | 100% | ||
piestrikesback | 0 | 659,043,206 | 100% | ||
sbi9 | 0 | 154,107,544,789 | 100% | ||
brianoflondon | 0 | 6,134,243,492,071 | 80% | ||
sbi10 | 0 | 114,910,289,523 | 100% | ||
jpbliberty | 0 | 462,110,488 | 80% | ||
karishmasingh711 | 0 | 4,369,787,580 | 22.51% | ||
khan.dayyanz | 0 | 10,293,722,631 | 20.25% | ||
jacuzzi | 0 | 687,791,275 | 1.4% | ||
eternalsuccess | 0 | 14,351,040,207 | 11.25% | ||
hungrybear | 0 | 624,647,876 | 14% | ||
coolmole | 0 | 44,692,883,809 | 50% | ||
guysellars | 0 | 2,366,238,400 | 100% | ||
filosof103 | 0 | 104,297,703,807 | 50% | ||
bigmoneyman | 0 | 526,956,570 | 30% | ||
badfinger | 0 | 642,655,331 | 11.25% | ||
everythingsmgirl | 0 | 7,561,460,199 | 50% | ||
bala-ag | 0 | 115,764,635 | 20% | ||
sbi-tokens | 0 | 25,224,473,336 | 49.76% | ||
kanibot | 0 | 46,568,582,498 | 20% | ||
urun | 0 | 2,984,233,984 | 100% | ||
electronico | 0 | 4,810,337,549 | 50% | ||
bozz.sports | 0 | 11,271,468,324 | 5% | ||
qwertm | 0 | 3,966,769,265 | 50% | ||
stoodmonsters | 0 | 35,251,064,631 | 70% | ||
davidlionfish | 0 | 10,390,920,489 | 100% | ||
treasure.hoard | 0 | 433,059,796,698 | 100% | ||
dpend.active | 0 | 3,838,311,234 | 10% | ||
tht | 0 | 7,740,350,813 | 100% | ||
ykretz | 0 | 1,386,257,703 | 15% | ||
imfarhad | 0 | 30,027,956,991 | 24% | ||
sketching | 0 | 7,256,775,857 | 50% | ||
balvinder294 | 0 | 7,676,182,355 | 30% | ||
archon-gov | 0 | 98,165,153,583 | 50% | ||
dikshabihani | 0 | 937,058,758 | 11.25% | ||
r-nyn | 0 | 16,179,507,163 | 11% | ||
barbyjr | 0 | 825,320,948 | 11.25% | ||
trcommunity | 0 | 0 | 50% | ||
yogeshbhatt | 0 | 1,921,647,071 | 22.51% | ||
godfather.ftw | 0 | 13,318,269,831 | 20.25% | ||
hykss.leo | 0 | 104,679,104,817 | 10% | ||
szukamnemo | 0 | 28,980,194,928 | 8.5% | ||
pokerarema | 0 | 431,157,049,999 | 100% | ||
ausbit.dev | 0 | 13,469,527,843 | 50% | ||
emsenn0 | 0 | 1,995,918,423 | 9.95% | ||
brofi | 0 | 720,500,622,468 | 20% | ||
muterra | 0 | 148,342,523,802 | 22.51% | ||
okluvmee | 0 | 19,829,541,990 | 11.25% | ||
brofund-witness | 0 | 1,135,397,808 | 20% | ||
soltecno | 0 | 43,982,064,165 | 100% | ||
louis.pay | 0 | 1,106,903,018 | 100% | ||
zwhammer | 0 | 922,009,655 | 40% | ||
hive.friends | 0 | 871,918,953 | 50% | ||
disha30 | 0 | 2,852,793,607 | 22.51% | ||
hivehydra | 0 | 689,406,185 | 72% | ||
podping | 0 | 503,023,231,343 | 80% | ||
kamaleshwar | 0 | 3,402,606,151 | 22.51% | ||
chandra.shekar | 0 | 16,341,562,890 | 22.51% | ||
kannannv | 0 | 38,396,994,987 | 22.51% | ||
cryptoccshow | 0 | 1,110,171,203 | 40% | ||
bilgin70 | 0 | 38,430,944,066 | 25% | ||
aequi | 0 | 155,122,683,191 | 70% | ||
elderdark | 0 | 52,245,783,572 | 56% | ||
tub3r0 | 0 | 518,930,293 | 7% | ||
mxm0unite | 0 | 1,631,684,807 | 50% | ||
mimi.ruby | 0 | 158,939,953,506 | 70% | ||
beardoin | 0 | 11,597,383,128 | 20% | ||
sevatar | 0 | 2,052,695,545 | 100% | ||
techguard | 0 | 562,052,144 | 8.5% | ||
michupa | 0 | 165,501,100,647 | 70% | ||
beffeater | 0 | 8,222,122,044 | 35% | ||
deimage | 0 | 7,155,553,927 | 11.25% | ||
heutorybr | 0 | 937,534,591 | 35% | ||
hoffmeister84 | 0 | 11,167,405,634 | 70% | ||
heteroclite | 0 | 8,047,596,405 | 11.25% | ||
mmoonn | 0 | 1,569,767,060 | 100% | ||
passenger777 | 0 | 62,484,253,073 | 25% | ||
marynn | 0 | 626,680,258 | 11.25% | ||
dr-animation | 0 | 3,386,231,237 | 75% | ||
djblendah | 0 | 860,885,874 | 100% | ||
balaz | 0 | 24,844,862,359 | 20% | ||
thorlock | 0 | 74,596,762,097 | 50% | ||
dusunenkalpp | 0 | 24,679,227,530 | 50% | ||
ryosai | 0 | 6,026,427,510 | 24% | ||
prosocialise | 0 | 55,676,176,844 | 11.25% | ||
ipexito | 0 | 838,001,793 | 40% | ||
kilvnrex | 0 | 3,999,941,852 | 30% | ||
mighty-thor | 0 | 3,066,437,528 | 50% | ||
mukadder | 0 | 35,128,394,930 | 35% | ||
coldbeetrootsoup | 0 | 4,377,467,645,996 | 100% | ||
abreusplinter | 0 | 2,746,018,695 | 35% | ||
incublus | 0 | 123,359,117,356 | 50% | ||
monsterrerentals | 0 | 31,407,545,670 | 100% | ||
splinterwhale | 0 | 2,167,839,856 | 50% | ||
pinkchic | 0 | 1,007,674,203 | 3.37% | ||
hive-132595 | 0 | 1,880,840,922 | 100% | ||
tuba777 | 0 | 501,588,373 | 11.25% | ||
fredaig | 0 | 1,713,656,463 | 50% | ||
tekraze | 0 | 1,792,047,433 | 60% | ||
imacryptogeek | 0 | 7,137,223,830 | 22.51% | ||
threespeakvoter | 0 | 15,574,730,794,448 | 100% | ||
peakecoin | 0 | 1,072,954,520 | 75% | ||
fokusnow | 0 | 949,036,761,520 | 70% | ||
beauty197 | 0 | 10,492,538,156 | 50% | ||
ijelady | 0 | 1,098,234,269 | 11.25% | ||
marajah | 0 | 12,649,679,017 | 20% | ||
sammyhive | 0 | 1,304,961,698 | 50% | ||
emjeak | 0 | 1,818,023,832 | 35% | ||
dovycola | 0 | 24,534,530,516 | 100% | ||
hive.samadi | 0 | 7,759,924,682 | 100% | ||
ecencypoints | 0 | 16,250,439,951 | 60% | ||
pof.archon | 0 | 460,908,696 | 50% | ||
abhay2695 | 0 | 674,232,258 | 11.25% | ||
luchyl | 0 | 20,712,681,114 | 44% | ||
threads247 | 0 | 4,421,888,734 | 70% | ||
briefmarken | 0 | 44,509,076,273 | 100% | ||
dailydab | 0 | 342,335,606,483 | 10% | ||
dev.maverick | 0 | 7,055,330,707 | 22.51% | ||
hivedrip | 0 | 46,130,875,936 | 50% | ||
iamchimary | 0 | 3,245,033,860 | 50% | ||
like2cbrs | 0 | 2,388,131,503 | 100% | ||
flourishandflora | 0 | 1,504,118,980 | 11.25% | ||
adeade123 | 0 | 602,310,325 | 11.25% | ||
tebesc | 0 | 4,949,217,171 | 5.62% | ||
cbrsphilanthropy | 0 | 75,262,552,974 | 100% | ||
clubvote | 0 | 4,826,263,323 | 2% | ||
somecallmejake | 0 | 12,579,926,229,113 | 100% | ||
ifhy | 0 | 1,053,919,909 | 35% | ||
setpiece | 0 | 892,195,452 | 100% | ||
kaveira | 0 | 564,393,681 | 35% | ||
sprunk | 0 | 1,800,600,447 | 100% | ||
hive-188753 | 0 | 1,208,773,372 | 50% | ||
peakecoin.bnb | 0 | 560,507,069 | 75% | ||
bbypanda4 | 0 | 1,669,326,757 | 22.51% | ||
dab-vote | 0 | 136,453,179,057 | 10% | ||
distriator.bene | 0 | 296,363,256,171 | 100% | ||
distriator-voter | 0 | 23,137,659,134 | 100% | ||
vastavikadi | 0 | 5,382,624,957 | 100% | ||
ryanaa | 0 | 50,575,194,640 | 100% | ||
kachy2022 | 0 | 9,850,281,185 | 100% | ||
michael561 | 0 | 2,706,884,774 | 9.95% | ||
ecp.curator | 0 | 163,464,961 | 100% | ||
thecrazygm.bank | 0 | 11,582,534,752 | 100% | ||
happycustomer | 0 | 14,462,660,788 | 70% | ||
marpasifico | 0 | 4,588,539,380 | 100% | ||
letusbuyhive | 0 | 1,259,391,020,307 | 25% | ||
magic.byte | 0 | 0 | 100% | ||
v-36 | 0 | 1,078,586,539 | 100% | ||
threespeakselfie | 0 | 65,449,809,419 | 100% | ||
lovelymusictube1 | 0 | 2,090,454,743 | 50% | ||
betoman | 0 | 7,575,998,208 | 100% | ||
kamaraa | 0 | 2,338,389,380 | 20% | ||
tinababy | 0 | 1,641,893,414 | 35% | ||
amma1 | 0 | 2,854,958,889 | 78% |

author | bhattg |
---|---|
permlink | re-sagarkothari88-202586t113131967z |
category | hive-139531 |
json_metadata | {"tags":["hive","development","india","waiv","neoxian","witness","checkinwithxyz","pimp","pob","bro"],"app":"ecency/4.2.2-vision","format":"markdown+html"} |
created | 2025-08-06 06:01:27 |
last_update | 2025-08-06 06:01:27 |
depth | 1 |
children | 1 |
last_payout | 2025-08-13 06:01: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 | 183 |
author_reputation | 1,183,906,509,412,688 |
root_title | "๐ Upgrading Hive Onboarding: From Snail Speed ๐ to Lightning Fast โก๏ธ with API Magic" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 144,727,540 |
net_rshares | 0 |
It may appear to be like the gif you've shared but in reality it is as follows  ye comment ne pizza bot trigger kar diye! and main apne aap ko hi pizza de diye abhi comment delete kiye
author | sagarkothari88 |
---|---|
permlink | re-bhattg-t0kg8z |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.7.3"} |
created | 2025-08-06 09:41:24 |
last_update | 2025-08-06 09:41:24 |
depth | 2 |
children | 0 |
last_payout | 2025-08-13 09:41:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.066 HBD |
curator_payout_value | 0.065 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 261 |
author_reputation | 572,009,936,287,495 |
root_title | "๐ Upgrading Hive Onboarding: From Snail Speed ๐ to Lightning Fast โก๏ธ with API Magic" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 144,730,333 |
net_rshares | 424,393,049,740 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ecoinstant | 0 | 36,626,164,432 | 100% | ||
eturnerx | 0 | 270,934,079,013 | 20.1% | ||
fatman | 0 | 9,281,967,349 | 2% | ||
votehero | 0 | 26,830,199,608 | 5.3% | ||
msp-makeaminnow | 0 | 27,152,433,460 | 28.9% | ||
investegg | 0 | 26,714,175,427 | 13.9% | ||
voter001 | 0 | 26,854,030,451 | 24.8% |
Congratulations @sagarkothari88! 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/@sagarkothari88/posts.png?202508060501"></td><td>You published more than 600 posts.<br>Your next target is to reach 650 posts.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@sagarkothari88) 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-delegations"><img src="https://images.hive.blog/64x128/https://i.imgur.com/fg8QnBc.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202507-delegations">Our Hive Power Delegations to the July PUM Winners</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pud-202508-feedback"><img src="https://images.hive.blog/64x128/https://i.imgur.com/zHjYI1k.jpg"></a></td><td><a href="/hive-122221/@hivebuzz/pud-202508-feedback">Feedback from the August Hive Power Up Day</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pum-202507-result"><img src="https://images.hive.blog/64x128/https://i.imgur.com/mzwqdSL.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202507-result">Hive Power Up Month Challenge - July 2025 Winners List</a></td></tr></table>
author | hivebuzz |
---|---|
permlink | notify-1754456555 |
category | hive-139531 |
json_metadata | {"image":["https://hivebuzz.me/notify.t6.png"]} |
created | 2025-08-06 05:02:33 |
last_update | 2025-08-06 05:02:33 |
depth | 1 |
children | 0 |
last_payout | 2025-08-13 05:02: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 | 1,482 |
author_reputation | 369,453,447,910,439 |
root_title | "๐ Upgrading Hive Onboarding: From Snail Speed ๐ to Lightning Fast โก๏ธ with API Magic" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 144,726,828 |
net_rshares | 0 |
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=166300.12120983514%20VESTS), [250HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=415750.30302458786%20VESTS), [500HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=831500.6060491757%20VESTS), [1000HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=1663001.2120983514%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 7.51% vote for delegating HP / holding IUC tokens.
author | indiaunited | ||||||
---|---|---|---|---|---|---|---|
permlink | indiaunited-1754456099358 | ||||||
category | hive-139531 | ||||||
json_metadata | {"app":"hiveblog/0.1","format":"markdown","tags":["hive","development","india","waiv","neoxian","witness","checkinwithxyz","pimp","pob","bro"]} | ||||||
created | 2025-08-06 04:55:00 | ||||||
last_update | 2025-08-06 04:55:00 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2025-08-13 04:55: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 | 1,411 | ||||||
author_reputation | 101,663,946,202,327 | ||||||
root_title | "๐ Upgrading Hive Onboarding: From Snail Speed ๐ to Lightning Fast โก๏ธ with API Magic" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 144,726,732 | ||||||
net_rshares | 0 |
Please stop downvoting my original content with your alt account @letusbuyhive and you can tell your friends to fuck off as well ๐๐๐๐๐ Blocktrades can you please stop downvoting my original content with your alt accounts thanks ๐๐พ ๐๐๐๐๐๐๐๐๐๐๐๐๐ Don't be jealous So sad @themarkymark aka @theycallmemarky Aka @marky @gogreenbuddy Aka @usainvote @buildawhale Aka @punkteam Aka @ipromote @letusbuyhive Aka @sagarkothari88 please explain why you keep downvoting my original content and comments ๐ค Please explain to everyone why ๐ค @meno @steevc @crimsonclad @azircon let's not forget blocktrades ๐ please tell your racist friend to stop downvoting my original content How can we we allow a mentally ill person to have so much control on Hive ๐ It's unbelievable you downvoted this [Goodbye Auntie R.I.P ๐๐พ](https://hive.blog/hive-148441/@kgakakillerg/goodbye-auntie-r-i-p) You fucked up big time it's clear blocktrades is in control ๐ If nothing can be done about your downvote abuse then Hive is a dead project ๐๐พ It's crazy that the person doing the downvoting is also farming the shit out of Hive ๐๐๐๐ If anyone wants to speak to me privately send me a message on Instagram @kgakakillerg You can never stop the truth with lies ๐๐๐๐๐๐ It's crazy we have a man who pretends to be a millionaire running around Hive downvoting people for fun ๐ค and nothing has been done ๐ค It's crazy that someone is trying to bully me on Hive ๐๐๐๐๐๐๐๐ It's unbelievable that no one has came to help as people are afraid to say anything or they get downvoted too ๐๐๐๐๐๐ There's no real freedom on Hive if one person can cause so much harm I feel sorry for you ๐๐พ One thing you need to remember you can't take anything with you ๐๐๐๐ Go and enjoy your life have a bit of fun let your hair down go out and meet some real people in the flesh ๐ Your actions show that you must own Hive Blockchain ๐ค why do your actions go unchallenged ๐ค You are now stalking me ๐๐๐๐ Are you jealous about the DHF ๐๐๐๐ Aren't you farming enough rewards ๐๐๐๐ I heard you were into very young girls ๐๐๐๐๐๐ Is that why you are always online ๐ค Stalking people No one is scared of you ๐๐๐๐๐๐๐ You are bad for Hive Power down and go away get a life https://hive.blog/hive-135178/@crimsonclad/re-kgakakillerg-sxllhv https://hive.blog/hive-148441/@hivewatchers/svftu9 https://hive.blog/hive-148441/@hivewatchers/svdjjz https://hive.blog/hive-176853/@steevc/re-kgakakillerg-syyy4x https://hive.blog/dev/@howo/re-kgakakillerg-szhax7 https://hive.blog/hive/@steevc/follow-friday-respect https://hive.blog/hive-127022/@shmoogleosukami/re-kgakakillerg-t0hcxc It's unbelievable that they downvoted this [Goodbye Auntie R.I.P ๐๐พ](https://hive.blog/hive-148441/@kgakakillerg/goodbye-auntie-r-i-p) It's clear you need help ๐๐พ Hive is being held down by downvoting whales Do you get a buzz out of downvoting people ๐ค You should really try to get outside more spend some time in the real world ๐๐ Why are you pushing people away to blurt and steemit You are all definitely going to hell ๐๐๐๐๐๐๐๐ Why do you want to make enemies all over the world ๐ค Blocktrades stop making a fool of yourself ๐๐๐๐๐๐ Steevc please explain to your friend they have been exposed ๐๐๐๐๐ Downvotes are weak like you ๐๐๐๐๐๐๐ Why don't you go and spend your millions of dollar's you have ๐๐๐๐๐๐๐๐๐๐๐๐ Blocktrades please explain why you keep downvoting my original content with your alt accounts ๐ค You are so sad it's unreal ๐๐๐๐๐ You must know that you can't hide on Hive ๐๐๐๐๐๐๐ If you want everyone to leave Hive keep doing what you are doing ๐๐๐๐๐๐๐๐๐๐ Just remembered who started this I'll be here to turn the lights off ๐๐๐๐๐๐ You are still stalking me ๐๐๐๐๐ it proves you have no life outside of Hive ๐๐๐๐๐๐๐๐๐พ๐๐พ๐๐พ๐๐พ๐๐พ๐๐พ๐๐พ๐๐๐๐๐ Blocktrades please can you stop downvoting my original content with your alt accounts ๐ค Also is bullying people ok on Hive ๐ค You are only making Hive look like a big scam Why do you keep stalking me I'm not gay sorry I can't help you ๐๐พ Just tell me what the issue is ๐ค You are that stupid you set up an account called letusbuyhive to downvote people and support your farming Hive friend's ๐๐๐๐๐ and @buildawhale Please get some help ๐๐พ It's clear who has mental health issues that's why you should really stop pointing fingers at others ๐๐๐๐๐๐๐๐๐ It's clear blocktrades is behind this ๐๐๐๐๐ Can you please explain why you keep downvoting my original content I don't want to hear it's because disagreement of rewards I don't make any ๐๐๐๐๐ Please move on with your life blocktrades and leave me alone thank you ๐๐พ Please tell everyone why you keep downvoting my original content ๐ค Still stalking me ๐๐๐๐๐๐ The way you are stalking me it's clear you have no Life outside of Hive ๐๐๐๐๐๐๐ Keep downvoting people away ๐๐๐๐๐ Some people never learn ๐๐๐๐๐๐๐๐คฃ๐คฃ๐คฃ๐คฃ๐คฃ Is life that bad ๐๐๐๐๐ You can't win this ๐๐๐๐๐๐๐๐๐
author | kgakakillerg |
---|---|
permlink | t0k33a |
category | hive-139531 |
json_metadata | {"users":["letusbuyhive","themarkymark","theycallmemarky","marky","gogreenbuddy","usainvote","buildawhale","punkteam","ipromote","sagarkothari88","meno","steevc","crimsonclad","azircon","kgakakillerg"],"links":["https://hive.blog/hive-148441/@kgakakillerg/goodbye-auntie-r-i-p"],"app":"hiveblog/0.1"} |
created | 2025-08-06 04:57:12 |
last_update | 2025-08-06 04:57:12 |
depth | 1 |
children | 0 |
last_payout | 2025-08-13 04:57: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 | 4,965 |
author_reputation | 440,243,509,563,856 |
root_title | "๐ Upgrading Hive Onboarding: From Snail Speed ๐ to Lightning Fast โก๏ธ with API Magic" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 144,726,775 |
net_rshares | 0 |
Awesome news, and you are programing on lightning speed โก
author | vaipraonde |
---|---|
permlink | re-sagarkothari88-t0k242 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.7.3","image":[],"users":[]} |
created | 2025-08-06 04:36:03 |
last_update | 2025-08-06 04:36:03 |
depth | 1 |
children | 0 |
last_payout | 2025-08-13 04:36: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 | 57 |
author_reputation | 82,428,553,662,833 |
root_title | "๐ Upgrading Hive Onboarding: From Snail Speed ๐ to Lightning Fast โก๏ธ with API Magic" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 144,726,531 |
net_rshares | 0 |
One question for you, why do you get these spam comments under your post only?
author | vastavikadi |
---|---|
permlink | re-sagarkothari88-202587t21200615z |
category | hive-139531 |
json_metadata | {"links":[],"type":"comment","tags":["hive-139531","hive","development","india","waiv","neoxian","witness","checkinwithxyz","pimp","pob","bro"],"app":"ecency/3.3.3-mobile","format":"markdown+html"} |
created | 2025-08-07 15:50:03 |
last_update | 2025-08-07 15:50:03 |
depth | 1 |
children | 0 |
last_payout | 2025-08-14 15:50: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 | 78 |
author_reputation | 469,291,715,348 |
root_title | "๐ Upgrading Hive Onboarding: From Snail Speed ๐ to Lightning Fast โก๏ธ with API Magic" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 144,773,412 |
net_rshares | 0 |