Hello Hive Community Members π, The **Distriator** app is getting a ReactJS glow-up β¨ β and if things go right, we might finally say goodbye to that bloated Flutter build πͺ¦. As always, **everything is open source** (because sharing is caring β€οΈ), so if you missed the earlier drama, hereβs your binge-worthy recap πΊπ. --- ### π **Epic Learning Journey Recap** Missed a day? Hereβs the trail of my glorious *ReactJS misadventures*: - [π **Day 1**](https://peakd.com/hive-139531/@sagarkothari88/integrate-aioha-with-your-react-app-from-scratch-vite--tailwind--daisyui) β Fresh React app + AIOHA integration! - [π§ **Day 2**](https://peakd.com/hive-139531/@sagarkothari88/integrating-react-router-my-routing-adventures-with-react) β Routing drama & rebellious NavBar - [π οΈ **Day 3**](https://peakd.com/hive-139531/@sagarkothari88/from-navbar-mess-to-react-router-success-fixing-layouts-routing-and-aioha-in-one-go) β Fixed layouts, Routing & AIOHA - [π§ **Day 4**](https://peakd.com/hive-139531/@sagarkothari88/day-4-reactjs-adventures--distriator-progress-usestate-useeffect-and-env-chaos) β useState, useEffect & .env headaches π - [π§Ή **Day 5**](https://peakd.com/hive-139531/@sagarkothari88/level-up-your-imports-using-path-aliases-for-cleaner-react--typescript-projects) β Path aliases to clean up path spaghetti π - [π‘ **Day 6**](https://peakd.com/hive-139531/@sagarkothari88/day-6-learning-reactjs-calling-apis-and-creating-context-providers-or-distriator-feature-update) β Create Context Provider & call API - [π **Day 7**](https://peakd.com/hive-139531/@sagarkothari88/learning-reactjs--vite--ts--aioha-day-7-show-a-toast-message) β Show a toast message - [π **Day 8**](https://peakd.com/hive-139531/@sagarkothari88/day-8-secure-login-with-aioha-and-localstorage-magic) β Login magic with LocalStorage - [π **Day 9**](https://peakd.com/hive-139531/@sagarkothari88/day-9-toasts-laughs-and-custom-magic) β Toasts, laughs & custom tricks - [π **Day 10**](#) β Handle user account switch + fresh JWT Token - [π **Day 11**](#) β Integrating API for cashback details --- ## π΅ **Day 12: Designing the Cashback ClaimBox** This time, weβre showing users a beautiful, irresistible βClaim Cashbackβ card π whenever their cashback is ready to be grabbed. ### π **Thought Process** Originally: βLetβs just put a box in the center with a button.β Brain: β βNope, donβt reinvent the wheel.β Solution: Scroll through [DaisyUI](https://daisyui.com/) like itβs Pinterest, and pick something gorgeous. --- ### π **The Card That Stole My Heart** After scrolling... BAM π β this card component caught my eye.  JSX? Barely 10 lines π€―. Copy. Paste. Letβs roll.  --- ### π¦ **ClaimBox Component** - Created `ClaimBox.tsx` - Grabbed API attributes: - Transaction timestamp π - Business name πͺ - Claimable cashback amount π΅ - Transaction amount π³  --- ### β³ **Timer Logic** Cashback = claimable for **2 hours** after transaction. We: 1. Grab timestamp 2. Add 2 hrs 3. Show countdown (HH:MM:SS) 4. Update every 1 sec β±οΈ ```ts function formatSecondsToHHMMSS(totalSeconds: number): string { if (totalSeconds < 0) return ''; const hours = Math.floor(totalSeconds / 3600); const minutes = Math.floor((totalSeconds % 3600) / 60); const seconds = parseInt((totalSeconds % 60).toFixed(0)); const pad = (num: number) => String(num).padStart(2, "0"); return `${pad(hours)}:${pad(minutes)}:${pad(seconds)}`; } ``` #### πͺ Getting Business Info Using the Business Provider to get: - Profile Image π· - Display Name π·οΈ [In this post](https://peakd.com/hive-139531/@sagarkothari88/day-6-learning-reactjs-calling-apis-and-creating-context-providers-or-distriator-feature-update), we discussed about implementing business provider. From that provider, we'll access businesses. From list of businesses, we'll get business display name & business profile image. Step 1. Import business provider ``` import { useBusinesses } from "@/context/BusinessesContext"; ``` Step 2. Declare business provider variable ``` const { businesses } = useBusinesses(); ``` Step 3. Get Business Profile Display Image ``` const getBusinessImage = (username: string) => { const filteredItems = businesses.filter( (b) => b.distriator?.owner === username ); if (filteredItems.length > 0) { return ( filteredItems[0].profile?.displayImage || "https://img.daisyui.com/images/stock/photo-1606107557195-0e29a4b5b4aa.webp" ); } else { return "https://img.daisyui.com/images/stock/photo-1606107557195-0e29a4b5b4aa.webp"; } }; ``` Step 4. Get Business Profile Display Name ``` const getBusinessName = (username: string) => { const filteredItems = businesses.filter( (b) => b.distriator?.owner === username ); if (filteredItems.length > 0) { return filteredItems[0].profile?.displayName || "Business Name"; } else { return "Business Name"; } }; ``` #### π¨ Final ClaimBox UI ``` return ( <div className="card bg-base-100 w-96 shadow-sm"> <figure> <img src={getBusinessImage(claim.business)} alt={`${getBusinessName(claim.business)}`} /> </figure> <div className="card-body"> <h2 className="card-title">{claim.claimValue} Cashback</h2> <p> Your recent spent of {claim.amount}, at {getBusinessName(claim.business)}, is eligible for claiming a cashback </p> <div className="card-actions justify-end items-center"> <span className="text-lg font-bold text-red-600 animate-blink"> Time Left {timeText} </span> <button className="btn btn-primary">Claim Now!</button> </div> </div> </div> ); ``` #### π Centering the Magic Show loader if loading, βNo claim availableβ if empty, else ClaimBox π.  #### π₯ Drumroll... Tada! `npm run dev` β Profit.  Looks wonderful, right? π #### π Open Source Goodness - Github Repository Link: https://github.com/sag333ar/react-distriator - Review Last commit changes: https://github.com/sag333ar/react-distriator/commit/33d842e2f0cb697d8b4d61c44c7c8a1d98be9a2e - Snapshot: https://github.com/sag333ar/react-distriator/tree/33d842e2f0cb697d8b4d61c44c7c8a1d98be9a2e #### π€ Why Flutter? Why Me? After this, I questioned my life choicesβ¦ Flutter? Native apps? When ReactJS makes it this simple? π But hey, lesson learned β and we now have ClaimBox integrated π―. #### π Power to Hive - π Hive to the moon (and beyond!) - β€οΈ Power to Hive community - πͺ Power to Hive blockchain Thanks for reading! Drop your feedback & see you in the next one βοΈ. --- ### π Final Note - I asked ChatGPT/AI 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://chatgpt.com/share/689a853f-e634-8000-8a8a-7a1929030940 --- ### π 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 | reactjs-adventures-designing-a-cashback-claimbox-for-distriator |
category | hive-139531 |
json_metadata | "{"app":"peakd/2025.8.3","format":"markdown","description":"Building a fun, sleek Cashback ClaimBox in ReactJS with DaisyUI β code, design, and a pinch of humor for the Hive fam π","tags":["hive","india","waiv","neoxian","bro","pizza","distriator","spendhbd","reactjs","dev"],"users":["sagarkothari88","threespeak"],"image":["https://files.peakd.com/file/peakd-hive/sagarkothari88/EokWQVx9BZJApPEySbwH1qZfmWWgoFdBAWh3D7wZk4KJhWfSH6MXGka7sVHYL534Wc8.png","https://files.peakd.com/file/peakd-hive/sagarkothari88/23t752JvVnU26LiSwBW2fwbn7ZWqyg8J9x3AegE4ybgX94QBDcfcYk8UZAKu8T7k6o8nb.png","https://files.peakd.com/file/peakd-hive/sagarkothari88/23tGXSy37QCRpp7EFnm9firGcz7fgk57P7otThaYmmhKYvG3giBvzsMcQnzvpQJqFcKok.png","https://files.peakd.com/file/peakd-hive/sagarkothari88/23t76oPDYmjkX6kNeW331roWc7cQ6C5Q3YUghLgcGH1URAAkK6GLQqB2bKwy1RTj1LDbW.png","https://files.peakd.com/file/peakd-hive/sagarkothari88/EoiTmwnQ7RC3dzFW2vUAGcnsopQLty32ZHaDYwHaqYqLgK1qN3Syo8hXWvpfw9t3Ryf.png","https://images.hive.blog/u/sagarkothari88/avatar","https://images.hive.blog/u/threespeak/avatar"]}" |
created | 2025-08-15 04:30:00 |
last_update | 2025-08-15 04:30:00 |
depth | 0 |
children | 1 |
last_payout | 2025-08-22 04:30:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 3.566 HBD |
curator_payout_value | 3.546 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9,308 |
author_reputation | 598,298,887,573,363 |
root_title | "π― ReactJS Adventures: Designing a Cashback ClaimBox for Distriator π΅ π" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 145,007,385 |
net_rshares | 24,305,541,157,147 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
penguinpablo | 0 | 142,098,693,042 | 14% | ||
funnyman | 0 | 1,507,400,821 | 5.6% | ||
curatorwhale | 0 | 37,407,049,918 | 92% | ||
funnel | 0 | 7,256,541,963 | 10% | ||
humanearl | 0 | 2,329,987,266 | 80% | ||
shermanedwards | 0 | 719,518,539 | 50% | ||
thecrazygm | 0 | 79,272,265,082 | 100% | ||
bsameep | 0 | 4,395,882,570 | 27.51% | ||
alphacore | 0 | 7,330,311,240 | 7.12% | ||
joeyarnoldvn | 0 | 448,870,298 | 1.47% | ||
grocko | 0 | 4,916,593,338 | 5% | ||
hardikv | 0 | 1,881,865,481 | 13.75% | ||
st3llar | 0 | 5,696,231,049 | 25% | ||
codingdefined | 0 | 100,826,656,827 | 13.75% | ||
amymya | 0 | 619,415,101 | 10% | ||
bambukah | 0 | 1,764,222,791 | 2% | ||
aafeng | 0 | 222,695,830,484 | 25% | ||
etblink | 0 | 133,178,101,424 | 13.75% | ||
gray00 | 0 | 917,278,564 | 100% | ||
stoodkev | 0 | 9,884,930,986,779 | 70% | ||
noloafing | 0 | 1,005,028,236 | 17.04% | ||
accelerator | 0 | 21,395,353,845 | 60% | ||
splash-of-angs63 | 0 | 5,439,409,680 | 20% | ||
sku77-poprocks | 0 | 2,641,033,780 | 100% | ||
silasvogt | 0 | 1,143,458,966 | 50% | ||
jatinhota | 0 | 42,671,380,441 | 40% | ||
lifecruiser | 0 | 4,305,211,818 | 50% | ||
inuke | 0 | 3,872,815,364 | 50% | ||
bobinson | 0 | 346,272,252,188 | 27.51% | ||
sankysanket18 | 0 | 662,512,664 | 13.75% | ||
sidp715 | 0 | 837,023,091 | 27.51% | ||
vishire | 0 | 1,147,210,687 | 27.51% | ||
silenteyes | 0 | 938,060,713 | 13.75% | ||
shonyishere | 0 | 1,574,364,565 | 27.51% | ||
sneakyninja | 0 | 6,001,693,902 | 8.52% | ||
cryptonized | 0 | 234,495,376 | 14% | ||
frames | 0 | 881,406,067 | 25% | ||
irisworld | 0 | 1,324,199,606 | 7.5% | ||
gaborockstar | 0 | 59,148,331,725 | 50% | ||
bengy | 0 | 2,849,375,226 | 3% | ||
adventuroussoul | 0 | 2,182,772,043 | 10% | ||
bala41288 | 0 | 739,147,390,190 | 20% | ||
dynamicrypto | 0 | 4,633,471,269 | 5% | ||
indiaunited | 0 | 1,923,387,487,574 | 27.51% | ||
bishoppeter1 | 0 | 461,064,066 | 10% | ||
jazzhero | 0 | 2,996,183,197 | 3.75% | ||
neeqi | 0 | 464,019,401 | 100% | ||
tonysayers33 | 0 | 13,475,523,604 | 33% | ||
openmind3000 | 0 | 2,524,081,461 | 50% | ||
aperterikk | 0 | 573,401,577 | 50% | ||
fireguardian | 0 | 582,103,020 | 20% | ||
happymichael | 0 | 2,628,099,079 | 100% | ||
crowbarmama | 0 | 4,515,145,256 | 20% | ||
gabbyg86 | 0 | 22,051,830,313 | 35% | ||
originalmrspice | 0 | 13,653,056,430 | 50% | ||
abrockman | 0 | 3,062,922,652,702 | 100% | ||
ravenmus1c | 0 | 10,110,846,353 | 0.5% | ||
adamada | 0 | 4,987,874,042 | 5% | ||
sbi2 | 0 | 1,289,050,808,694 | 44.53% | ||
raqibul | 0 | 545,593,430 | 13.75% | ||
mrchef111 | 0 | 61,699,182,409 | 25% | ||
darkfuseion | 0 | 1,146,217,187 | 100% | ||
gisi | 0 | 4,453,872,503 | 10% | ||
illuminationst8 | 0 | 6,346,716,840 | 25% | ||
manojbhatt | 0 | 13,377,944,988 | 27.51% | ||
brainpod | 0 | 1,024,532,029 | 25% | ||
rainbowbala | 0 | 883,799,535 | 27.51% | ||
cedricguillas | 0 | 308,786,966,228 | 70% | ||
joeytechtalks | 0 | 1,594,505,746 | 50% | ||
maujmasti | 0 | 583,416,137 | 100% | ||
smacommunity | 0 | 974,059,249 | 50% | ||
brettblue | 0 | 823,413,499 | 50% | ||
ragavee | 0 | 977,633,567 | 13.75% | ||
onelovedtube | 0 | 14,425,360,255 | 100% | ||
toddmck | 0 | 2,508,270,604 | 100% | ||
sgbonus | 0 | 11,397,065,891 | 16% | ||
indiaunited-bot | 0 | 1,113,685,327 | 27.51% | ||
qila | 0 | 11,744,951,636 | 100% | ||
thedailysneak | 0 | 8,209,880,342 | 8.52% | ||
melor9 | 0 | 8,277,652,593 | 50% | ||
icepee | 0 | 16,114,275,786 | 50% | ||
bigbos99 | 0 | 590,770,485 | 100% | ||
smartvote | 0 | 80,873,427,198 | 3.7% | ||
josueelinfame | 0 | 13,989,999,862 | 100% | ||
dlike | 0 | 604,709,599,373 | 100% | ||
voxmortis | 0 | 11,212,901,071 | 6% | ||
a-bot | 0 | 14,143,053,423 | 30% | ||
babysavage | 0 | 3,175,237,052 | 17.04% | ||
ravensavage | 0 | 1,647,256,504 | 17.04% | ||
ecoinstats | 0 | 212,105,124,670 | 100% | ||
sbi-booster | 0 | 194,293,090,178 | 100% | ||
raoufwilly | 0 | 812,307,486 | 30% | ||
karishmasingh711 | 0 | 5,679,487,050 | 27.51% | ||
cowboysblog | 0 | 3,084,734,285 | 100% | ||
khan.dayyanz | 0 | 12,567,977,729 | 24.75% | ||
jacuzzi | 0 | 694,929,533 | 1.4% | ||
slothlydoesit | 0 | 19,727,753,306 | 10% | ||
kerlymera | 0 | 1,359,719,972 | 100% | ||
hungrybear | 0 | 620,432,617 | 14% | ||
thelogicaldude | 0 | 872,765,691 | 2% | ||
bigmoneyman | 0 | 520,295,388 | 30% | ||
iamangierose | 0 | 530,608,702 | 50% | ||
nooblogger | 0 | 462,551,694 | 5% | ||
badfinger | 0 | 792,182,044 | 13.75% | ||
everythingsmgirl | 0 | 7,554,628,077 | 50% | ||
bala-ag | 0 | 115,764,635 | 20% | ||
sbi-tokens | 0 | 14,925,457,586 | 17.04% | ||
kanibot | 0 | 46,285,388,930 | 20% | ||
bozz.sports | 0 | 12,311,722,992 | 5% | ||
whoreson | 0 | 9,276,890,515 | 100% | ||
stoodmonsters | 0 | 35,276,226,025 | 70% | ||
jordanjosue | 0 | 2,401,965,396 | 100% | ||
hive-134220 | 0 | 34,817,631,556 | 100% | ||
treasure.hoard | 0 | 385,305,701,752 | 100% | ||
hivetrending | 0 | 19,567,552,528 | 7.5% | ||
ykretz | 0 | 1,374,716,809 | 15% | ||
hivelist | 0 | 5,840,261,086 | 5% | ||
kingneptune | 0 | 455,379,670 | 5% | ||
balvinder294 | 0 | 4,169,744,307 | 30% | ||
archon-gov | 0 | 103,962,856,507 | 50% | ||
dikshabihani | 0 | 1,176,967,642 | 13.75% | ||
hive-108278 | 0 | 607,172,984 | 35% | ||
vandanabhatt | 0 | 543,972,852 | 27.51% | ||
gabrieljr | 0 | 1,523,026,754 | 50% | ||
yogeshbhatt | 0 | 2,517,104,185 | 27.51% | ||
cocaaladioxine | 0 | 19,216,276,193 | 97% | ||
godfather.ftw | 0 | 16,240,365,883 | 24.75% | ||
rondonshneezy | 0 | 1,030,520,403 | 5% | ||
dadspardan | 0 | 3,762,699,786 | 5% | ||
huzzah | 0 | 2,970,061,469 | 10% | ||
emsenn0 | 0 | 650,135,222 | 3.4% | ||
azamrai | 0 | 455,594,148,860 | 100% | ||
cooperclub | 0 | 1,991,101,852 | 5% | ||
rochow | 0 | 68,900,543 | 96.68% | ||
hive.pizza | 0 | 410,162,210,644 | 10% | ||
muterra | 0 | 188,940,669,555 | 27.51% | ||
okluvmee | 0 | 24,135,397,489 | 13.75% | ||
disha30 | 0 | 3,651,806,450 | 27.51% | ||
keithtaylor | 0 | 3,323,279,559 | 20% | ||
kamaleshwar | 0 | 4,207,897,408 | 27.51% | ||
chandra.shekar | 0 | 20,140,781,581 | 27.51% | ||
kannannv | 0 | 47,363,560,926 | 27.51% | ||
olympicdragon | 0 | 1,360,466,132 | 100% | ||
iamleicester | 0 | 486,952,531 | 80% | ||
aequi | 0 | 145,296,575,370 | 70% | ||
onewolfe | 0 | 449,702,712 | 50% | ||
banzafahra | 0 | 854,164,572 | 5% | ||
mimi.ruby | 0 | 159,056,572,734 | 70% | ||
deimage | 0 | 8,740,177,973 | 13.75% | ||
h3m4n7 | 0 | 2,056,709,217 | 9% | ||
spiritverve | 0 | 1,560,277,126 | 10% | ||
thedoc07 | 0 | 488,756,013 | 5% | ||
rc-assist | 0 | 20,859,886,307 | 70% | ||
baibuaza | 0 | 24,732,724,534 | 100% | ||
lothbrox | 0 | 896,125,042 | 100% | ||
hoffmeister84 | 0 | 11,005,087,591 | 70% | ||
pravesh0 | 0 | 336,661,909,200 | 100% | ||
heteroclite | 0 | 10,820,890,834 | 13.75% | ||
zuun.net | 0 | 320,122,777 | 12% | ||
djblendah | 0 | 891,777,172 | 100% | ||
balaz | 0 | 22,206,218,782 | 20% | ||
ryosai | 0 | 5,975,337,146 | 24% | ||
veryhappyday | 0 | 251,539,820,696 | 100% | ||
aletoalonewolf | 0 | 2,449,039,648 | 25% | ||
nurfay | 0 | 102,599,462,570 | 100% | ||
dutchchemist | 0 | 535,570,866 | 100% | ||
nairimcabmer | 0 | 1,691,595,698 | 100% | ||
incublus | 0 | 133,831,918,102 | 50% | ||
thoth442 | 0 | 1,549,917,186 | 5% | ||
monsterrerentals | 0 | 29,026,499,026 | 100% | ||
hive-116692 | 0 | 6,865,666,836 | 100% | ||
pinkchic | 0 | 1,275,334,537 | 4.12% | ||
tuba777 | 0 | 627,353,506 | 13.75% | ||
gaurav.art | 0 | 8,142,728,049 | 80% | ||
tekraze | 0 | 1,634,103,219 | 60% | ||
imacryptogeek | 0 | 9,058,887,323 | 27.51% | ||
slothbuzz | 0 | 11,679,802,279 | 20% | ||
fun.pravesh0 | 0 | 7,966,003,077 | 100% | ||
ijelady | 0 | 798,134,762 | 13.75% | ||
hive.samadi | 0 | 10,152,879,631 | 100% | ||
pof.archon | 0 | 450,840,997 | 50% | ||
slothburn | 0 | 2,449,643,936 | 20% | ||
abhay2695 | 0 | 927,738,173 | 13.75% | ||
bemier | 0 | 214,694,343,743 | 100% | ||
kerfa | 0 | 1,877,789,614 | 100% | ||
vaner168 | 0 | 683,861,800 | 100% | ||
danielgye | 0 | 1,628,664,591 | 100% | ||
mita3 | 0 | 574,928,281 | 10% | ||
flourishandflora | 0 | 1,865,685,234 | 13.75% | ||
reyn-is-chillin | 0 | 741,769,245 | 50% | ||
im-yanizet | 0 | 11,613,130,842 | 100% | ||
iaiman | 0 | 978,896,469 | 5% | ||
adeade123 | 0 | 770,243,557 | 13.75% | ||
ladyaryastark | 0 | 618,604,424 | 2.5% | ||
tebesc | 0 | 6,053,396,121 | 6.87% | ||
blessskateshop | 0 | 57,855,274,512 | 12% | ||
ifhy | 0 | 982,237,056 | 35% | ||
chyxille | 0 | 17,491,017,375 | 100% | ||
lolz.byte | 0 | 0 | 100% | ||
bbarelyseal | 0 | 0 | 100% | ||
neoxianvoter | 0 | 14,915,447 | 12% | ||
picazzy005 | 0 | 1,469,575,041 | 35% | ||
bbypanda4 | 0 | 2,146,186,218 | 27.51% | ||
michael561 | 0 | 893,492,011 | 3.4% | ||
techstyle | 0 | 829,064,645 | 50% | ||
thecrazygm.bank | 0 | 10,986,993,260 | 100% | ||
letusbuyhive | 0 | 810,005,108,297 | 17.5% | ||
lovelymusictube1 | 0 | 957,319,631 | 50% | ||
hivekr | 0 | 20,014,007,358 | 100% |
This post has been manually curated by @steemflow 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=166175.10731001952%20VESTS), [250HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=415437.76827504876%20VESTS), [500HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=830875.5365500975%20VESTS), [1000HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=1661751.073100195%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 @steemflow 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-1755252322142 | ||||||
category | hive-139531 | ||||||
json_metadata | {"app":"hiveblog/0.1","format":"markdown","tags":["hive","india","waiv","neoxian","bro","pizza","distriator","spendhbd","reactjs","dev"]} | ||||||
created | 2025-08-15 10:05:21 | ||||||
last_update | 2025-08-15 10:05:21 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2025-08-22 10:05: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 | 1,416 | ||||||
author_reputation | 104,205,117,900,926 | ||||||
root_title | "π― ReactJS Adventures: Designing a Cashback ClaimBox for Distriator π΅ π" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 145,017,371 | ||||||
net_rshares | 0 |