Skip to content

Commit de028a7

Browse files
committed
Merge branch 'main' into update-faucet-alerts
2 parents 5a49800 + 9d2651c commit de028a7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+280
-99
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/snaps/ @MetaMask/tech-writers @MetaMask/snaps
1919

2020
# SDK documentation
21-
/sdk/ @MetaMask/tech-writers @MetaMask/sdk-devs
21+
/sdk/ @MetaMask/tech-writers @MetaMask/sdk-devs @MetaMask/sdk-devrel
2222

2323
# Wallet documentation
2424
/wallet/ @MetaMask/tech-writers @MetaMask/wallet-api-platform-engineers

docs/whats-new.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ of the [MetaMask developer page](https://metamask.io/developer/).
1111

1212
## May 2025
1313

14+
- Documented [how to use the Snaps sandbox](/snaps/how-to/test-a-snap/#test-in-the-sandbox).
15+
([#2030](https://github.com/MetaMask/metamask-docs/pull/2030))
1416
- Documented how to use the SDK CLI to set up a [JavaScript + Wagmi](/sdk/quickstart/javascript-wagmi) or [Dynamic SDK](/sdk/quickstart/javascript-dynamic) project.
1517
([#2010](https://github.com/MetaMask/metamask-docs/pull/2010))
1618
- Documented [how to send batch transactions via EIP-5792 and EIP-7702](/wallet/how-to/send-transactions/send-batch-transactions).

docusaurus.config.js

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// @ts-check
22
// Note: type annotations allow type checking and IDEs autocompletion
33

4+
import fs from "fs";
45
require('dotenv').config()
56
const { themes } = require('prism-react-renderer')
67
const { REF_ALLOW_LOGIN_PATH } = require('./src/lib/constants')
@@ -13,7 +14,7 @@ const {
1314
const codeTheme = themes.dracula
1415
const remarkCodesandbox = require('remark-codesandbox')
1516
const isProd = process.env.NODE_ENV === 'production'
16-
17+
const helpDropdown = fs.readFileSync("./src/components/NavDropdown/DeveloperTools.html", "utf-8");
1718
/** @type {import('@docusaurus/types').Config} */
1819
const config = {
1920
title: 'MetaMask developer documentation',
@@ -212,14 +213,11 @@ const config = {
212213
{
213214
type: 'dropdown',
214215
label: 'Developer tools',
216+
to: 'developer-tools/dashboard',
215217
items: [
216218
{
217-
label: 'Developer dashboard',
218-
to: 'developer-tools/dashboard',
219-
},
220-
{
221-
label: 'Faucet',
222-
to: 'developer-tools/faucet',
219+
type: "html",
220+
value: helpDropdown,
223221
},
224222
],
225223
},

package-lock.json

Lines changed: 7 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
"@docusaurus/plugin-client-redirects": "^3.7.0",
7878
"@docusaurus/tsconfig": "^3.7.0",
7979
"@docusaurus/types": "^3.7.0",
80-
"@eslint/js": "^9.24.0",
80+
"@eslint/js": "^9.27.0",
8181
"@tsconfig/docusaurus": "^2.0.3",
8282
"@types/react-alert": "^7.0.6",
8383
"@types/react-modal": "^3.16.3",

sdk/guides/advanced/connect-and-sign.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: Connect and sign using MetaMask SDK, either with Wagmi or Vanilla JavaScript.
2+
description: Connect and sign with the SDK in your Wagmi or Vanilla JavaScript dapp.
33
---
44

55
# Connect and sign

sdk/guides/authenticate-users.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: Authenticate users
2+
description: Authenticate users with the SDK in your Wagmi or Vanilla JavaScript dapp.
33
toc_max_heading_level: 2
44
---
55

sdk/guides/handle-transactions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: Handle transactions
2+
description: Handle transactions with the SDK in your Wagmi or Vanilla JavaScript dapp.
33
toc_max_heading_level: 2
44
---
55

sdk/guides/interact-with-contracts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: Interact with contracts
2+
description: Interact with contracts with the SDK in your Wagmi or Vanilla JavaScript dapp.
33
sidebar_label: Interact with contracts
44
toc_max_heading_level: 2
55
---

sdk/guides/manage-networks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: Manage networks
2+
description: Manage networks with the SDK in your Wagmi or Vanilla JavaScript dapp.
33
toc_max_heading_level: 2
44
---
55

0 commit comments

Comments
 (0)