From dcb4122cfbd3077e6c0a7f29f2f01db22b59139f Mon Sep 17 00:00:00 2001 From: 0xLucian <0xluciandev@gmail.com> Date: Mon, 16 Oct 2023 16:45:38 +0300 Subject: [PATCH] chore: add arbitrum in hardhat config --- hardhat.config.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hardhat.config.ts b/hardhat.config.ts index e39fb765..3efba0b0 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -96,6 +96,15 @@ const config: HardhatUserConfig = { mnemonic: process.env.MNEMONIC || "", }, }, + arbitrum: { + url: "https://arbitrum.llamarpc.com/", + chainId: 42161, + live: true, + timeout: 1200000, + accounts: { + mnemonic: process.env.MNEMONIC || "", + }, + }, }, gasReporter: { enabled: process.env.REPORT_GAS !== undefined,