Hello Hive Community β Here is the `thebeedevs` team, where I have a **BIG** pleasure to announce another step in the Hive Wallet integration into the main stream of [MetaMask application](https://metamask.io/). Our first steps in this subject have been made for Hive Birthday purpose (here is a little reminder for those who didn't read it then - please jump to the chapter in pointed article: [Yet more wallets to operate with Hive](https://blog.openhive.network/hive-139531/@thebeedevs/hive-is-five). Then we were at the initial step of implementation: after performing a regular software design work (for those interested - I'd like to recommend further part of this post, where one of **THE BE**st **E**ver **DEVS** describes his feelings while developing our [Hive Wallet Meta Mask Snap](https://gitlab.syncad.com/hive/metamask-snap/) application), our app was able to operate with MetaMask using its Flask (developer) version, actually mostly provided for testing purposes. Of course, our work was fully functional - only because of (justified) MetaMask needs - they limited us and forced to schedule a **source code security audit**:  Yes, I saw them: they looked very similar to the pointed photo ;-) but they are called as [Hacken](https://hacken.io), the one of officially approved Meta Mask auditors what you can check [here](https://consensys.notion.site/Audit-process-1acbc67819dc4631b7a3d6c664e387a3) They also have an account on #hive: @hacken - greetings guys !!! Those impatient wait probably for the result: yes, our work has been approved and we have opened further steps to complete MetaMask integration. We have filled out & sent official MetaMask form to get allowlisted [pure form template](https://feedback.metamask.io/snaps-onboarding/) and we're waiting for the response. Here is the [audit report](https://hacken.io/audits/hive/). We hope to be officially approved on MetaMask list soon. This process is independent of our team, but we promise to report every upcoming change in this subject... ******************************** Below, you can be more involved into details specific to this software development process, which in my opinion, (I hope our great team agrees with me) was so successfull because of the simplicity chosen at each stage: - clearly defined functionality - allowing simple hive integration for external users (by providing an link to its Hive friend), - seamless authority update for existing users, - ability to sign transactions and encrypt content using the Hive, but signing the transactions using MetaMask wallet. To let you better understand how it works and why we **can** say that it is safe, we prepared a small interview with our developers. Please enjoy ! #### What is the reason of creating yet another wallet? We can already find multiple wallet implementations (which was covered in [this issue](https://gitlab.syncad.com/hive/wax/-/issues/82#note_199540)), so what is the reason for creating another wallet? π The obvious and standard answer would be: "Our wallet is the best" (which of course is also true π), but we wanted to come a bit further: We wanted the users to be able to use one wallet to manage all their assets at once in one place! π° That's right - Just one extension for your Ethereum, Solana, BNB and Hive!!! π  #### But is it safe? Yes, as it has already been mentioned, we successfully passed the audit! π΅ The Hive Wallet also uses benefits of enclosed MetaMask architecture which runs snaps in isolated [Snaps execution environment](https://docs.metamask.io/snaps/learn/about-snaps/execution-environment/), which: * π’ Disallows the global environment pollution, * π₯·π» Prevents malicious Snaps from stealing from users, * π§ Limits access to sensitive JavaScript global APIs (such as `fetch`) without explicit permission granted to Snap. This means we have no Internet access from inside of the Hive Wallet. π #### But if it is isolated, how does it communicate with dApps? MetaMask uses JSON-RPC (just like Hive nodes do) for all the internal and external calls: π²  By implementing strict requests validation on our end, there is no way for the attackers to leak your private keys! π‘οΈ #### Does it mean Hive Wallet has access to my ETH/SOL/BNB? That's a great question! Metamask wallet uses BIP32 and BIP44 standards to manage keys derived from a simple seed (password aka secret recovery phrase). Thanks to that, there is no way to access other private keys than derived from the path. In our case it is: `m/44'/3054'/accountIndex'/0'/keyType'`. ποΈ Additionally, this is ensured by using MetaMask Snap permissions restricted to the path: `m/44'/3054'` for entropy-related functions:  #### What is this magic `3054` number? It's just a π (`0xBEE` - hexadecimal number). This coin type was officially approved by SatoshiLabs as HIVE in [this PR](https://github.com/satoshilabs/slips/pull/1876/files#diff-a4a22ced714e2f008fb133abf3d464f917812378213802d2d73887a7f390a12fR1182). π #### How can I trust you or some auditors I have never heard of if I don't know what really happens under the hood? Just look into the [source code](https://github.com/openhive-network/metamask-snap). π Yes, it is publicly available. You can also contribute to it under [certain conditions](https://github.com/openhive-network/metamask-snap/wiki/KB#contributing). π€ Our CI/CD configuration securely builds & ships π the code when triggerred from the protected branch: [`@hiveio/metamask-snap`](https://www.npmjs.com/package/@hiveio/metamask-snap). #### What can I do with Hive Wallet? There are multiple things you can do, including: * βπ» Signing transactions using different authority levels * π© Encrypting / Decrypting memos * π·οΈ Retrieving your derived public keys #### Okay, but it communicates with dApps - they can steal my private keys! They cannot! π€ Our Snap never responds to the private keys. This means there is no way for the attackers to retrieve your Hive private key from the Hive Wallet. π Moreover, every call to the priviledged function requires explicit user approval:  #### So how to move my keys to a different machine? As already mentioned, all keys are derived from your main recovery phrase. π Remember it, install MetaMask π¦ on another device, import wallet and install our Snap. That's all! #### Can I use it with multiple Hive accounts? Yes, based on the requested account index, you can use different accounts for all the supported operations. π―ββοΈ #### Does it provide multisig? Yes, you can just provide multiple key indexes with different account indexes upon transaction signing π₯ #### Can I use it with other chain IDs? So you want to use the [mirrornet](https://hive.blog/hive-160391/@gtg/hive-mirrornet-a-k-a-fakenet-is-up-and-running)? πͺ That's awesome - another @thebeedevs technology π Just provide different chain id to the transaction signing params. That's all! π€― #### Where can I use it? We created an extensive [knowledge base for On-chain usage](https://github.com/openhive-network/metamask-snap/wiki/KB#on-chain-usage) β #### Can you also add support for TrustWallet and other Web3 wallets? We are researching this topic and working on it hard! π¨βπ» #### You convinced me. I am a developer. How to integrate MetaMask into my Hive dApp? No wonder you asked this question, and... We have the answer! π οΈ There is currently an [extensive work](https://gitlab.syncad.com/hive/wax/-/tree/develop/ts/packages/signers-metamask?ref_type=heads#example-usage) βοΈ on MetaMask integration to [`@hiveio/wax`](http://npmjs.com/package/@hiveio/wax) (Read more about it [here](https://hive.blog/hive-139531/@thebeedevs/discover-projects-that-have-been-quietly-enhancing-your-hive-experience#:~:text=hiveio/clive/tags-,Wax%20library,-wax%20is%20a)). Ready-to-use library will be publicly available soon, but if you want to test it now, you can either use [dev package version](https://gitlab.syncad.com/hive/wax/-/packages/13567) or manually call the APIs using [Snaps simulator](https://metamask.github.io/snaps/snaps-simulator/latest/#/handler/onRpcRequest) with snap location selected: `npm` : `@hiveio/metamask-snap` @ `1.6.0`: π― ##### Sign transaction ```json { "method": "hive_signTransaction", "params": { "transaction": "{\"ref_block_num\":63366,\"ref_block_pref...", "keys": [{ "role": "active" }] } } ``` ##### Encrypt memo ```json { "method": "hive_encrypt", "params": { "buffer": "Hello, world!", "firstKey": { "role": "memo" }, "secondKey": "STM8LYDC8gWEtsdFvm4gzRmcsJnmuhCMcpL7vxpXPh6pGUZxE9WhY" } } ``` ##### Decrypt memo ```json { "method": "hive_decrypt", "params": { "buffer": "#111111114nr3f4fxxx...", "firstKey": { "role": "memo" } } } ``` ##### Get public keys ```json { "method": "hive_getPublicKeys", "params": { "keys": [{ "role": "memo" }] } } ``` Thank you for reading !!! And as always. we're waiting for your feedback. thebeedevs Team
author | thebeedevs | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
permlink | further-integration-of-metamask-and-hive-wallet | ||||||||||||
category | hive-139531 | ||||||||||||
json_metadata | "{"app":"hiveblog/0.1","author":"mtyszczak","format":"markdown","image":["https://images.hive.blog/DQmeig7RpxfXncsZCXp1HLbdCTZDfgtdC8HGe68pF2QP55i/MM-Hive-Bee.png","https://images.hive.blog/DQmdFGtUmUYMmX1b1h8kCDnjTECjF6fa9poKKuocVitFqEo/Monty_Python_spanish_inquisition.jpg","https://images.hive.blog/DQmNPxPTFre8N5KdDka1v5NQ9fmwUWfmqWg6RFstDK37xL6/snaps-architecture-1.png","https://images.hive.blog/DQmRpd9jSKRC85vuQ6y4dzh4z69atepnDYjh5qGLqjWmXCu/snaps-getentropy.png","https://images.hive.blog/DQmbaJ24UQGz8cLPY5jiENNSZY4z1xdPptXMYr55nQ2DD6Q/approve-tx.png"],"summary":"Hive wallet - a story about MetaMask Snap security audit","tags":["hive","hivedevs","dev","metamask"],"users":["hacken","hiveio","thebeedevs"],"links":["https://metamask.io/"]}" | ||||||||||||
created | 2025-06-05 15:00:42 | ||||||||||||
last_update | 2025-06-05 15:16:12 | ||||||||||||
depth | 0 | ||||||||||||
children | 25 | ||||||||||||
last_payout | 2025-06-12 15:00:42 | ||||||||||||
cashout_time | 1969-12-31 23:59:59 | ||||||||||||
total_payout_value | 37.550 HBD | ||||||||||||
curator_payout_value | 75.053 HBD | ||||||||||||
pending_payout_value | 0.000 HBD | ||||||||||||
promoted | 0.000 HBD | ||||||||||||
body_length | 9,610 | ||||||||||||
author_reputation | 199,200,348,472,277 | ||||||||||||
root_title | "Further integration of MetaMask and Hive wallet" | ||||||||||||
beneficiaries |
| ||||||||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||||||||
percent_hbd | 10,000 | ||||||||||||
post_id | 143,183,085 | ||||||||||||
net_rshares | 446,991,508,429,050 | ||||||||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
blocktrades | 0 | 161,255,171,391,907 | 100% | ||
adm | 0 | 24,798,798,851,876 | 100% | ||
flemingfarm | 0 | 63,262,723,257 | 10% | ||
leprechaun | 0 | 1,369,175,466 | 13% | ||
gtg | 0 | 57,580,394,318,390 | 100% | ||
good-karma | 0 | 11,631,772,672 | 1% | ||
roelandp | 0 | 272,661,617,222 | 25% | ||
neopatriarch | 0 | 1,952,756,931 | 50% | ||
strawhat | 0 | 144,932,883,281 | 100% | ||
ardina | 0 | 17,136,056,622 | 100% | ||
raymonjohnstone | 0 | 6,884,404,757 | 100% | ||
ace108 | 0 | 511,661,467,155 | 10% | ||
kaykunoichi | 0 | 1,085,488,544 | 50% | ||
timcliff | 0 | 105,913,946,650 | 100% | ||
oflyhigh | 0 | 6,849,484,158,135 | 100% | ||
anarcist69 | 0 | 30,079,788,882 | 50% | ||
mattclarke | 0 | 1,100,353,165,519 | 100% | ||
themonetaryfew | 0 | 440,709,492,219 | 100% | ||
uwelang | 0 | 723,099,092,948 | 20% | ||
canadian-coconut | 0 | 7,496,241,433,337 | 51% | ||
chadmichaellibby | 0 | 3,202,929,204 | 100% | ||
titusfrost | 0 | 58,552,325,734 | 100% | ||
seckorama | 0 | 53,056,653,257 | 11% | ||
techslut | 0 | 334,987,029,582 | 50% | ||
webhoster | 0 | 892,347,164 | 100% | ||
barcisz | 0 | 25,397,081,089 | 30% | ||
esteemapp | 0 | 2,961,389,546 | 1% | ||
justinw | 0 | 154,876,699,374 | 33% | ||
bigtakosensei | 0 | 44,878,448,478 | 36% | ||
humanearl | 0 | 2,309,559,042 | 80% | ||
loading | 0 | 29,160,621,661 | 100% | ||
silviabeneforti | 0 | 187,318,484,588 | 100% | ||
shermanedwards | 0 | 717,535,960 | 50% | ||
sudutpandang | 0 | 649,213,975 | 100% | ||
thereikiforest | 0 | 1,548,521,979 | 10% | ||
danielsaori | 0 | 484,566,110,611 | 100% | ||
trafalgar | 0 | 53,671,491,576,475 | 100% | ||
ganjafarmer | 0 | 2,902,910,305 | 1.5% | ||
itinerantph | 0 | 1,943,038,441 | 50% | ||
preparedwombat | 0 | 768,879,222,929 | 34% | ||
bcc | 0 | 3,724,687,800,736 | 85% | ||
detlev | 0 | 117,098,251,780 | 5% | ||
raindrop | 0 | 830,534,049,627 | 100% | ||
passion-fruit | 0 | 10,422,644,756 | 92% | ||
fortune-master | 0 | 11,452,929,316 | 92% | ||
dreamon | 0 | 502,163,298 | 11.1% | ||
kingkinslow | 0 | 727,739,868 | 100% | ||
ili0braz | 0 | 4,394,595,301 | 98% | ||
mvd | 0 | 549,021,677 | 50% | ||
trayan | 0 | 13,656,931,225 | 100% | ||
forykw | 0 | 688,005,044,312 | 100% | ||
rt395 | 0 | 3,560,007,685 | 5% | ||
giuatt07 | 0 | 840,947,976,312 | 30% | ||
crimsonclad | 0 | 2,176,868,553,429 | 100% | ||
sarapm | 0 | 0 | 100% | ||
spectrumecons | 0 | 2,607,727,353,053 | 35% | ||
joeyarnoldvn | 0 | 451,629,956 | 1.47% | ||
mynewlife | 0 | 1,084,159,739,717 | 100% | ||
st3llar | 0 | 5,798,929,875 | 25% | ||
bluemist | 0 | 26,476,345,371 | 10% | ||
summertooth | 0 | 3,345,816,281 | 8.25% | ||
eturnerx | 0 | 269,024,479,645 | 20.2% | ||
dante31 | 0 | 1,999,747,009 | 55% | ||
theguruasia | 0 | 3,669,635,374 | 100% | ||
amymya | 0 | 619,415,101 | 10% | ||
appreciator | 0 | 37,914,210,601,079 | 10% | ||
sanjeevm | 0 | 1,593,270,084,695 | 30% | ||
bambukah | 0 | 44,143,505,739 | 50% | ||
resiliencia | 0 | 71,117,503,876 | 100% | ||
pocketrocket | 0 | 10,236,428,176 | 100% | ||
vimukthi | 0 | 4,004,022,919 | 100% | ||
santigs | 0 | 479,091,875,315 | 76% | ||
floatinglin | 0 | 6,905,826,008 | 100% | ||
gray00 | 0 | 905,113,693 | 100% | ||
niallon11 | 0 | 760,422,968,188 | 100% | ||
artlover | 0 | 1,800,595,052 | 100% | ||
joshman | 0 | 9,552,185,774 | 25% | ||
futurethinker | 0 | 1,482,103,371 | 100% | ||
podanrj | 0 | 1,216,488,645 | 55% | ||
fatman | 0 | 9,250,610,127 | 2% | ||
msp-makeaminnow | 0 | 26,728,823,019 | 29% | ||
yabapmatt | 0 | 24,216,063,323,680 | 100% | ||
buttcoins | 0 | 2,100,593,961,478 | 50% | ||
sayee | 0 | 72,810,052,744 | 100% | ||
esteem.app | 0 | 357,926,971 | 1% | ||
technicalside | 0 | 7,999,885,725 | 25% | ||
vegoutt-travel | 0 | 42,730,019,182 | 35% | ||
silasvogt | 0 | 843,609,628 | 50% | ||
petrolinivideo | 0 | 4,056,814,474 | 50% | ||
arabisouri | 0 | 84,810,359,593 | 100% | ||
dkid14 | 0 | 186,308,026,941 | 100% | ||
small.minion | 0 | 6,615,661,762 | 100% | ||
sunsea | 0 | 14,377,787,227 | 5% | ||
yogajill | 0 | 165,471,430,331 | 100% | ||
traf | 0 | 4,625,121,124,441 | 100% | ||
nathen007 | 0 | 882,322,936,436 | 100% | ||
iaberius | 0 | 5,197,941,740 | 100% | ||
wiseagent | 0 | 171,642,987,830 | 15% | ||
tomatom | 0 | 9,825,174,367 | 50% | ||
gabrielatravels | 0 | 93,927,984,243 | 50% | ||
flowen | 0 | 157,291,409 | 100% | ||
lilianajimenez | 0 | 17,263,946,517 | 100% | ||
hijosdelhombre | 0 | 62,326,872,101 | 42.5% | ||
gaborockstar | 0 | 55,656,450,566 | 50% | ||
gillianpearce | 0 | 30,475,987,924 | 100% | ||
roundbeargames | 0 | 2,756,374,141 | 100% | ||
osarueseosato | 0 | 623,059,607 | 100% | ||
adventuroussoul | 0 | 2,182,008,261 | 10% | ||
belemo | 0 | 57,886,280,741 | 100% | ||
minigunner | 0 | 6,315,274,714 | 100% | ||
auracraft | 0 | 2,949,606,639 | 100% | ||
a-quarius | 0 | 161,634,325,893 | 100% | ||
atongis | 0 | 28,825,056,787 | 10% | ||
bishoppeter1 | 0 | 461,064,066 | 10% | ||
kkarenmp | 0 | 5,095,024,206 | 5% | ||
neeqi | 0 | 457,551,324 | 100% | ||
tonysayers33 | 0 | 13,475,523,604 | 33% | ||
openmind3000 | 0 | 2,517,431,751 | 50% | ||
minerspost | 0 | 2,481,536,889 | 50% | ||
danielcarrerag | 0 | 2,593,904,793 | 5% | ||
aperterikk | 0 | 571,877,706 | 50% | ||
tomhall | 0 | 23,854,518,966 | 100% | ||
condeas | 0 | 415,488,985,127 | 20% | ||
rubelynmacion | 0 | 43,580,440,298 | 100% | ||
bhattg | 0 | 5,910,455,066 | 0.8% | ||
asgarth | 0 | 791,953,009,350 | 50% | ||
happymichael | 0 | 2,594,399,665 | 100% | ||
bertrayo | 0 | 9,062,730,431 | 5% | ||
crowbarmama | 0 | 4,508,487,752 | 20% | ||
promo-mentors | 0 | 707,979,223 | 100% | ||
lisfabian | 0 | 4,149,107,088 | 100% | ||
almi | 0 | 605,396,728,203 | 100% | ||
gabbyg86 | 0 | 22,009,804,448 | 35% | ||
originalmrspice | 0 | 13,617,656,868 | 50% | ||
kryptik.tigrrr3d | 0 | 4,619,693,964 | 100% | ||
miosha | 0 | 673,529,917,363 | 100% | ||
jeronimorubio | 0 | 10,601,147,018 | 100% | ||
andablackwidow | 0 | 71,774,455,015 | 100% | ||
ravenmus1c | 0 | 10,303,369,047 | 0.5% | ||
rivalzzz | 0 | 104,878,447,561 | 100% | ||
louis88 | 0 | 3,255,996,753,233 | 100% | ||
mrchef111 | 0 | 43,758,769,899 | 25% | ||
gisi | 0 | 4,453,872,503 | 10% | ||
gadrian | 0 | 429,265,695,792 | 30% | ||
illuminationst8 | 0 | 6,346,716,840 | 25% | ||
inciter | 0 | 7,571,615,218 | 10% | ||
voitaksoutache | 0 | 4,660,114,812 | 50% | ||
springlining | 0 | 24,905,329,854 | 100% | ||
brainpod | 0 | 1,024,532,029 | 25% | ||
softa | 0 | 447,550,333,315 | 100% | ||
el-dee-are-es | 0 | 3,719,995,961 | 10% | ||
meanbees | 0 | 6,088,841,909 | 5% | ||
smacommunity | 0 | 980,899,469 | 50% | ||
celinavisaez | 0 | 6,484,746,548 | 17% | ||
fw206 | 0 | 734,259,367,699 | 9% | ||
techcoderx | 0 | 956,640,574,539 | 100% | ||
brettblue | 0 | 821,157,181 | 50% | ||
helpyou | 0 | 8,603,303,922 | 100% | ||
onelovedtube | 0 | 15,097,525,304 | 100% | ||
steempeak | 0 | 1,571,696,458,655 | 100% | ||
kstop1 | 0 | 15,425,741,505 | 100% | ||
toddmck | 0 | 2,471,929,235 | 100% | ||
voitakjewelry | 0 | 801,420,605 | 50% | ||
digital.mine | 0 | 128,875,123,731 | 100% | ||
chibuzorwisdom | 0 | 185,925,223 | 100% | ||
we-are-lucky | 0 | 26,692,121,499 | 59.7% | ||
gaottantacinque | 0 | 0 | 100% | ||
shortsegments | 0 | 846,862,566,649 | 100% | ||
qila | 0 | 11,631,191,429 | 100% | ||
rufruf | 0 | 551,169,232 | 100% | ||
melor9 | 0 | 10,344,892,359 | 50% | ||
icepee | 0 | 16,072,518,073 | 50% | ||
bigbos99 | 0 | 583,203,398 | 100% | ||
digi-me | 0 | 2,054,810,865 | 0.5% | ||
aljif7 | 0 | 6,829,401,510 | 10% | ||
smartvote | 0 | 91,546,882,098 | 4.4% | ||
vixmemon | 0 | 9,176,505,083 | 29.46% | ||
gasaeightyfive | 0 | 653,605,096 | 100% | ||
dlike | 0 | 497,909,315,630 | 100% | ||
pdq | 0 | 2,869,732,154,412 | 85% | ||
marcocasario | 0 | 79,951,651,018 | 13.53% | ||
voter001 | 0 | 26,672,292,319 | 29% | ||
alucian | 0 | 1,106,941,741 | 100% | ||
cribbio | 0 | 2,478,674,110 | 100% | ||
stefano.massari | 0 | 157,441,364,681 | 35% | ||
thevil | 0 | 968,507,654,050 | 100% | ||
vasigo | 0 | 20,027,408,746 | 100% | ||
artysteps | 0 | 20,019,336,169 | 100% | ||
peakmonsters | 0 | 519,483,583,893 | 100% | ||
linuxbot | 0 | 5,855,230,278 | 20% | ||
raoufwilly | 0 | 812,307,486 | 30% | ||
david.dicotomia | 0 | 709,651,015 | 10% | ||
thepatriotblog | 0 | 57,796,573,567 | 100% | ||
starrouge | 0 | 1,048,492,524 | 50% | ||
wherein | 0 | 29,247,675,105 | 100% | ||
cowboysblog | 0 | 3,045,288,878 | 100% | ||
zerofive | 0 | 872,902,987 | 50% | ||
julianhorack | 0 | 3,968,030,690 | 10% | ||
cnstm | 0 | 134,345,757,789 | 100% | ||
likuang007 | 0 | 665,860,519 | 100% | ||
monster.oo7 | 0 | 6,285,529,181 | 100% | ||
lianjingmedia | 0 | 1,004,005,509 | 100% | ||
manuel2395 | 0 | 8,603,980,582 | 100% | ||
hashkings | 0 | 2,736,313,148 | 5% | ||
russia-btc | 0 | 346,821,592,027 | 100% | ||
alenox | 0 | 662,112,830 | 5% | ||
jeremiahcustis | 0 | 84,116,226,536 | 100% | ||
photographercr | 0 | 1,103,051,148 | 20% | ||
loudutim | 0 | 296,353,416 | 100% | ||
iamangierose | 0 | 529,108,796 | 50% | ||
sparschwein | 0 | 60,278,195,720 | 100% | ||
beerlover | 0 | 6,386,266,339 | 5% | ||
tinyhousecryptos | 0 | 465,519,163 | 5% | ||
walterprofe | 0 | 114,822,278,168 | 100% | ||
zeruxanime | 0 | 12,213,842,425 | 50% | ||
imbartley | 0 | 452,173,856 | 15% | ||
ffoorryykkww | 0 | 0 | 100% | ||
farm1 | 0 | 136,900,020,178 | 100% | ||
votebetting | 0 | 15,425,493,526 | 100% | ||
valerianis | 0 | 1,842,650,954 | 5% | ||
lynds | 0 | 570,990,663,614 | 100% | ||
urun | 0 | 8,783,167,767 | 100% | ||
bilpcoinbot | 0 | 2,470,109,644 | 50% | ||
bilpcoinrecords | 0 | 1,997,788,085 | 50% | ||
bilpcoin.pay | 0 | 546,122,535 | 10% | ||
unpopular | 0 | 32,765,220,086 | 3% | ||
lnakuma | 0 | 57,637,156,682 | 100% | ||
rus-lifestyle | 0 | 1,332,533,933 | 100% | ||
bpcvoter | 0 | 452,393,940 | 50% | ||
curacer | 0 | 2,297,024,493 | 25% | ||
garlet | 0 | 44,219,199,520 | 50% | ||
bilpcoinbpc | 0 | 886,668,877 | 5% | ||
davidlionfish | 0 | 11,235,225,057 | 100% | ||
keys-defender | 0 | 3,000,156,573 | 100% | ||
nerdvana | 0 | 754,858,790 | 5% | ||
hive-134220 | 0 | 36,289,257,342 | 100% | ||
darine.darine | 0 | 198,812,400,902 | 100% | ||
peakd | 0 | 6,829,360,214,374 | 100% | ||
ykretz | 0 | 1,458,617,294 | 15% | ||
softworld | 0 | 391,513,343,641 | 76% | ||
captainhive | 0 | 949,617,237,840 | 35% | ||
hivelist | 0 | 3,662,680,678 | 3% | ||
ecency | 0 | 440,917,350,447 | 1% | ||
woelfchen | 0 | 35,623,840,419 | 9% | ||
forkyw | 0 | 0 | 100% | ||
mituabida | 0 | 770,055,725 | 100% | ||
discoveringarni | 0 | 17,688,744,887 | 15% | ||
noelyss | 0 | 2,626,330,213 | 5% | ||
forkyishere | 0 | 8,286,593,789 | 100% | ||
balvinder294 | 0 | 2,463,844,204 | 20% | ||
ykroys | 0 | 502,079,670 | 100% | ||
lucianav | 0 | 1,495,671,108 | 5% | ||
archon-gov | 0 | 11,547,799,299 | 5.5% | ||
hivebuilder | 0 | 4,833,042,489 | 100% | ||
gabilan55 | 0 | 732,652,649 | 5% | ||
olaunlimited | 0 | 614,699,446 | 45% | ||
ecency.stats | 0 | 372,501,560 | 1% | ||
jelly-cz | 0 | 562,656,201 | 30% | ||
norberto1 | 0 | 14,882,082,354 | 100% | ||
bartman67 | 0 | 6,088,381,207 | 100% | ||
noalys | 0 | 1,639,082,431 | 5% | ||
omarcitorojas | 0 | 39,140,863,833 | 10% | ||
danzocal | 0 | 5,778,554,925 | 100% | ||
enrico2gameplays | 0 | 959,370,320 | 100% | ||
kattycrochet | 0 | 5,851,258,056 | 5% | ||
hyper.speed | 0 | 2,226,264,653 | 100% | ||
pepeymeli | 0 | 784,327,761 | 50% | ||
tehox | 0 | 99,273,339,001 | 100% | ||
rondonshneezy | 0 | 486,283,620 | 2.5% | ||
atexoras | 0 | 0 | 100% | ||
belemo.leo | 0 | 477,193,707 | 100% | ||
kriszrokk | 0 | 46,032,330,936 | 100% | ||
eturnerx-dbuzz | 0 | 26,732,880,046 | 72.9% | ||
atexoras.witness | 0 | 1,767,492,172 | 100% | ||
elgatoshawua | 0 | 1,366,424,681 | 5% | ||
freed99 | 0 | 884,800,490 | 2.5% | ||
wend1go | 0 | 9,818,460,636 | 100% | ||
creodas | 0 | 2,537,603,326 | 75% | ||
cryptoniusrex | 0 | 33,709,687,363 | 100% | ||
jane1289 | 0 | 141,305,165,544 | 75% | ||
hive-defender | 0 | 381,188,535 | 100% | ||
power-kappe | 0 | 689,093,540 | 10% | ||
reidenling90 | 0 | 8,415,329,938 | 100% | ||
atexoras.pub | 0 | 60,605,244,264 | 100% | ||
louis.pay | 0 | 1,773,234,467 | 100% | ||
jdike | 0 | 1,711,978,694 | 100% | ||
hjrrodriguez | 0 | 47,506,950,758 | 100% | ||
fotomaglys | 0 | 4,237,280,647 | 5% | ||
seryi13 | 0 | 904,375,028 | 7% | ||
aprasad2325 | 0 | 1,792,829,593 | 5% | ||
dkkfrodo | 0 | 23,200,295,796 | 100% | ||
menzo | 0 | 5,682,237,940 | 10% | ||
intoy.bugoy | 0 | 85,410,646,069 | 100% | ||
x-rain | 0 | 396,411,340,034 | 100% | ||
flquin | 0 | 2,651,098,232 | 100% | ||
iamleicester | 0 | 500,357,813 | 80% | ||
cardshrine | 0 | 7,179,669,135 | 100% | ||
mozzie5 | 0 | 17,235,608,648 | 100% | ||
acantoni | 0 | 15,842,069,559 | 50% | ||
enira | 0 | 9,655,366,750 | 100% | ||
astrocat-3663 | 0 | 915,304,777 | 50% | ||
malhy | 0 | 1,785,399,902 | 5% | ||
gulivenrev68 | 0 | 453,454,665 | 100% | ||
eolianpariah2 | 0 | 839,920,457 | 0.35% | ||
arc7icwolf | 0 | 225,117,790,227 | 50% | ||
hylene74 | 0 | 85,318,718,205 | 100% | ||
marilour | 0 | 49,921,691,230 | 100% | ||
mickiewicz | 0 | 1,809,902,663 | 100% | ||
pappyelblanco | 0 | 4,449,628,942 | 50% | ||
gaposchkin | 0 | 10,042,594,225 | 100% | ||
gezellig | 0 | 1,655,122,153 | 50% | ||
almajandra | 0 | 3,028,457,738 | 100% | ||
swearingradio | 0 | 3,152,109,349 | 75% | ||
mtyszczak | 0 | 0 | 100% | ||
crypto-shots | 0 | 414,517,863 | 100% | ||
sirsmokesalot96 | 0 | 8,288,293,466 | 100% | ||
unitmaster | 0 | 36,722,705,738 | 100% | ||
lichtkunstfoto | 0 | 16,163,895,668 | 10% | ||
waliphoto | 0 | 35,606,352,930 | 100% | ||
defibenji | 0 | 0 | 100% | ||
littlebee4 | 0 | 102,556,418,411 | 19% | ||
ydaiznfts | 0 | 754,239,583 | 2.5% | ||
cryptoshots.nft | 0 | 0 | 100% | ||
serpent7776 | 0 | 1,129,741,081 | 100% | ||
aletoalonewolf | 0 | 2,488,874,877 | 25% | ||
franzpaulie | 0 | 47,439,659,737 | 100% | ||
juliasjohn | 0 | 1,682,177,269 | 100% | ||
drstealth | 0 | 7,160,133,268 | 100% | ||
cryptoshots.play | 0 | 0 | 10% | ||
hk-curation | 0 | 6,977,098,014 | 5% | ||
coldbeetrootsoup | 0 | 4,680,314,718,550 | 100% | ||
tzae | 0 | 641,534,575 | 100% | ||
hive-117638 | 0 | 1,844,907,813 | 50% | ||
solumviz | 0 | 26,892,180,725 | 100% | ||
idksamad78699 | 0 | 1,505,244,381 | 5% | ||
peak.open | 0 | 34,696,563,144 | 100% | ||
pinkchic | 0 | 525,547,344 | 2.5% | ||
seki1 | 0 | 3,267,553,759 | 100% | ||
thefootprint | 0 | 3,613,688,080 | 16% | ||
cryptoshotsdoom | 0 | 0 | 10% | ||
hive-132595 | 0 | 2,041,005,786 | 100% | ||
mv-curacion | 0 | 7,978,146,515 | 5% | ||
artefactoestudio | 0 | 2,157,785,784 | 100% | ||
misshugo | 0 | 15,802,156,512 | 25% | ||
carolinawnn | 0 | 889,275,936 | 100% | ||
istayglow | 0 | 3,979,421,282 | 100% | ||
akijirokoma | 0 | 15,328,200,092 | 100% | ||
hive-179513 | 0 | 944,706,111 | 25% | ||
nurul-uli | 0 | 5,576,518,655 | 100% | ||
abu78 | 0 | 2,044,180,462 | 5% | ||
beauty197 | 0 | 1,558,078,610 | 5% | ||
dovycola | 0 | 24,815,343,701 | 100% | ||
egbre | 0 | 479,918,989 | 10% | ||
karina.gpt | 0 | 0 | 100% | ||
preciouz-01 | 0 | 3,818,274,761 | 100% | ||
tahastories1 | 0 | 888,213,483 | 5% | ||
javedkhan1989 | 0 | 2,600,953,873 | 5% | ||
argo8 | 0 | 539,750,677 | 0.25% | ||
marilui91 | 0 | 18,686,266,710 | 100% | ||
ecency.waves | 0 | 0 | 1% | ||
like2cbrs | 0 | 2,590,653,912 | 100% | ||
reyn-is-chillin | 0 | 796,445,292 | 50% | ||
withdraw | 0 | 6,888,202,148,733 | 100% | ||
hivebeecon | 0 | 11,973,226,605 | 100% | ||
riseofthepixels | 0 | 11,983,463,327 | 100% | ||
captainman | 0 | 5,749,764,483 | 50% | ||
thebeedevs | 0 | 71,221,560,388 | 100% | ||
alto96 | 0 | 938,581,336 | 20% | ||
cbrsphilanthropy | 0 | 81,300,660,615 | 100% | ||
midnight-studio | 0 | 9,558,341,915 | 12.5% | ||
pixels.vault | 0 | 539,252,647,759 | 100% | ||
marialeovalless | 0 | 17,186,257,354 | 100% | ||
setpiece | 0 | 971,052,772 | 100% | ||
learn2code | 0 | 550,326,290 | 25% | ||
lolz.byte | 0 | 0 | 100% | ||
karoly | 0 | 81,480,736,513 | 100% | ||
thelivingworld | 0 | 663,569,268 | 5% | ||
harbiter | 0 | 131,980,816,888 | 80% | ||
tecnotronics | 0 | 9,105,908,645 | 100% | ||
picazzy005 | 0 | 3,101,668,739 | 50% | ||
cocinator | 0 | 8,001,495,657 | 100% | ||
applejane | 0 | 16,573,596,417 | 100% | ||
hive-100736 | 0 | 2,714,685,255 | 25% | ||
vastavikadi | 0 | 348,704,715 | 100% | ||
bhr-curation | 0 | 45,269,013,930 | 25% | ||
ryanaa | 0 | 39,275,768,421 | 100% | ||
kachy2022 | 0 | 18,666,148,364 | 100% | ||
sopel | 0 | 1,058,939,537,539 | 100% | ||
roswelborges | 0 | 46,080,510,612 | 100% | ||
iambril | 0 | 2,872,248,856 | 50% | ||
blackmiuria | 0 | 6,084,791,558 | 100% | ||
arshadkhan4421 | 0 | 2,520,014,811 | 50% | ||
techstyle | 0 | 1,411,893,412 | 100% | ||
ranajoy15 | 0 | 3,055,866,803 | 100% | ||
barddev | 0 | 0 | 100% | ||
vproenza | 0 | 461,116,347 | 50% | ||
michelleeeeys | 0 | 28,269,591,848 | 100% | ||
longhunter | 0 | 2,081,990,122 | 100% | ||
magic.byte | 0 | 0 | 100% | ||
zuliquijada22 | 0 | 2,404,002,292 | 100% | ||
arka1 | 0 | 1,126,982,835 | 0.5% | ||
alexcas | 0 | 316,241,931 | 50% | ||
pasteldecarne | 0 | 694,481,243 | 100% | ||
gerardosahagun | 0 | 1,894,117,688 | 100% | ||
godblessyou7771 | 0 | 0 | 4% | ||
mrcripdoe | 0 | 28,097,026,727 | 100% | ||
sereneaura | 0 | 0 | 100% |
Excellent news, this means that Hive is moving forward and nothing is stopping it. π
author | alborhada |
---|---|
permlink | re-thebeedevs-sxicql |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.6.1","image":[],"users":[]} |
created | 2025-06-07 22:50:03 |
last_update | 2025-06-07 22:50:03 |
depth | 1 |
children | 0 |
last_payout | 2025-06-14 22: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 | 85 |
author_reputation | 34,560,576,176,873 |
root_title | "Further integration of MetaMask and Hive wallet" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,230,980 |
net_rshares | 0 |
That looks interesting. Thank you so much for your hard work.
author | applejane |
---|---|
permlink | re-thebeedevs-sxfe94 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.5.9","image":[],"users":[]} |
created | 2025-06-06 08:29:30 |
last_update | 2025-06-06 08:29:30 |
depth | 1 |
children | 0 |
last_payout | 2025-06-13 08:29:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 61 |
author_reputation | 24,558,737,441,453 |
root_title | "Further integration of MetaMask and Hive wallet" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,196,875 |
net_rshares | 0 |
So it's essentially allowing hive to work with meta mask? Very cool. The implications for this, and how it could make hive less isolated(and thus more appealing to other parts of the crypto crowed) is pretty neat.
author | artofkylin |
---|---|
permlink | re-thebeedevs-sxei7i |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.5.9","image":[],"users":[]} |
created | 2025-06-05 20:57:18 |
last_update | 2025-06-05 20:57:18 |
depth | 1 |
children | 0 |
last_payout | 2025-06-12 20:57:18 |
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 | 214 |
author_reputation | 3,245,089,700,741 |
root_title | "Further integration of MetaMask and Hive wallet" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,189,051 |
net_rshares | 0 |
Nice! MetaMask integration opens up so many possibilities for Hive. Excited to see what's next! π
author | bhr-curation |
---|---|
permlink | further-integration-of-metamask-and-hive-wallet-1749136815921 |
category | hive-139531 |
json_metadata | {} |
created | 2025-06-05 15:20:15 |
last_update | 2025-06-05 15:20:15 |
depth | 1 |
children | 0 |
last_payout | 2025-06-12 15:20:15 |
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 | 97 |
author_reputation | 3,429,445,548,231 |
root_title | "Further integration of MetaMask and Hive wallet" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,183,482 |
net_rshares | 0 |
Thank you guys for all your work π₯°
author | coldbeetrootsoup |
---|---|
permlink | re-thebeedevs-sxe9kk |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.5.9","image":[],"users":[]} |
created | 2025-06-05 17:50:45 |
last_update | 2025-06-05 17:50:45 |
depth | 1 |
children | 0 |
last_payout | 2025-06-12 17:50: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 | 34 |
author_reputation | 302,737,602,153,573 |
root_title | "Further integration of MetaMask and Hive wallet" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,186,340 |
net_rshares | 0 |
!PIZZA
author | danzocal |
---|---|
permlink | re-thebeedevs-sxglti |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.6.1","image":[],"users":[]} |
created | 2025-06-07 00:10:33 |
last_update | 2025-06-07 00:10:33 |
depth | 1 |
children | 0 |
last_payout | 2025-06-14 00:10: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 | 6 |
author_reputation | 12,432,803,008,396 |
root_title | "Further integration of MetaMask and Hive wallet" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,211,645 |
net_rshares | 0 |
This will also help put Hive out there... I know many people who find it a hassle to install yet "another" wallet. So, having it under one of the most well-known ones will definitely call for support in marketing the chain and achieve easier interaction and exploration by many. Well done!
author | forykw |
---|---|
permlink | re-thebeedevs-sxilvj |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.6.1","image":[],"users":[]} |
created | 2025-06-08 02:06:57 |
last_update | 2025-06-08 02:06:57 |
depth | 1 |
children | 0 |
last_payout | 2025-06-15 02:06:57 |
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 | 290 |
author_reputation | 91,673,693,648,356 |
root_title | "Further integration of MetaMask and Hive wallet" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,232,839 |
net_rshares | 6,470,860,484 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
small.minion | 0 | 6,470,860,484 | 100% |
I see this as an absolute win. I've always been in support of hive leaving its shell and exploding outwards. I have many crypto friends that always ignore me when I tell them about hive because they never heard about it
author | grimmjoe |
---|---|
permlink | re-thebeedevs-sxonjk |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.6.1","image":[],"users":[]} |
created | 2025-06-11 08:28:33 |
last_update | 2025-06-11 08:28:33 |
depth | 1 |
children | 0 |
last_payout | 1969-12-31 23:59:59 |
cashout_time | 2025-06-18 08:28: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 | 219 |
author_reputation | 11,217,336,830,304 |
root_title | "Further integration of MetaMask and Hive wallet" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,293,142 |
net_rshares | 0 |
Congratulations @thebeedevs! Your post has been a top performer on the Hive blockchain and you have been rewarded with this rare badge <table><tr><td><img src="https://images.hive.blog/60x60/https://hivebuzz.me/badges/toppayoutday.png"></td><td>Post with the highest payout of the day.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@thebeedevs) 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-202505-delegations"><img src="https://images.hive.blog/64x128/https://i.imgur.com/fg8QnBc.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202505-delegations">Our Hive Power Delegations to the May PUM Winners</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pud-202506-feedback"><img src="https://images.hive.blog/64x128/https://i.imgur.com/zHjYI1k.jpg"></a></td><td><a href="/hive-122221/@hivebuzz/pud-202506-feedback">Feedback from the June Hive Power Up Day</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pum-202505-result"><img src="https://images.hive.blog/64x128/https://i.imgur.com/mzwqdSL.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202505-result">Hive Power Up Month Challenge - May 2025 Winners List</a></td></tr></table>
author | hivebuzz |
---|---|
permlink | notify-1749171689 |
category | hive-139531 |
json_metadata | {"image":["https://hivebuzz.me/notify.t6.png"]} |
created | 2025-06-06 01:01:27 |
last_update | 2025-06-06 01:01:27 |
depth | 1 |
children | 0 |
last_payout | 2025-06-13 01: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 | 1,415 |
author_reputation | 369,186,990,638,650 |
root_title | "Further integration of MetaMask and Hive wallet" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,191,933 |
net_rshares | 0 |
This indeed huge newsπͺπ₯ Big upsπ
author | ivyann |
---|---|
permlink | re-thebeedevs-2025611t82046986z |
category | hive-139531 |
json_metadata | {"links":[],"type":"comment","tags":["hive-139531","hive","hivedevs","dev","metamask"],"app":"ecency/3.3.3-mobile","format":"markdown+html"} |
created | 2025-06-11 07:20:48 |
last_update | 2025-06-11 07:20:48 |
depth | 1 |
children | 0 |
last_payout | 1969-12-31 23:59:59 |
cashout_time | 2025-06-18 07:20:48 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 33 |
author_reputation | 3,397,530,075,177 |
root_title | "Further integration of MetaMask and Hive wallet" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,292,468 |
net_rshares | 0 |
Yes this will work well and I see Hive going back to $3 with mass adoption coming. I just love it.
author | julianhorack |
---|---|
permlink | re-thebeedevs-sxhm9c |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.6.1","image":[],"users":[]} |
created | 2025-06-07 13:18:00 |
last_update | 2025-06-07 13:18:00 |
depth | 1 |
children | 0 |
last_payout | 2025-06-14 13:18:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.054 HBD |
curator_payout_value | 0.055 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 98 |
author_reputation | 501,222,200,954,670 |
root_title | "Further integration of MetaMask and Hive wallet" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,221,508 |
net_rshares | 342,740,482,686 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mituoshizhe | 0 | 342,740,482,686 | 100% |
Metamask should have better safety features by now, it is self-custodial, however, in the event of a wallet being compromised and unauthorized access to the user' log in occurs (for example to a third party application like staking or farming) Metamask just denies any responsability about it as it happened to someone I know.
author | latinowinner |
---|---|
permlink | re-thebeedevs-202566t74825421z |
category | hive-139531 |
json_metadata | {"tags":["hive","hivedevs","dev","metamask"],"app":"ecency/4.1.2-vision","format":"markdown+html"} |
created | 2025-06-05 21:48:27 |
last_update | 2025-06-05 21:48:27 |
depth | 1 |
children | 0 |
last_payout | 2025-06-12 21:48: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 | 328 |
author_reputation | 2,804,063,354,730 |
root_title | "Further integration of MetaMask and Hive wallet" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,189,779 |
net_rshares | 33,592,725,748 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
russia-btc | 0 | 33,592,725,748 | 10% |
I am very pleased that this information is shared with the users in this community. It is important. Thank you.
author | marilui91 |
---|---|
permlink | re-thebeedevs-sxfuk1 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.5.9","image":[],"users":[]} |
created | 2025-06-06 14:21:39 |
last_update | 2025-06-06 14:21:39 |
depth | 1 |
children | 0 |
last_payout | 2025-06-13 14:21:39 |
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 | 111 |
author_reputation | 36,107,466,519,482 |
root_title | "Further integration of MetaMask and Hive wallet" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,201,647 |
net_rshares | 0 |
This is phenomenal. Thanks so much for all your efforts.
author | mattclarke |
---|---|
permlink | re-thebeedevs-sxif4a |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.6.1","image":[],"users":[]} |
created | 2025-06-07 23:41:00 |
last_update | 2025-06-07 23:41:00 |
depth | 1 |
children | 0 |
last_payout | 2025-06-14 23:41: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 | 56 |
author_reputation | 127,091,474,034,148 |
root_title | "Further integration of MetaMask and Hive wallet" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,231,412 |
net_rshares | 0 |
I didn't even know that this was being worked on. It's actually a huge development with a lot of potential for future growth. Great work.
author | niallon11 |
---|---|
permlink | re-thebeedevs-sxecwr |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.5.9","image":[],"users":[]} |
created | 2025-06-05 19:02:54 |
last_update | 2025-06-05 19:02:54 |
depth | 1 |
children | 0 |
last_payout | 2025-06-12 19:02:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.070 HBD |
curator_payout_value | 0.070 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 138 |
author_reputation | 621,236,151,661,160 |
root_title | "Further integration of MetaMask and Hive wallet" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,187,351 |
net_rshares | 425,451,594,888 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
acidyo | 0 | 418,781,425,082 | 2% | ||
small.minion | 0 | 6,670,169,806 | 100% |
ππ
author | nsanwalji |
---|---|
permlink | re-thebeedevs-202566t55353487z |
category | hive-139531 |
json_metadata | {"links":[],"type":"comment","tags":["hive-139531","hive","hivedevs","dev","metamask"],"app":"ecency/3.3.3-mobile","format":"markdown+html"} |
created | 2025-06-06 00:23:54 |
last_update | 2025-06-06 00:23:54 |
depth | 1 |
children | 0 |
last_payout | 2025-06-13 00:23: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 | 2 |
author_reputation | 2,132,527,791,513 |
root_title | "Further integration of MetaMask and Hive wallet" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,191,634 |
net_rshares | 0 |
<center>PIZZA! $PIZZA slices delivered: @danzocal<sub>(7/10)</sub> tipped @thebeedevs <sub>Come get [MOON](https://moon.hive.pizza)ed!</sub></center>
author | pizzabot |
---|---|
permlink | re-further-integration-of-metamask-and-hive-wallet-20250607t001143z |
category | hive-139531 |
json_metadata | "{"app": "pizzabot"}" |
created | 2025-06-07 00:11:42 |
last_update | 2025-06-07 00:11:42 |
depth | 1 |
children | 0 |
last_payout | 2025-06-14 00:11: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 | 154 |
author_reputation | 7,429,613,346,379 |
root_title | "Further integration of MetaMask and Hive wallet" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,211,662 |
net_rshares | 0 |
Great job !
author | primeshuke |
---|---|
permlink | re-thebeedevs-202568t15445453z |
category | hive-139531 |
json_metadata | {"links":[],"type":"comment","tags":["hive-139531","hive","hivedevs","dev","metamask"],"app":"ecency/3.3.3-mobile","format":"markdown+html"} |
created | 2025-06-07 20:24:48 |
last_update | 2025-06-07 20:24:48 |
depth | 1 |
children | 0 |
last_payout | 2025-06-14 20:24:48 |
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 | 11 |
author_reputation | 3,058,768,679 |
root_title | "Further integration of MetaMask and Hive wallet" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,228,933 |
net_rshares | 0 |
## Pretty Cool - Metamask is a premere if not the premere wallet in crypto and defi . Thanks #reblogged #upvoted #tagged so I can refer to this later #shortsegments [link](https://peakd.com/hive-139531/@thebeedevs/further-integration-of-metamask-and-hive-wallet)
author | shortsegments |
---|---|
permlink | re-thebeedevs-sxivyd |
category | hive-139531 |
json_metadata | {"tags":["hive-139531","reblogged","upvoted","tagged","shortsegments"],"app":"peakd/2025.6.1","image":[],"users":[]} |
created | 2025-06-08 05:44:39 |
last_update | 2025-06-08 05:44:39 |
depth | 1 |
children | 0 |
last_payout | 2025-06-15 05:44:39 |
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 | 262 |
author_reputation | 666,516,650,701,565 |
root_title | "Further integration of MetaMask and Hive wallet" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,234,859 |
net_rshares | 0 |
Interesting. Will look into integrating this into Aioha.
author | techcoderx |
---|---|
permlink | re-thebeedevs-sxe2pe |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.5.9","image":[],"users":[]} |
created | 2025-06-05 15:22:27 |
last_update | 2025-06-05 15:22:27 |
depth | 1 |
children | 0 |
last_payout | 2025-06-12 15:22: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 | 56 |
author_reputation | 47,712,832,465,267 |
root_title | "Further integration of MetaMask and Hive wallet" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,183,505 |
net_rshares | 0 |
Nice step guys you are doing amazing job out there, this would be a great feature for hive.
author | techstyle |
---|---|
permlink | re-thebeedevs-202566t73111460z |
category | hive-139531 |
json_metadata | {"links":[],"type":"comment","tags":["hive-139531","hive","hivedevs","dev","metamask"],"app":"ecency/3.3.3-mobile","format":"markdown+html"} |
created | 2025-06-06 06:31:18 |
last_update | 2025-06-06 06:31:18 |
depth | 1 |
children | 0 |
last_payout | 2025-06-13 06:31:18 |
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 | 92 |
author_reputation | 3,103,248,006,127 |
root_title | "Further integration of MetaMask and Hive wallet" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,195,396 |
net_rshares | 0 |
$WINE
author | theguruasia |
---|---|
permlink | re-thebeedevs-sxeykz |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.5.9","image":[],"users":[]} |
created | 2025-06-06 02:51:00 |
last_update | 2025-06-06 02:51:00 |
depth | 1 |
children | 0 |
last_payout | 2025-06-13 02:51: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 | 5 |
author_reputation | 72,526,890,009,626 |
root_title | "Further integration of MetaMask and Hive wallet" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,192,954 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
endhivewatchers | 0 | 0 | 0.5% |
Getting HIVE out of its silo and into the rest of cryptosphere is very important. This is long overdue work to bring HIVE to mainstream. Thank you so much for the absolutely amazing service you have done for all of us. I have been HODLing since 2017 and its good to see things slowly coming together to a point where we can mass onboard users.
author | vimukthi |
---|---|
permlink | re-thebeedevs-202567t182048450z |
category | hive-139531 |
json_metadata | {"tags":["hive","hivedevs","dev","metamask"],"app":"ecency/4.1.2-vision","format":"markdown+html"} |
created | 2025-06-07 12:50:48 |
last_update | 2025-06-07 12:50:48 |
depth | 1 |
children | 0 |
last_payout | 2025-06-14 12:50:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.088 HBD |
curator_payout_value | 0.088 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 344 |
author_reputation | 490,576,875,974,222 |
root_title | "Further integration of MetaMask and Hive wallet" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,220,875 |
net_rshares | 550,004,332,445 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mattclarke | 0 | 550,004,332,445 | 51% |
I want to ask when we log in here is safe when logging in using Google Chrome because they have an option to store keys and they seem to save whatever we type how
author | waliphoto |
---|---|
permlink | sxijwy |
category | hive-139531 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2025-06-08 01:24:36 |
last_update | 2025-06-08 01:24:36 |
depth | 1 |
children | 0 |
last_payout | 2025-06-15 01:24:36 |
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 | 162 |
author_reputation | 53,085,131,950,669 |
root_title | "Further integration of MetaMask and Hive wallet" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,232,324 |
net_rshares | 0 |
Thank you for this work!!
author | x-rain |
---|---|
permlink | re-thebeedevs-sxg6n4 |
category | hive-139531 |
json_metadata | {"tags":["hive-139531"],"app":"peakd/2025.6.1","image":[],"users":[]} |
created | 2025-06-06 18:42:42 |
last_update | 2025-06-06 18:42:42 |
depth | 1 |
children | 0 |
last_payout | 2025-06-13 18:42: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 | 25 |
author_reputation | 675,935,778,381,749 |
root_title | "Further integration of MetaMask and Hive wallet" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 143,206,235 |
net_rshares | 0 |