From 5bb0a4fd9eb41744fd9d2049849ab4ec866eb138 Mon Sep 17 00:00:00 2001 From: Soumyadeep Sarkar Date: Thu, 9 Oct 2025 21:20:06 +0530 Subject: [PATCH] Update note for connecting to Flow mainnet --- docs/blockchain-development-tutorials/evm/frameworks/ethers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/blockchain-development-tutorials/evm/frameworks/ethers.md b/docs/blockchain-development-tutorials/evm/frameworks/ethers.md index f73d59d0ad..1d3425cd8d 100644 --- a/docs/blockchain-development-tutorials/evm/frameworks/ethers.md +++ b/docs/blockchain-development-tutorials/evm/frameworks/ethers.md @@ -43,7 +43,7 @@ const url = 'https://testnet.evm.nodes.onflow.org/'; const provider = new ethers.providers.JsonRpcProvider(url); ``` -**Note:** If you want to connect to the Flow testnet, replace the above URL with `https://mainnet.evm.nodes.onflow.org`. +**Note:** If you want to connect to the Flow mainnet, replace the above URL with `https://mainnet.evm.nodes.onflow.org`. ## Reading Data from the Blockchain