From 370a98925304e97b130829ab1693a57f6bd5d777 Mon Sep 17 00:00:00 2001 From: mx644 <150091986+mx644@users.noreply.github.com> Date: Tue, 2 Jan 2024 22:03:19 +0100 Subject: [PATCH] feat: add support for Sepolia testnet in documentation (#218) Co-authored-by: hoffeig <150091986+hoffeig@users.noreply.github.com> --- apps/base-docs/docs/tools/hardhat.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/base-docs/docs/tools/hardhat.md b/apps/base-docs/docs/tools/hardhat.md index 0f5962e568..e3549bc92b 100644 --- a/apps/base-docs/docs/tools/hardhat.md +++ b/apps/base-docs/docs/tools/hardhat.md @@ -46,6 +46,12 @@ networks: { accounts: [process.env.PRIVATE_KEY as string], gasPrice: 1000000000, }, + // for Sepolia testnet + "base-sepolia": { + url: "https://sepolia.base.org", + accounts: [process.env.PRIVATE_KEY as string] + gasPrice: 1000000000, + }, // for local dev environment "base-local": { url: "http://localhost:8545",