create account

Further integration of MetaMask and Hive wallet by thebeedevs

View this thread on: hive.blogpeakd.comecency.com
· @thebeedevs · (edited)
$112.60
Further integration of MetaMask and Hive wallet
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**:

 ![Monty_Python_spanish_inquisition.jpg](https://images.hive.blog/DQmdFGtUmUYMmX1b1h8kCDnjTECjF6fa9poKKuocVitFqEo/Monty_Python_spanish_inquisition.jpg) 

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!!! 🐝

 ![MM-Hive-Bee.png](https://images.hive.blog/DQmeig7RpxfXncsZCXp1HLbdCTZDfgtdC8HGe68pF2QP55i/MM-Hive-Bee.png) 

#### 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: πŸ“²

 ![snaps-architecture-1.png](https://images.hive.blog/DQmNPxPTFre8N5KdDka1v5NQ9fmwUWfmqWg6RFstDK37xL6/snaps-architecture-1.png) 

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:

 ![snaps-getentropy.png](https://images.hive.blog/DQmRpd9jSKRC85vuQ6y4dzh4z69atepnDYjh5qGLqjWmXCu/snaps-getentropy.png)

#### 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:

 ![approve-tx.png](https://images.hive.blog/DQmbaJ24UQGz8cLPY5jiENNSZY4z1xdPptXMYr55nQ2DD6Q/approve-tx.png)  

#### 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
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 343 others
properties (23)
authorthebeedevs
permlinkfurther-integration-of-metamask-and-hive-wallet
categoryhive-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/"]}"
created2025-06-05 15:00:42
last_update2025-06-05 15:16:12
depth0
children25
last_payout2025-06-12 15:00:42
cashout_time1969-12-31 23:59:59
total_payout_value37.550 HBD
curator_payout_value75.053 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9,610
author_reputation199,200,348,472,277
root_title"Further integration of MetaMask and Hive wallet"
beneficiaries
0.
accountmtyszczak
weight2,500
1.
accountsmall.minion
weight2,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id143,183,085
net_rshares446,991,508,429,050
author_curate_reward""
vote details (407)
@alborhada ·
Excellent news, this means that Hive is moving forward and nothing is stopping it. πŸŽ‰ 
properties (22)
authoralborhada
permlinkre-thebeedevs-sxicql
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2025.6.1","image":[],"users":[]}
created2025-06-07 22:50:03
last_update2025-06-07 22:50:03
depth1
children0
last_payout2025-06-14 22:50:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length85
author_reputation34,560,576,176,873
root_title"Further integration of MetaMask and Hive wallet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id143,230,980
net_rshares0
@applejane ·
That looks interesting. Thank you so much for your hard work.
properties (22)
authorapplejane
permlinkre-thebeedevs-sxfe94
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2025.5.9","image":[],"users":[]}
created2025-06-06 08:29:30
last_update2025-06-06 08:29:30
depth1
children0
last_payout2025-06-13 08:29:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length61
author_reputation24,558,737,441,453
root_title"Further integration of MetaMask and Hive wallet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id143,196,875
net_rshares0
@artofkylin ·
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. 
properties (22)
authorartofkylin
permlinkre-thebeedevs-sxei7i
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2025.5.9","image":[],"users":[]}
created2025-06-05 20:57:18
last_update2025-06-05 20:57:18
depth1
children0
last_payout2025-06-12 20:57:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length214
author_reputation3,245,089,700,741
root_title"Further integration of MetaMask and Hive wallet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id143,189,051
net_rshares0
@bhr-curation ·
Nice! MetaMask integration opens up so many possibilities for Hive. Excited to see what's next! πŸš€
properties (22)
authorbhr-curation
permlinkfurther-integration-of-metamask-and-hive-wallet-1749136815921
categoryhive-139531
json_metadata{}
created2025-06-05 15:20:15
last_update2025-06-05 15:20:15
depth1
children0
last_payout2025-06-12 15:20:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length97
author_reputation3,429,445,548,231
root_title"Further integration of MetaMask and Hive wallet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id143,183,482
net_rshares0
@coldbeetrootsoup ·
Thank you guys for all your work πŸ₯°
properties (22)
authorcoldbeetrootsoup
permlinkre-thebeedevs-sxe9kk
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2025.5.9","image":[],"users":[]}
created2025-06-05 17:50:45
last_update2025-06-05 17:50:45
depth1
children0
last_payout2025-06-12 17:50:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation302,737,602,153,573
root_title"Further integration of MetaMask and Hive wallet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id143,186,340
net_rshares0
@danzocal ·
!PIZZA
properties (22)
authordanzocal
permlinkre-thebeedevs-sxglti
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2025.6.1","image":[],"users":[]}
created2025-06-07 00:10:33
last_update2025-06-07 00:10:33
depth1
children0
last_payout2025-06-14 00:10:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation12,432,803,008,396
root_title"Further integration of MetaMask and Hive wallet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id143,211,645
net_rshares0
@forykw ·
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!
πŸ‘  
properties (23)
authorforykw
permlinkre-thebeedevs-sxilvj
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2025.6.1","image":[],"users":[]}
created2025-06-08 02:06:57
last_update2025-06-08 02:06:57
depth1
children0
last_payout2025-06-15 02:06:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length290
author_reputation91,673,693,648,356
root_title"Further integration of MetaMask and Hive wallet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id143,232,839
net_rshares6,470,860,484
author_curate_reward""
vote details (1)
@grimmjoe ·
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
properties (22)
authorgrimmjoe
permlinkre-thebeedevs-sxonjk
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2025.6.1","image":[],"users":[]}
created2025-06-11 08:28:33
last_update2025-06-11 08:28:33
depth1
children0
last_payout1969-12-31 23:59:59
cashout_time2025-06-18 08:28:33
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length219
author_reputation11,217,336,830,304
root_title"Further integration of MetaMask and Hive wallet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id143,293,142
net_rshares0
@hivebuzz ·
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>
properties (22)
authorhivebuzz
permlinknotify-1749171689
categoryhive-139531
json_metadata{"image":["https://hivebuzz.me/notify.t6.png"]}
created2025-06-06 01:01:27
last_update2025-06-06 01:01:27
depth1
children0
last_payout2025-06-13 01:01:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,415
author_reputation369,186,990,638,650
root_title"Further integration of MetaMask and Hive wallet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id143,191,933
net_rshares0
@ivyann ·
This indeed huge newsπŸ’ͺπŸ”₯

Big upsπŸ‘
properties (22)
authorivyann
permlinkre-thebeedevs-2025611t82046986z
categoryhive-139531
json_metadata{"links":[],"type":"comment","tags":["hive-139531","hive","hivedevs","dev","metamask"],"app":"ecency/3.3.3-mobile","format":"markdown+html"}
created2025-06-11 07:20:48
last_update2025-06-11 07:20:48
depth1
children0
last_payout1969-12-31 23:59:59
cashout_time2025-06-18 07:20:48
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation3,397,530,075,177
root_title"Further integration of MetaMask and Hive wallet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id143,292,468
net_rshares0
@julianhorack ·
$0.11
Yes this will work well and I see Hive going back to $3 with mass adoption coming. I just love it.
πŸ‘  
properties (23)
authorjulianhorack
permlinkre-thebeedevs-sxhm9c
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2025.6.1","image":[],"users":[]}
created2025-06-07 13:18:00
last_update2025-06-07 13:18:00
depth1
children0
last_payout2025-06-14 13:18:00
cashout_time1969-12-31 23:59:59
total_payout_value0.054 HBD
curator_payout_value0.055 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length98
author_reputation501,222,200,954,670
root_title"Further integration of MetaMask and Hive wallet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id143,221,508
net_rshares342,740,482,686
author_curate_reward""
vote details (1)
@latinowinner ·
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.
πŸ‘  
properties (23)
authorlatinowinner
permlinkre-thebeedevs-202566t74825421z
categoryhive-139531
json_metadata{"tags":["hive","hivedevs","dev","metamask"],"app":"ecency/4.1.2-vision","format":"markdown+html"}
created2025-06-05 21:48:27
last_update2025-06-05 21:48:27
depth1
children0
last_payout2025-06-12 21:48:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length328
author_reputation2,804,063,354,730
root_title"Further integration of MetaMask and Hive wallet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id143,189,779
net_rshares33,592,725,748
author_curate_reward""
vote details (1)
@marilui91 ·
I am very pleased that this information is shared with the users in this community. It is important. Thank you.
properties (22)
authormarilui91
permlinkre-thebeedevs-sxfuk1
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2025.5.9","image":[],"users":[]}
created2025-06-06 14:21:39
last_update2025-06-06 14:21:39
depth1
children0
last_payout2025-06-13 14:21:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length111
author_reputation36,107,466,519,482
root_title"Further integration of MetaMask and Hive wallet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id143,201,647
net_rshares0
@mattclarke ·
This is phenomenal. Thanks so much for all your efforts.
properties (22)
authormattclarke
permlinkre-thebeedevs-sxif4a
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2025.6.1","image":[],"users":[]}
created2025-06-07 23:41:00
last_update2025-06-07 23:41:00
depth1
children0
last_payout2025-06-14 23:41:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation127,091,474,034,148
root_title"Further integration of MetaMask and Hive wallet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id143,231,412
net_rshares0
@niallon11 ·
$0.14
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.
πŸ‘  ,
properties (23)
authorniallon11
permlinkre-thebeedevs-sxecwr
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2025.5.9","image":[],"users":[]}
created2025-06-05 19:02:54
last_update2025-06-05 19:02:54
depth1
children0
last_payout2025-06-12 19:02:54
cashout_time1969-12-31 23:59:59
total_payout_value0.070 HBD
curator_payout_value0.070 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length138
author_reputation621,236,151,661,160
root_title"Further integration of MetaMask and Hive wallet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id143,187,351
net_rshares425,451,594,888
author_curate_reward""
vote details (2)
@nsanwalji ·
πŸ‘πŸ˜Š
properties (22)
authornsanwalji
permlinkre-thebeedevs-202566t55353487z
categoryhive-139531
json_metadata{"links":[],"type":"comment","tags":["hive-139531","hive","hivedevs","dev","metamask"],"app":"ecency/3.3.3-mobile","format":"markdown+html"}
created2025-06-06 00:23:54
last_update2025-06-06 00:23:54
depth1
children0
last_payout2025-06-13 00:23:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2
author_reputation2,132,527,791,513
root_title"Further integration of MetaMask and Hive wallet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id143,191,634
net_rshares0
@pizzabot ·
<center>PIZZA!


$PIZZA slices delivered:
@danzocal<sub>(7/10)</sub> tipped @thebeedevs 


<sub>Come get [MOON](https://moon.hive.pizza)ed!</sub></center>
properties (22)
authorpizzabot
permlinkre-further-integration-of-metamask-and-hive-wallet-20250607t001143z
categoryhive-139531
json_metadata"{"app": "pizzabot"}"
created2025-06-07 00:11:42
last_update2025-06-07 00:11:42
depth1
children0
last_payout2025-06-14 00:11:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length154
author_reputation7,429,613,346,379
root_title"Further integration of MetaMask and Hive wallet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id143,211,662
net_rshares0
@primeshuke ·
Great job !
properties (22)
authorprimeshuke
permlinkre-thebeedevs-202568t15445453z
categoryhive-139531
json_metadata{"links":[],"type":"comment","tags":["hive-139531","hive","hivedevs","dev","metamask"],"app":"ecency/3.3.3-mobile","format":"markdown+html"}
created2025-06-07 20:24:48
last_update2025-06-07 20:24:48
depth1
children0
last_payout2025-06-14 20:24:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation3,058,768,679
root_title"Further integration of MetaMask and Hive wallet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id143,228,933
net_rshares0
@shortsegments ·
## 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)
properties (22)
authorshortsegments
permlinkre-thebeedevs-sxivyd
categoryhive-139531
json_metadata{"tags":["hive-139531","reblogged","upvoted","tagged","shortsegments"],"app":"peakd/2025.6.1","image":[],"users":[]}
created2025-06-08 05:44:39
last_update2025-06-08 05:44:39
depth1
children0
last_payout2025-06-15 05:44:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length262
author_reputation666,516,650,701,565
root_title"Further integration of MetaMask and Hive wallet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id143,234,859
net_rshares0
@techcoderx ·
Interesting. Will look into integrating this into Aioha.
properties (22)
authortechcoderx
permlinkre-thebeedevs-sxe2pe
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2025.5.9","image":[],"users":[]}
created2025-06-05 15:22:27
last_update2025-06-05 15:22:27
depth1
children0
last_payout2025-06-12 15:22:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation47,712,832,465,267
root_title"Further integration of MetaMask and Hive wallet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id143,183,505
net_rshares0
@techstyle ·
Nice step guys you are doing amazing job out there, this would be a great feature for hive. 
properties (22)
authortechstyle
permlinkre-thebeedevs-202566t73111460z
categoryhive-139531
json_metadata{"links":[],"type":"comment","tags":["hive-139531","hive","hivedevs","dev","metamask"],"app":"ecency/3.3.3-mobile","format":"markdown+html"}
created2025-06-06 06:31:18
last_update2025-06-06 06:31:18
depth1
children0
last_payout2025-06-13 06:31:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length92
author_reputation3,103,248,006,127
root_title"Further integration of MetaMask and Hive wallet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id143,195,396
net_rshares0
@theguruasia ·
$WINE
πŸ‘  
properties (23)
authortheguruasia
permlinkre-thebeedevs-sxeykz
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2025.5.9","image":[],"users":[]}
created2025-06-06 02:51:00
last_update2025-06-06 02:51:00
depth1
children0
last_payout2025-06-13 02:51:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation72,526,890,009,626
root_title"Further integration of MetaMask and Hive wallet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id143,192,954
net_rshares0
author_curate_reward""
vote details (1)
@vimukthi ·
$0.18
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. 
πŸ‘  
properties (23)
authorvimukthi
permlinkre-thebeedevs-202567t182048450z
categoryhive-139531
json_metadata{"tags":["hive","hivedevs","dev","metamask"],"app":"ecency/4.1.2-vision","format":"markdown+html"}
created2025-06-07 12:50:48
last_update2025-06-07 12:50:48
depth1
children0
last_payout2025-06-14 12:50:48
cashout_time1969-12-31 23:59:59
total_payout_value0.088 HBD
curator_payout_value0.088 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length344
author_reputation490,576,875,974,222
root_title"Further integration of MetaMask and Hive wallet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id143,220,875
net_rshares550,004,332,445
author_curate_reward""
vote details (1)
@waliphoto ·
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
properties (22)
authorwaliphoto
permlinksxijwy
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2025-06-08 01:24:36
last_update2025-06-08 01:24:36
depth1
children0
last_payout2025-06-15 01:24:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length162
author_reputation53,085,131,950,669
root_title"Further integration of MetaMask and Hive wallet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id143,232,324
net_rshares0
@x-rain ·
Thank you for this work!!
properties (22)
authorx-rain
permlinkre-thebeedevs-sxg6n4
categoryhive-139531
json_metadata{"tags":["hive-139531"],"app":"peakd/2025.6.1","image":[],"users":[]}
created2025-06-06 18:42:42
last_update2025-06-06 18:42:42
depth1
children0
last_payout2025-06-13 18:42:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length25
author_reputation675,935,778,381,749
root_title"Further integration of MetaMask and Hive wallet"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id143,206,235
net_rshares0