Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .cursor/rules/product-services.mdc
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ alwaysApply: false
- The documentation area is called **Services**.
- **Infura** is the named API and infrastructure product. Use "Infura" when referring to the
service, endpoints, dashboard, or pricing.
- Positioning: "Infura is a MetaMask service." Use this framing when connecting Infura to the
broader MetaMask ecosystem.
- Positioning: Lead with Infura as the product (for example, "Infura offers...") rather than
subordinating it to another brand in introductory copy.
- Do not use "MetaMask Services" as a standalone product name in headings or prose.

## Content organization
Expand Down
1 change: 1 addition & 0 deletions .linkspector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ ignorePatterns:
- pattern: '^http(s)?://help.figma.com'
- pattern: '^http(s)?://metamask.io'
- pattern: '^http(s)?://rivet.cloud'
- pattern: '^http(s)?://app\.infura\.io($|/.*)'
- pattern: '^http(s)?://docs.arbitrum.io($|/.*)'
- pattern: '^/img/'
- pattern: '^/smart-accounts-kit/'
Expand Down
2 changes: 1 addition & 1 deletion developer-tools/dashboard/how-to/dashboard-stats.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This data is crucial for optimizing your applications and ensuring they run smoo

## Specify stats to view

1. In the left menu of the [MetaMask Developer dashboard](https://developer.metamask.io/), select **Stats**.
1. In the left menu of the [Infura dashboard](https://app.infura.io/), select **Stats**.
The stats page displays the total volume of requests sent to Infura over the specified time period.
By default, data is shown from the last 24 hours from all Web3 API keys.

Expand Down
2 changes: 1 addition & 1 deletion developer-tools/dashboard/how-to/submit-a-help-ticket.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: Submit a help ticket

To request help from the Infura customer support team, submit a help ticket using the following steps:

1. In the left menu of the [MetaMask Developer dashboard](https://developer.metamask.io/), select **Help**.
1. In the left menu of the [Infura dashboard](https://app.infura.io/), select **Help**.
This opens the [Help Center](https://support.infura.io/), which contains a
knowledge base of answers to common questions about using Infura.
Search for your question in the Help Center.
Expand Down
10 changes: 4 additions & 6 deletions developer-tools/dashboard/index.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
sidebar_label: Introduction
title: Developer dashboard introduction
description: Documentation for using the MetaMask Developer dashboard
title: Infura dashboard introduction
description: Documentation for using the Infura dashboard
sidebar_position: 1
---

Expand All @@ -10,10 +10,8 @@ import Banner from '@site/src/components/Banner'

# Introduction

The [MetaMask Developer dashboard](https://developer.metamask.io/) provides developers with a
comprehensive overview and control of their Infura service.
It serves as a central hub for managing API keys and access, monitoring usage, and accessing
account and billing information.
The [Infura dashboard](https://app.infura.io/) is the central hub for managing your Infura service.
Use it to create and manage API keys, monitor usage, and access account and billing information.

<Banner>Don't have an API key? Sign up for a free plan and start using the Infura service!</Banner>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ When using MetaMask Connect EVM, ensure your dapp is production ready by focusin

## Reliable RPC endpoints

- **Custom RPC setup** - Use production-grade RPC endpoints and custom API keys by signing up on [MetaMask Developer](https://developer.metamask.io/).
- **Custom RPC setup** - Use production-grade RPC endpoints and custom API keys by signing up on [Infura](https://app.infura.io/).
This improves reliability over public nodes.

- **Configuration** - Configure your Wagmi (or MetaMask Connect EVM) setup with your custom RPC URL using environment variables.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ The following HTML displays a **Send Batch** button:
:::tip Tips

- For a better user experience, use reliable RPC providers instead of public nodes.
We recommend using services like [MetaMask Developer](https://developer.metamask.io/) to ensure better reliability and performance.
We recommend using services like [Infura](https://app.infura.io/) to ensure better reliability and performance.
- Ensure that requests in a batch do not depend on one another's chain context, as mid-batch state changes can affect outcomes.
:::

Expand Down
2 changes: 1 addition & 1 deletion metamask-connect/evm/quickstart/javascript.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Install `@metamask/connect-evm`, initialize an EVM client, and connect to the Me
- [Node.js](https://nodejs.org/) version 19 or later installed.
- A package manager installed, such as [npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm), [Yarn](https://yarnpkg.com/), [pnpm](https://pnpm.io/installation), or [bun](https://bun.sh/).
- [MetaMask](https://metamask.io/) installed in your browser or on mobile.
- An [Infura API key](/developer-tools/dashboard/get-started/create-api) from the MetaMask Developer dashboard.
- An [Infura API key](/developer-tools/dashboard/get-started/create-api) from the Infura dashboard.

<!--
## Set up using a template
Expand Down
2 changes: 1 addition & 1 deletion metamask-connect/evm/quickstart/nodejs.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ polyfilling in browser or React Native environments.
- [Node.js](https://nodejs.org/) version 20 or later installed.
- A package manager installed, such as [npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm), [Yarn](https://yarnpkg.com/), or [pnpm](https://pnpm.io/installation).
- The [MetaMask mobile app](https://metamask.io/download/) installed on your phone.
- An [Infura API key](/developer-tools/dashboard/get-started/create-api) from the MetaMask Developer dashboard.
- An [Infura API key](/developer-tools/dashboard/get-started/create-api) from the Infura dashboard.

## Steps

Expand Down
4 changes: 2 additions & 2 deletions metamask-connect/evm/quickstart/wagmi.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ TOD0: Update with new screenshot and link
- [Node.js](https://nodejs.org/) version 19 or later installed.
- A package manager installed, such as [npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm), [Yarn](https://yarnpkg.com/), [pnpm](https://pnpm.io/installation), or [bun](https://bun.sh/).
- [MetaMask](https://metamask.io/download) installed in your browser or on mobile.
- An [Infura API key](/developer-tools/dashboard/get-started/create-api) from the MetaMask Developer dashboard.
- An [Infura API key](/developer-tools/dashboard/get-started/create-api) from the Infura dashboard.

## Set up using a template

Expand Down Expand Up @@ -308,7 +308,7 @@ metaMask({

:::tip
For production deployments, use reliable RPC providers instead of public nodes.
We recommend using services like [Infura](https://developer.metamask.io/) to ensure better reliability and performance.
We recommend using services like [Infura](https://app.infura.io/) to ensure better reliability and performance.
See the [production readiness checklist](../guides/best-practices/production-readiness.md) for more details.
:::

Expand Down
2 changes: 1 addition & 1 deletion metamask-connect/evm/reference/methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ Generates a map of Infura RPC URLs keyed by hex chain ID.
Use this utility to populate `api.supportedNetworks` when calling [`createEVMClient`](#createevmclient).

:::note
Each chain must be activated in your [Infura dashboard](https://developer.metamask.io/) before `getInfuraRpcUrls` can generate working URLs for it.
Each chain must be activated in your [Infura dashboard](https://app.infura.io/) before `getInfuraRpcUrls` can generate working URLs for it.
:::

### Parameters
Expand Down
2 changes: 1 addition & 1 deletion metamask-connect/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,5 +101,5 @@ See [integration options](integration-options.md) to choose the right package.
### Do I need an Infura API key to use MetaMask Connect?

We recommend using an Infura API key for reliable RPC access and relay connections.
You can get a free API key from the [MetaMask Developer dashboard](/developer-tools/dashboard/get-started/create-api).
You can get a free API key from the [Infura dashboard](/developer-tools/dashboard/get-started/create-api).
MetaMask Connect uses the API key to generate RPC URLs for supported networks via the `getInfuraRpcUrls` helper.
2 changes: 1 addition & 1 deletion metamask-connect/multichain/quickstart/javascript.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Get started with MetaMask Connect Multichain in your JavaScript (Vite) dapp.
- [Vite](https://vite.dev/) installed and configured.
- A package manager installed, such as [npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm), [Yarn](https://yarnpkg.com/), [pnpm](https://pnpm.io/installation), or [Bun](https://bun.sh/).
- [MetaMask](https://metamask.io/download) installed in your browser or on mobile.
- An [Infura API key](/developer-tools/dashboard/get-started/create-api) from the [MetaMask Developer dashboard](https://developer.metamask.io).
- An [Infura API key](/developer-tools/dashboard/get-started/create-api) from the [Infura dashboard](https://app.infura.io).

:::note
This quickstart uses [Vite](https://vite.dev/) as the build tool for convenience, but MetaMask Connect Multichain works with vanilla JavaScript or any build tool of your choice.
Expand Down
2 changes: 1 addition & 1 deletion metamask-connect/multichain/quickstart/nodejs.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ polyfilling in browser or React Native environments.
- [Node.js](https://nodejs.org/) version 20 or later installed.
- A package manager installed, such as [npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm), [Yarn](https://yarnpkg.com/), or [pnpm](https://pnpm.io/installation).
- The [MetaMask mobile app](https://metamask.io/download/) installed on your phone.
- An [Infura API key](/developer-tools/dashboard/get-started/create-api) from the [MetaMask Developer dashboard](https://developer.metamask.io).
- An [Infura API key](/developer-tools/dashboard/get-started/create-api) from the [Infura dashboard](https://app.infura.io).

## Steps

Expand Down
2 changes: 1 addition & 1 deletion metamask-connect/multichain/reference/methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ The following chains are included by default when `caipChainIds` is omitted.
| Solana | Devnet | `solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1` |
:::note
Each chain must be activated in your [Infura dashboard](https://developer.metamask.io/) before `getInfuraRpcUrls` can generate working URLs for it.
Each chain must be activated in your [Infura dashboard](https://app.infura.io/) before `getInfuraRpcUrls` can generate working URLs for it.
:::
### Example
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ your integration pattern.
- [Node.js](https://nodejs.org/) version 19 or later installed.
- A package manager such as [npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm), [Yarn](https://yarnpkg.com/), [pnpm](https://pnpm.io/installation), or [bun](https://bun.sh/).
- [MetaMask](https://metamask.io/download) installed in your browser.
- An [Infura API key](/developer-tools/dashboard/get-started/create-api) from the [MetaMask Developer dashboard](https://developer.metamask.io).
- An [Infura API key](/developer-tools/dashboard/get-started/create-api) from the [Infura dashboard](https://app.infura.io).

## Steps

Expand Down
2 changes: 1 addition & 1 deletion metamask-connect/solana/quickstart/javascript.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ This quickstart gets you up and running with MetaMask Connect Solana in a JavaSc
- [Node.js](https://nodejs.org/) version 19 or later installed.
- A package manager installed, such as [npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm), [Yarn](https://yarnpkg.com/), [pnpm](https://pnpm.io/installation), or [bun](https://bun.sh/).
- [MetaMask](https://metamask.io/) installed in your browser or on mobile.
- An [Infura API key](/developer-tools/dashboard/get-started/create-api) from the MetaMask Developer dashboard.
- An [Infura API key](/developer-tools/dashboard/get-started/create-api) from the Infura dashboard.

<!--
## Set up using a template
Expand Down
2 changes: 1 addition & 1 deletion metamask-connect/solana/quickstart/nodejs.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ In Node.js, use the multichain core directly via `client.core.connect` and
- [Node.js](https://nodejs.org/) version 20 or later installed.
- A package manager installed, such as [npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm), [Yarn](https://yarnpkg.com/), or [pnpm](https://pnpm.io/installation).
- The [MetaMask mobile app](https://metamask.io/download/) installed on your phone.
- An [Infura API key](/developer-tools/dashboard/get-started/create-api) from the MetaMask Developer dashboard.
- An [Infura API key](/developer-tools/dashboard/get-started/create-api) from the Infura dashboard.

## Steps

Expand Down
2 changes: 1 addition & 1 deletion metamask-connect/solana/reference/methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ The returned map can be passed directly to `createSolanaClient({ api: { supporte
Under the hood, this delegates to the [multichain `getInfuraRpcUrls`](/metamask-connect/multichain/reference/methods#getinfurarpcurls), which maps CAIP-2 chain IDs to Infura endpoints, then translates the result back to Solana network names.

:::note
Each chain must be activated in your [Infura dashboard](https://developer.metamask.io/) before `getInfuraRpcUrls` can generate working URLs for it.
Each chain must be activated in your [Infura dashboard](https://app.infura.io/) before `getInfuraRpcUrls` can generate working URLs for it.
:::

### Parameters
Expand Down
2 changes: 1 addition & 1 deletion metamask-connect/supported-platforms.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ WebViews inside apps like Twitter, Discord, or Reddit have inconsistent deeplink

:::tip
For relay-based connections (QR code and deeplink), use a reliable RPC provider instead of public nodes.
Relay connections are more sensitive to network latency, so services like [Infura](https://developer.metamask.io/) provide better reliability and performance.
Relay connections are more sensitive to network latency, so services like [Infura](https://app.infura.io/) provide better reliability and performance.
:::

## Supported environments
Expand Down
2 changes: 1 addition & 1 deletion services/get-started/endpoints.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import GasApiNetworks from "@site/src/components/GasApiNetworks.tsx";

The following lists all the network endpoints supported by Infura.

Ensure that you replace `<YOUR-API-KEY>` with an API key from your [MetaMask Developer dashboard](/developer-tools/dashboard).
Ensure that you replace `<YOUR-API-KEY>` with an API key from your [Infura dashboard](/developer-tools/dashboard).

## Arbitrum

Expand Down
6 changes: 3 additions & 3 deletions services/get-started/infura.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import TabItem from "@theme/TabItem";

## 1. Sign up to Infura

Infura is a MetaMask service that offers a comprehensive set of services to facilitate dapp and
Infura offers a comprehensive set of services to facilitate dapp and
[Snap development](/snaps/). Sign up for an account on the
[MetaMask Developer website](https://developer.metamask.io/register).
[Infura dashboard](https://app.infura.io/register).

To activate your account, verify your email address by clicking the link sent to your inbox.

Expand All @@ -30,7 +30,7 @@ For more information refer to the [Infura pricing information](https://www.infur

## 2. View your API key

After verification, you'll be directed to the [MetaMask Developer dashboard](/developer-tools/dashboard)
After verification, you'll be directed to the [Infura dashboard](/developer-tools/dashboard)
where you can view or configure your API key. Infura automatically generates the **My First Key** API key.

Select **My First Key** or the **Configure** link to view your API key settings.
Expand Down
2 changes: 1 addition & 1 deletion services/how-to/use-ipfs/authenticate-requests.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Authorization: Basic <base64(USERNAME:PASSWORD)>
```

Username is the `API_KEY` and password is the `API_KEY_SECRET.` Find your authorization credentials in the API key's settings
page after you [register your Infura account](https://developer.metamask.io/register) and
page after you [register your Infura account](https://app.infura.io/register) and
[create an API key](/developer-tools/dashboard/get-started/create-api) that includes the IPFS network.

For example, to authenticate and upload a file to IPFS using curl, you would use the following command:
Expand Down
2 changes: 1 addition & 1 deletion services/reference/_partials/_eth_accounts-example.mdx
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Replace `<YOUR-API-KEY>` with an API key from your [MetaMask Developer dashboard](https://developer.metamask.io/).
Replace `<YOUR-API-KEY>` with an API key from your [Infura dashboard](https://app.infura.io/).
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Replace `<YOUR-API-KEY>` with an API key from your [MetaMask Developer dashboard](https://developer.metamask.io/).
Replace `<YOUR-API-KEY>` with an API key from your [Infura dashboard](https://app.infura.io/).
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Replace `<YOUR-API-KEY>` with an API key from your [MetaMask Developer dashboard](https://developer.metamask.io/).
Replace `<YOUR-API-KEY>` with an API key from your [Infura dashboard](https://app.infura.io/).
2 changes: 1 addition & 1 deletion services/reference/_partials/_eth_call-example.mdx
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Replace `<YOUR-API-KEY>` with an API key from your [MetaMask Developer dashboard](https://developer.metamask.io/).
Replace `<YOUR-API-KEY>` with an API key from your [Infura dashboard](https://app.infura.io/).
2 changes: 1 addition & 1 deletion services/reference/_partials/_eth_callmany-example.mdx
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Replace `<YOUR-API-KEY>` with an API key from your [MetaMask Developer dashboard](https://developer.metamask.io/).
Replace `<YOUR-API-KEY>` with an API key from your [Infura dashboard](https://app.infura.io/).
2 changes: 1 addition & 1 deletion services/reference/_partials/_eth_chainid-example.mdx
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Replace `<YOUR-API-KEY>` with an API key from your [MetaMask Developer dashboard](https://developer.metamask.io/).
Replace `<YOUR-API-KEY>` with an API key from your [Infura dashboard](https://app.infura.io/).
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Replace `<YOUR-API-KEY>` with an API key from your [MetaMask Developer dashboard](https://developer.metamask.io/).
Replace `<YOUR-API-KEY>` with an API key from your [Infura dashboard](https://app.infura.io/).
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Replace `<YOUR-API-KEY>` with an API key from your [MetaMask Developer dashboard](https://developer.metamask.io/).
Replace `<YOUR-API-KEY>` with an API key from your [Infura dashboard](https://app.infura.io/).
2 changes: 1 addition & 1 deletion services/reference/_partials/_eth_feehistory-example.mdx
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Replace `<YOUR-API-KEY>` with an API key from your [MetaMask Developer dashboard](https://developer.metamask.io/).
Replace `<YOUR-API-KEY>` with an API key from your [Infura dashboard](https://app.infura.io/).
2 changes: 1 addition & 1 deletion services/reference/_partials/_eth_gasprice-example.mdx
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Replace `<YOUR-API-KEY>` with an API key from your [MetaMask Developer dashboard](https://developer.metamask.io/).
Replace `<YOUR-API-KEY>` with an API key from your [Infura dashboard](https://app.infura.io/).
2 changes: 1 addition & 1 deletion services/reference/_partials/_eth_getaccount-example.mdx
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Replace `<YOUR-API-KEY>` with an API key from your [MetaMask Developer dashboard](https://developer.metamask.io/).
Replace `<YOUR-API-KEY>` with an API key from your [Infura dashboard](https://app.infura.io/).
2 changes: 1 addition & 1 deletion services/reference/_partials/_eth_getbalance-example.mdx
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Replace `<YOUR-API-KEY>` with an API key from your [MetaMask Developer dashboard](https://developer.metamask.io/).
Replace `<YOUR-API-KEY>` with an API key from your [Infura dashboard](https://app.infura.io/).
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Replace `<YOUR-API-KEY>` with an API key from your [MetaMask Developer dashboard](https://developer.metamask.io/).
Replace `<YOUR-API-KEY>` with an API key from your [Infura dashboard](https://app.infura.io/).
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Replace `<YOUR-API-KEY>` with an API key from your [MetaMask Developer dashboard](https://developer.metamask.io/).
Replace `<YOUR-API-KEY>` with an API key from your [Infura dashboard](https://app.infura.io/).
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Replace `<YOUR-API-KEY>` with an API key from your [MetaMask Developer dashboard](https://developer.metamask.io/).
Replace `<YOUR-API-KEY>` with an API key from your [Infura dashboard](https://app.infura.io/).
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Replace `<YOUR-API-KEY>` with an API key from your [MetaMask Developer dashboard](https://developer.metamask.io/).
Replace `<YOUR-API-KEY>` with an API key from your [Infura dashboard](https://app.infura.io/).
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Replace `<YOUR-API-KEY>` with an API key from your [MetaMask Developer dashboard](https://developer.metamask.io/).
Replace `<YOUR-API-KEY>` with an API key from your [Infura dashboard](https://app.infura.io/).
2 changes: 1 addition & 1 deletion services/reference/_partials/_eth_getcode-example.mdx
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Replace `<YOUR-API-KEY>` with an API key from your [MetaMask Developer dashboard](https://developer.metamask.io/).
Replace `<YOUR-API-KEY>` with an API key from your [Infura dashboard](https://app.infura.io/).
2 changes: 1 addition & 1 deletion services/reference/_partials/_eth_getlogs-example.mdx
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Replace `<YOUR-API-KEY>` with an API key from your [MetaMask Developer dashboard](https://developer.metamask.io/).
Replace `<YOUR-API-KEY>` with an API key from your [Infura dashboard](https://app.infura.io/).
2 changes: 1 addition & 1 deletion services/reference/_partials/_eth_getproof-example.mdx
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Replace `<YOUR-API-KEY>` with an API key from your [MetaMask Developer dashboard](https://developer.metamask.io/).
Replace `<YOUR-API-KEY>` with an API key from your [Infura dashboard](https://app.infura.io/).
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Replace `<YOUR-API-KEY>` with an API key from your [MetaMask Developer dashboard](https://developer.metamask.io/).
Replace `<YOUR-API-KEY>` with an API key from your [Infura dashboard](https://app.infura.io/).
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Replace `<YOUR-API-KEY>` with an API key from your [MetaMask Developer dashboard](https://developer.metamask.io/).
Replace `<YOUR-API-KEY>` with an API key from your [Infura dashboard](https://app.infura.io/).
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Replace `<YOUR-API-KEY>` with an API key from your [MetaMask Developer dashboard](https://developer.metamask.io/).
Replace `<YOUR-API-KEY>` with an API key from your [Infura dashboard](https://app.infura.io/).
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Replace `<YOUR-API-KEY>` with an API key from your [MetaMask Developer dashboard](https://developer.metamask.io/).
Replace `<YOUR-API-KEY>` with an API key from your [Infura dashboard](https://app.infura.io/).
Loading
Loading