## Updates on Project [Distriator](https://distriator.com) Today, while working on Dash integration, I was looking for some help & I asked chatGPT. While asking, I missed typing Dash & simply stated that, integrate web3 login. Because of the lack of the context, it suggested me MetaMask based login. This was not what I was looking for. However, upon going through the answer provided to me, I found it helpful. So, instead of focusing on integrating Dash, I switched to MetaMask login for today. ### MetaMask integration - Source link 1 - https://docs.metamask.io/wallet/connect/metamask-sdk/javascript/pure-js/ - Source link 2 - https://github.com/MetaMask/metamask-sdk/blob/main/packages/examples/pure-javascript/index.html Because I was more interested in plain-javascript based integration, I did a go-through list of documents & found a related one. #### Step 1. Get the SDK Source in app ``` <html> <head> <script src="https://c0f4f41c-2f55-4863-921b-sdk-docs.github.io/cdn/metamask-sdk.js"></script> </head> </html> ``` #### Step 2. Connect & get public wallet address of ETH ``` <!-- Etherium login specific code --> <script> const mmsdk = new MetaMaskSDK.MetaMaskSDK({ dappMetadata: { name: "Distriator Connect", }, }); let provider; async function loginWithEthereumChain() { try { await mmsdk.connect(); if (provider == null) { provider = mmsdk.getProvider(); } const address = await provider.request({ method: 'eth_requestAccounts' }); if (address.length > 0) { return address[0]; } else { throw 'No account found'; } } catch (e) { console.log('ADD ERR', e) throw e; } } </script> <!-- Etherium login specific code --> ``` ### Demo of MetaMask integration in progress  - We have added a new connect item in list of blockchains - New item says "MetaMask" - With it, you can connect your ETH address - It'll only pick the first one from provided addresses ### Connect using MetaMask on Desktop  - Upon clicking on MetaMask button from Connect Screen, Distriator App will show a pop-up. - Popup will show 2 tabs - Desktop & Mobile. - I took screenshot after switching to Desktop. - Desktop tab will show option to open the MetaMask Extension. - Mobile Option will show QR code which you can scan via MetaMask Mobile app ### MetaMask Extension  - This is how it will look like when you try to authorize using MetaMask extension - Of course, instead of Localhost, it'll say Distriator. I took screenshot when running locally ### Getting the Address  - So far, we are able to get the address - We are yet to connect it with hive account - We are yet to work on other connecting it with a button click event - currently, I executed everything using javascript console. ### Status on all the to-dos - 💻 Adding signature based verification, validation & account connection - 💻 Update Business profile with other blockchain addresses - 💻 Allow users to make payments with other blockchain & claim on Distriator - 💻 Show businesses with different blockchain payment support - 💻 Signup with other blockchain accounts - ⏳ Research work on Dash login - 💻 Research on World coin login - 💻 Research on DOC login - ⏳ MetaMask based login - ⏳ MetaMask based connect - ⏳ MetaMask based disconnect - 💻 Distriator rewards on ETH payments   <center> [](https://witness.the-hive-mobile.app/#/witnesses/@sagarkothari88) ### [Vote sagarkothari88 as Hive Witness](https://witness.the-hive-mobile.app/#/witnesses/@sagarkothari88) [](https://witness.the-hive-mobile.app/#/witnesses/@threespeak) ### [Vote for 3Speak as Witness](https://witness.the-hive-mobile.app/#/witnesses/@threespeak) </center>  ### Get paid for paying in HBD/Hive & SATs ## https://distriator.com Credits to designers - noakmilo & josegrech   ### Swap your HBD/Hive using @ecency 
author | sagarkothari88 |
---|---|
permlink | 2024-12-03-daily-updates-on-development-activities |
category | hive-139531 |
json_metadata | "{"app":"ecency/3.2.0-vision","description":"2024-12-03 - Today, we worked on Dash integration & at the same time we also looked at the documentation of MetaMask. Upon finding it helpful, we have also integrated MetaMask.","format":"markdown+html","tags":["dev","neoxian","pepe","pob","spendhbd","bro","ecency","vyb","bbh"],"image":["https://images.ecency.com/DQmRRKhCGKVrcnaU7MYZNj73R8Rw3MhWzUUWyxSHqAhvGET/screenshot_2024_12_03_at_6.32.17_pm.png","https://images.ecency.com/DQmR5N4MEM2jEoo7ctyc6x6P7KgbKbLqGhgVk1ysGhypuS2/screenshot_2024_12_03_at_7.12.15_pm.png","https://images.ecency.com/DQmfRcqkFGmLHB7q6FpPBtWfuxJ4F9Tzx9UWqGK5aMjEhYW/screenshot_2024_12_03_at_7.12.23_pm.png","https://images.ecency.com/DQmXo4GQUs6TQpgbrftD6Ep3DHWc3awjTqxCGfGYRqjAi43/screenshot_2024_12_03_at_7.14.54_pm.png"],"thumbnails":["https://images.ecency.com/DQmRRKhCGKVrcnaU7MYZNj73R8Rw3MhWzUUWyxSHqAhvGET/screenshot_2024_12_03_at_6.32.17_pm.png","https://images.ecency.com/DQmR5N4MEM2jEoo7ctyc6x6P7KgbKbLqGhgVk1ysGhypuS2/screenshot_2024_12_03_at_7.12.15_pm.png","https://images.ecency.com/DQmfRcqkFGmLHB7q6FpPBtWfuxJ4F9Tzx9UWqGK5aMjEhYW/screenshot_2024_12_03_at_7.12.23_pm.png","https://images.ecency.com/DQmXo4GQUs6TQpgbrftD6Ep3DHWc3awjTqxCGfGYRqjAi43/screenshot_2024_12_03_at_7.14.54_pm.png"]}" |
created | 2024-12-03 15:07:51 |
last_update | 2024-12-03 15:07:51 |
depth | 0 |
children | 6 |
last_payout | 2024-12-10 15:07:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 12.980 HBD |
curator_payout_value | 12.941 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5,289 |
author_reputation | 562,240,077,075,620 |
root_title | "2024-12-03 - Distriator - MetaMask Connect login & Dash Connect - in progress" |
beneficiaries | [] |
max_accepted_payout | 100,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,902,103 |
net_rshares | 52,323,412,921,385 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
good-karma | 0 | 48,147,169,507 | 4% | ||
neopatriarch | 0 | 1,957,944,120 | 50% | ||
penguinpablo | 0 | 231,040,521,747 | 14% | ||
funnyman | 0 | 1,474,435,705 | 5.6% | ||
esteemapp | 0 | 10,890,414,583 | 4% | ||
humanearl | 0 | 2,329,987,266 | 80% | ||
shermanedwards | 0 | 719,518,539 | 50% | ||
bloghound | 0 | 715,707,280 | 0.8% | ||
freebornsociety | 0 | 2,943,836,730 | 5.22% | ||
nenio | 0 | 100,208,104,353 | 27% | ||
drwom | 0 | 702,528,449 | 2% | ||
alphacore | 0 | 7,372,360,442 | 7.12% | ||
firstamendment | 0 | 210,981,473,648 | 100% | ||
joeyarnoldvn | 0 | 458,871,467 | 1.47% | ||
vikbuddy | 0 | 116,399,339,498 | 100% | ||
hardikv | 0 | 1,786,993,582 | 13.77% | ||
st3llar | 0 | 5,798,929,875 | 25% | ||
ashokcan143 | 0 | 885,696,084 | 13.77% | ||
codingdefined | 0 | 85,027,048,895 | 13.77% | ||
amymya | 0 | 619,415,101 | 10% | ||
pixelfan | 0 | 54,862,715,646 | 6.6% | ||
tegoshei | 0 | 2,637,079,632 | 10% | ||
prapanth | 0 | 12,843,305,607 | 100% | ||
ahlawat | 0 | 52,143,841,943 | 100% | ||
etblink | 0 | 149,033,630,975 | 13.77% | ||
gray00 | 0 | 917,211,343 | 100% | ||
sorin.cristescu | 0 | 11,070,441,388 | 2% | ||
revisesociology | 0 | 1,451,155,356,389 | 53% | ||
splash-of-angs63 | 0 | 5,129,400,675 | 20% | ||
steemseph | 0 | 158,516,473,274 | 100% | ||
esteem.app | 0 | 1,417,942,098 | 4% | ||
silasvogt | 0 | 767,141,585 | 50% | ||
jatinhota | 0 | 40,048,875,805 | 40% | ||
lifecruiser | 0 | 4,218,533,780 | 50% | ||
coolguy123 | 0 | 108,655,441,560 | 50% | ||
anutta | 0 | 2,621,635,594 | 80% | ||
bobinson | 0 | 318,664,206,530 | 27.54% | ||
sankysanket18 | 0 | 640,975,515 | 13.77% | ||
vishire | 0 | 963,589,900 | 27.54% | ||
silenteyes | 0 | 948,081,353 | 13.77% | ||
shonyishere | 0 | 1,544,472,579 | 27.54% | ||
auleo | 0 | 499,929,187 | 0.8% | ||
spiritabsolute | 0 | 41,018,044,619 | 100% | ||
cryptonized | 0 | 235,832,510 | 14% | ||
spydo | 0 | 54,007,039,465 | 13.77% | ||
frames | 0 | 864,702,851 | 25% | ||
gaborockstar | 0 | 85,372,820,075 | 50% | ||
adventuroussoul | 0 | 2,179,801,709 | 10% | ||
bala41288 | 0 | 700,123,080,812 | 20% | ||
dynamicrypto | 0 | 2,313,168,328 | 5% | ||
indiaunited | 0 | 1,788,466,087,774 | 27.54% | ||
fieryfootprints | 0 | 109,644,518,353 | 40% | ||
bishoppeter1 | 0 | 461,064,066 | 10% | ||
cherryng | 0 | 483,880,851 | 0.8% | ||
upfundme | 0 | 1,367,016,089 | 4.31% | ||
neeqi | 0 | 464,019,401 | 100% | ||
tonysayers33 | 0 | 13,475,523,604 | 33% | ||
openmind3000 | 0 | 2,524,081,461 | 50% | ||
aperterikk | 0 | 573,384,737 | 50% | ||
eddiespino | 0 | 6,306,128,246,298 | 100% | ||
bhattg | 0 | 201,584,822,774 | 27.54% | ||
happymichael | 0 | 2,628,099,079 | 100% | ||
crowbarmama | 0 | 4,515,145,256 | 20% | ||
vinamra | 0 | 1,468,719,743 | 11.01% | ||
gabbyg86 | 0 | 21,890,306,570 | 35% | ||
originalmrspice | 0 | 13,653,056,430 | 50% | ||
strenue | 0 | 343,283,913,186 | 95% | ||
rentmoney | 0 | 161,452,100,904 | 100% | ||
jeronimorubio | 0 | 10,118,611,729 | 100% | ||
raqibul | 0 | 551,633,775 | 13.77% | ||
mrchef111 | 0 | 19,725,388,479 | 25% | ||
darkfuseion | 0 | 1,146,217,187 | 100% | ||
gisi | 0 | 4,453,872,503 | 10% | ||
awesomegames007 | 0 | 1,110,345,062 | 2% | ||
illuminationst8 | 0 | 6,346,716,840 | 25% | ||
manojbhatt | 0 | 1,851,204,707 | 27.54% | ||
brainpod | 0 | 1,024,532,029 | 25% | ||
rainbowbala | 0 | 903,166,149 | 27.54% | ||
joeytechtalks | 0 | 1,585,609,412 | 50% | ||
camuel | 0 | 4,240,927,791 | 10% | ||
maujmasti | 0 | 591,234,800 | 100% | ||
smacommunity | 0 | 962,519,702 | 50% | ||
techcoderx | 0 | 593,801,521,725 | 100% | ||
brettblue | 0 | 823,413,499 | 50% | ||
reality-variance | 0 | 889,004,250 | 20% | ||
ragavee | 0 | 971,731,035 | 13.77% | ||
onelovedtube | 0 | 14,899,223,813 | 100% | ||
toddmck | 0 | 2,490,318,758 | 100% | ||
indiaunited-bot | 0 | 1,120,069,442 | 27.54% | ||
sarunya | 0 | 31,692,456,244 | 100% | ||
melor9 | 0 | 12,506,662,741 | 50% | ||
icepee | 0 | 16,114,275,786 | 50% | ||
digi-me | 0 | 98,997,518,707 | 30% | ||
holovision | 0 | 15,246,673,579 | 100% | ||
lermagreen | 0 | 459,380,074 | 100% | ||
surachai | 0 | 29,289,913,483 | 100% | ||
dlike | 0 | 476,525,779,798 | 100% | ||
raoufwilly | 0 | 812,307,486 | 30% | ||
cowboysblog | 0 | 3,084,734,285 | 100% | ||
khan.dayyanz | 0 | 36,885,177,844 | 24.78% | ||
eternalsuccess | 0 | 60,561,430,458 | 50% | ||
nataya | 0 | 29,660,227,698 | 100% | ||
hungrybear | 0 | 621,919,406 | 14% | ||
thelogicaldude | 0 | 861,852,776 | 2% | ||
olaexcel | 0 | 646,613,415 | 13.77% | ||
guysellars | 0 | 2,371,939,094 | 100% | ||
oneloveipfs | 0 | 13,959,292,240 | 100% | ||
yiobri | 0 | 996,837,290 | 50% | ||
iamangierose | 0 | 530,608,702 | 50% | ||
zeruxanime | 0 | 3,525,495,748 | 50% | ||
badfinger | 0 | 755,479,962 | 13.77% | ||
bala-ag | 0 | 94,235,362 | 20% | ||
elianaicgomes | 0 | 2,852,867,470 | 7.5% | ||
kanibot | 0 | 43,156,788,823 | 20% | ||
alicargofer | 0 | 2,078,426,023 | 15% | ||
baltai | 0 | 3,692,595,465 | 1.43% | ||
bozz.sports | 0 | 5,152,133,490 | 4% | ||
faireye | 0 | 4,150,145,518 | 100% | ||
thepavsalford | 0 | 2,019,239,282 | 100% | ||
hive-134220 | 0 | 37,535,367,288 | 100% | ||
brofund | 0 | 5,255,983,618 | 5.75% | ||
imfarhad | 0 | 24,990,000,545 | 24% | ||
hivelist | 0 | 945,733,309 | 1% | ||
ecency | 0 | 1,487,529,404,113 | 4% | ||
balvinder294 | 0 | 3,398,991,682 | 30% | ||
ecency.stats | 0 | 1,575,106,327 | 4% | ||
dikshabihani | 0 | 1,838,346,612 | 13.77% | ||
r-nyn | 0 | 18,970,617,859 | 11% | ||
idea-make-rich | 0 | 95,686,218,257 | 100% | ||
vandanabhatt | 0 | 510,102,852 | 27.54% | ||
gabrieljr | 0 | 1,490,616,008 | 50% | ||
yogeshbhatt | 0 | 3,751,482,815 | 27.54% | ||
he-index | 0 | 24,752,588,988 | 15% | ||
godfather.ftw | 0 | 20,483,891,738 | 24.78% | ||
esmeesmith | 0 | 2,102,998,073 | 2% | ||
cbridges573 | 0 | 668,675,648 | 3.75% | ||
azamrai | 0 | 486,824,639,049 | 100% | ||
brofi | 0 | 301,545,018,958 | 5.75% | ||
rochow | 0 | 4,907,164 | 98.03% | ||
nfttunz | 0 | 49,062,950,573 | 2.87% | ||
muterra | 0 | 182,195,160,735 | 27.54% | ||
okluvmee | 0 | 22,524,340,443 | 13.77% | ||
brofund-witness | 0 | 1,618,368,218 | 5.75% | ||
hive.friends | 0 | 0 | 1% | ||
disha30 | 0 | 1,140,633,186 | 27.54% | ||
keithtaylor | 0 | 2,400,231,438 | 80% | ||
photolovers1 | 0 | 17,601,351,541 | 27.54% | ||
kamaleshwar | 0 | 3,946,714,663 | 27.54% | ||
chandra.shekar | 0 | 18,885,077,960 | 27.54% | ||
kannannv | 0 | 44,406,670,822 | 27.54% | ||
perfectionist25 | 0 | 0 | 0.4% | ||
yoieuqudniram | 0 | 770,582,060 | 2% | ||
bokica80 | 0 | 787,295,069 | 2.87% | ||
menzo | 0 | 16,525,799,028 | 100% | ||
iamleicester | 0 | 459,968,301 | 80% | ||
gamerzaza | 0 | 828,806,784 | 13.77% | ||
marsupia | 0 | 1,120,235,365 | 26.5% | ||
ambuting | 0 | 560,552,210 | 80% | ||
eolianpariah2 | 0 | 7,420,343,011 | 2.4% | ||
deimage | 0 | 6,410,913,265 | 13.77% | ||
bossingclint | 0 | 693,288,568 | 100% | ||
anonymous02 | 0 | 53,264,416,062 | 100% | ||
mengao | 0 | 487,213,819,247 | 100% | ||
mnurhiver | 0 | 98,554,569,404 | 52.5% | ||
triplug | 0 | 161,560,863,990 | 100% | ||
baibuaza | 0 | 120,509,473,472 | 100% | ||
herman-german | 0 | 5,385,450,510 | 50% | ||
kaibagt | 0 | 23,461,261,615 | 100% | ||
mergusa88 | 0 | 5,392,106,424 | 50% | ||
sagarkothari88 | 0 | 1,613,142,645,583 | 100% | ||
heteroclite | 0 | 8,643,436,961 | 13.77% | ||
allentaylor | 0 | 901,285,086 | 2% | ||
sam9999 | 0 | 1,278,359,023 | 13.77% | ||
djblendah | 0 | 854,391,158 | 100% | ||
balaz | 0 | 35,530,429,653 | 20% | ||
prosocialise | 0 | 64,382,029,686 | 13.77% | ||
street-ar | 0 | 7,479,195,688 | 30% | ||
alfazmalek02 | 0 | 211,396,785 | 100% | ||
aletoalonewolf | 0 | 2,530,944,669 | 25% | ||
nurfay | 0 | 88,320,804,877 | 100% | ||
elisilva05 | 0 | 7,754,259,334 | 100% | ||
solumviz | 0 | 4,461,990,911 | 13.77% | ||
cute-cactus | 0 | 13,884,638,992 | 100% | ||
pinkchic | 0 | 2,172,868,642 | 4.13% | ||
ngwinndave | 0 | 482,778,442 | 2% | ||
tekraze | 0 | 1,822,805,795 | 60% | ||
imacryptogeek | 0 | 19,300,943,417 | 27.54% | ||
threespeakvoter | 0 | 15,290,715,423,243 | 100% | ||
pranavgtd | 0 | 430,289,900,003 | 100% | ||
abhay2695 | 0 | 1,233,055,583 | 13.77% | ||
ranjith98 | 0 | 481,701,971 | 13.77% | ||
amazingdrinks | 0 | 195,654,698,995 | 100% | ||
hive-189869 | 0 | 1,367,804,161 | 100% | ||
cypher09 | 0 | 416,105,711 | 17% | ||
thehivemobileapp | 0 | 653,019,723,582 | 100% | ||
btcmaze | 0 | 110,663,712 | 100% | ||
ecency.waves | 0 | 0 | 4% | ||
dailydab | 0 | 73,922,613,612 | 2.87% | ||
dev.maverick | 0 | 7,482,761,606 | 27.54% | ||
samuraiscam | 0 | 617,141,360,555 | 100% | ||
mdakash62 | 0 | 86,322,593,787 | 100% | ||
hive-lu | 0 | 90,304,876,105 | 12.27% | ||
drinkslovers | 0 | 1,022,247,674 | 50% | ||
linux-software | 0 | 0 | 100% | ||
reyn-is-chillin | 0 | 735,402,397 | 50% | ||
sagarkothari | 0 | 336,390,676,966 | 100% | ||
clubvote | 0 | 1,782,877,266 | 0.57% | ||
somecallmejake | 0 | 14,119,674,563,276 | 100% | ||
lolz.byte | 0 | 0 | 100% | ||
kevin1273 | 0 | 0 | 100% | ||
suarlex | 0 | 822,405,131 | 3.2% | ||
bbarelyseal | 0 | 0 | 100% | ||
bbypanda4 | 0 | 951,834,123 | 27.54% | ||
dab-vote | 0 | 38,086,008,800 | 2.87% | ||
vinzie1.pepe | 0 | 320,358,467 | 100% | ||
talhaebubekir | 0 | 1,372,495,744 | 100% | ||
blaqbarbie | 0 | 3,808,947,488 | 50% | ||
yusmelys | 0 | 615,403,318 | 2% | ||
samadbro08 | 0 | 16,530,530 | 100% | ||
junnyjun | 0 | 1,531,622,067 | 100% | ||
leoleyva | 0 | 510,471,248 | 100% | ||
endhivewatchers | 0 | 741,327,585 | 5% |
#### Hello sagarkothari88! **It's nice to let you know that your article will take 11th place.** Your post is among **15 Best** articles voted 7 days ago by the @hive-lu | King Lucoin Curator by **keithtaylor** You receive 🎖 **1.0** unique **LUBEST** tokens as a reward. You can support Lu world and your curator, then he and you will receive 10x more of the winning token. There is a buyout offer waiting for him on the stock exchange. All you need to do is reblog [Daily Report 502](/lucoin/@hive-lu/daily-report-day-502) with your winnings. <center>[](/@hive-lu)</center> --- <center><sub>Invest in the **Lu token** (Lucoin) and get paid. With 50 Lu in your wallet, you also become the curator of the @hive-lu which follows your upvote. Buy Lu on the [Hive-Engine](https://hive-engine.com/trade/LU) exchange | World of Lu created by <a href="/@szejq">szejq</a> </sub></center> <center><sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP` _or to resume write a word_ `START`</sub> </center>
author | hive-lu |
---|---|
permlink | lucoin-prize-3rxma7 |
category | hive-139531 |
json_metadata | "" |
created | 2024-12-11 03:30:45 |
last_update | 2024-12-11 03:30:45 |
depth | 1 |
children | 0 |
last_payout | 2024-12-18 03:30: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,193 |
author_reputation | 33,448,970,442,499 |
root_title | "2024-12-03 - Distriator - MetaMask Connect login & Dash Connect - in progress" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,116,849 |
net_rshares | 0 |
<center>[](https://hivebuzz.me/@sagarkothari88) <center>@sagarkothari88, sorry to see that you have less Hive Power. Your level lowered and you are now a **Dolphin**!</center> **Check out our last posts:** <table><tr><td><a href="/hive-122221/@hivebuzz/pum-202411-delegations"><img src="https://images.hive.blog/64x128/https://i.imgur.com/fg8QnBc.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202411-delegations">Our Hive Power Delegations to the November PUM Winners</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pud-202412-feedback"><img src="https://images.hive.blog/64x128/https://i.imgur.com/zHjYI1k.jpg"></a></td><td><a href="/hive-122221/@hivebuzz/pud-202412-feedback">Feedback from the December Hive Power Up Day</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pum-202411-result"><img src="https://images.hive.blog/64x128/https://i.imgur.com/mzwqdSL.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202411-result">Hive Power Up Month Challenge - November 2024 Winners List</a></td></tr></table>
author | hivebuzz |
---|---|
permlink | notify-1733325952 |
category | hive-139531 |
json_metadata | {"image":["https://hivebuzz.me/notify.t6.png"]} |
created | 2024-12-04 15:25:51 |
last_update | 2024-12-04 15:25:51 |
depth | 1 |
children | 0 |
last_payout | 2024-12-11 15:25:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,125 |
author_reputation | 369,450,107,014,397 |
root_title | "2024-12-03 - Distriator - MetaMask Connect login & Dash Connect - in progress" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,933,696 |
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=169596.93185608415%20VESTS), [250HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=423992.3296402104%20VESTS), [500HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=847984.6592804207%20VESTS), [1000HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=1695969.3185608415%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.54% vote for delegating HP / holding IUC tokens.
author | indiaunited | ||||||
---|---|---|---|---|---|---|---|
permlink | indiaunited-1733242840000 | ||||||
category | hive-139531 | ||||||
json_metadata | {"app":"hiveblog/0.1","format":"markdown","tags":["dev","neoxian","pepe","pob","spendhbd","bro","ecency","vyb","bbh"]} | ||||||
created | 2024-12-03 16:20:42 | ||||||
last_update | 2024-12-03 16:20:42 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2024-12-10 16:20:42 | ||||||
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,410 | ||||||
author_reputation | 100,710,806,276,415 | ||||||
root_title | "2024-12-03 - Distriator - MetaMask Connect login & Dash Connect - in progress" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 138,903,863 | ||||||
net_rshares | 0 |
Good evening and peace be upon you. Interesting article
author | mnurhiver |
---|---|
permlink | re-sagarkothari88-2024123t235619911z |
category | hive-139531 |
json_metadata | {"tags":["dev","neoxian","pepe","pob","spendhbd","bro","ecency","vyb","bbh"],"app":"ecency/3.2.0-vision","format":"markdown+html"} |
created | 2024-12-03 16:56:21 |
last_update | 2024-12-03 16:56:21 |
depth | 1 |
children | 0 |
last_payout | 2024-12-10 16:56: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 | 55 |
author_reputation | 667,661,802,674,288 |
root_title | "2024-12-03 - Distriator - MetaMask Connect login & Dash Connect - in progress" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,904,794 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
linux-software | 0 | 0 | 100% |
This is a great development.
author | prapanth |
---|---|
permlink | re-sagarkothari88-2024124t10477476z |
category | hive-139531 |
json_metadata | {"type":"comment","tags":["hive-139531","dev","neoxian","pepe","pob","spendhbd","bro","ecency","vyb","bbh"],"app":"ecency/3.2.0-mobile","format":"markdown+html"} |
created | 2024-12-04 03:47:09 |
last_update | 2024-12-04 03:47:09 |
depth | 1 |
children | 1 |
last_payout | 2024-12-11 03:47:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 28 |
author_reputation | 74,930,039,544,651 |
root_title | "2024-12-03 - Distriator - MetaMask Connect login & Dash Connect - in progress" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 138,922,293 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
linux-software | 0 | 0 | 100% |
thank you @prapanth ji <br/><sub>[via Inbox](https://inbox.the-hive-mobile.app)</sub>
author | sagarkothari88 |
---|---|
permlink | re-sagarkothari88-20250104t183152546 |
category | hive-139531 |
json_metadata | {"tags":["hive-inbox","ios","android","mobile","app","sagarkothari88","comment","reply"],"app":"Inbox","developer":"sagarkothari88","format":"markdown+html","ts":"2025-01-04T18:31:52.546","hash":"MjAyNS0wMS0wNFQxODozMTo1Mi41NDZfUW5ORlYzVkRkRkZ2VW5aQlFqQjNPV3RTVnpOWFJIbDVaRUZZU25OUGIwOD0=","version":"1.1.3","route":"Dashboard","os":"Web"} |
created | 2025-01-04 13:01:54 |
last_update | 2025-01-04 13:01:54 |
depth | 2 |
children | 0 |
last_payout | 2025-01-11 13:01:54 |
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 | 85 |
author_reputation | 562,240,077,075,620 |
root_title | "2024-12-03 - Distriator - MetaMask Connect login & Dash Connect - in progress" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 139,705,138 |
net_rshares | 0 |