Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document Solana wallet standard support #1940

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/whats-new.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ of the [MetaMask developer page](https://metamask.io/developer/).

## March 2025

- Documented [Solana](/wallet/how-to/use-non-evm-networks/solana) Wallet Standard support.
([#1940](https://github.com/MetaMask/metamask-docs/pull/1940))
- Added a tutorial for [sending a transaction using Viem](/services/tutorials/ethereum/send-a-transaction/send-a-transaction-viem). ([#1920](https://github.com/MetaMask/metamask-docs/pull/1920))
- Documented [Base subscription methods](/services/reference/base/json-rpc-methods/subscription-methods).
([#1916](https://github.com/MetaMask/metamask-docs/pull/1916))
Expand Down
7 changes: 6 additions & 1 deletion wallet-sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,14 @@ const sidebar = {
collapsed: true,
link: { type: "doc", id: "how-to/use-non-evm-networks/index" },
items: [
{
type: "doc",
label: "Solana",
id: "how-to/use-non-evm-networks/solana"
},
{
type: "category",
label: "Use Starknet",
label: "Starknet",
link: { type: "doc", id: "how-to/use-non-evm-networks/starknet/index" },
items: [
{
Expand Down
13 changes: 8 additions & 5 deletions wallet/how-to/use-non-evm-networks/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,20 @@ import CardList from "@site/src/components/CardList"

# Use non-EVM networks

You can interact with users' accounts on non-EVM networks by connecting to existing
[MetaMask Snaps](https://metamask.io/snaps/).

Non-EVM networks are blockchain networks that are not compatible with the Ethereum Virtual Machine (EVM).
Non-EVM dapps and MetaMask can't directly interact with each other.
By connecting to dedicated non-EVM Snaps, you can extend the functionality of MetaMask and integrate non-EVM networks into your existing MetaMask workflow.
By connecting to third-party libraries or dedicated non-EVM [Snaps](https://metamask.io/snaps/), you can extend the functionality of MetaMask and integrate non-EVM networks into your existing MetaMask workflow.

MetaMask provides Snaps for the following networks:
MetaMask supports the following non-EVM networks:

<CardList
items={[
{
href: "solana",
title: "Solana",
description:
"High-performance non-EVM network.",
},
{
href: "starknet",
title: "Starknet",
Expand Down
16 changes: 16 additions & 0 deletions wallet/how-to/use-non-evm-networks/solana.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
description: Interact with users' Solana accounts in MetaMask.
---

# Solana

[Solana](https://solana.com/) is a high-performance, non-EVM network that provides fast transaction speeds and low fees.

MetaMask implements the [Wallet Standard](https://github.com/wallet-standard/wallet-standard), so MetaMask is supported out-of-the-box for Solana dapps that use the Wallet Standard or that integrate Solana's [Wallet Adapter](https://github.com/anza-xyz/wallet-adapter/blob/master/APP.md).

Check failure on line 9 in wallet/how-to/use-non-evm-networks/solana.md

View workflow job for this annotation

GitHub Actions / Lint / Spelling (.md)

[vale] reported by reviewdog 🐶 [Vale.Spelling] Did you really mean 'Solana's'? Raw Output: {"message": "[Vale.Spelling] Did you really mean 'Solana's'?", "location": {"path": "wallet/how-to/use-non-evm-networks/solana.md", "range": {"start": {"line": 9, "column": 200}}}, "severity": "ERROR"}

Learn more in Solana's [Interact With Wallets](https://solana.com/developers/courses/intro-to-solana/interact-with-wallets) documentation.

Check failure on line 11 in wallet/how-to/use-non-evm-networks/solana.md

View workflow job for this annotation

GitHub Actions / Lint / Spelling (.md)

[vale] reported by reviewdog 🐶 [Vale.Spelling] Did you really mean 'Solana's'? Raw Output: {"message": "[Vale.Spelling] Did you really mean 'Solana's'?", "location": {"path": "wallet/how-to/use-non-evm-networks/solana.md", "range": {"start": {"line": 11, "column": 15}}}, "severity": "ERROR"}

:::note
With the Wallet Standard, MetaMask does not appear as a connection option for users that don't already have MetaMask installed.
Ask the MetaMask team on [Discord](https://discord.gg/consensys) if you need support for a custom integration.
:::
2 changes: 1 addition & 1 deletion wallet/how-to/use-non-evm-networks/starknet/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description: Interact with users' Starknet accounts in MetaMask.
---

# Use Starknet
# Starknet

[Starknet](https://www.starknet.io/) is a non-EVM Layer 2 network.
You can interact with users' Starknet accounts in MetaMask by connecting to the
Expand Down
Loading