From 5d5eb1d667f49351225509f9262d22ba6a8034a9 Mon Sep 17 00:00:00 2001 From: Le-Caignec Date: Thu, 24 Jul 2025 11:08:33 +0200 Subject: [PATCH] chore: organize network configurations and add Arbitrum network --- hardhat.config.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/hardhat.config.ts b/hardhat.config.ts index 2df4acb..ecc0349 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -26,20 +26,26 @@ const config: HardhatUserConfig = { url: 'https://bellecour.iex.ec', accounts: privateKey ? [privateKey] : [], }, - // Add Fuji as a network + // Avalanche Networks avalancheFuji: { url: env.RPC_URL || 'https://api.avax-test.network/ext/bc/C/rpc', accounts: privateKey ? [privateKey] : [], blockGasLimit: 8_000_000, chainId: 43113, }, - // Add Arbitrum Sepolia as a network + // Arbitrum Networks arbitrumSepolia: { url: env.RPC_URL || 'https://sepolia-rollup.arbitrum.io/rpc', accounts: privateKey ? [privateKey] : [], blockGasLimit: 30_000_000, // Arbitrum has higher block gas limits chainId: 421614, }, + arbitrum: { + url: env.RPC_URL || 'https://arb1.arbitrum.io/rpc', + accounts: privateKey ? [privateKey] : [], + blockGasLimit: 30_000_000, // Arbitrum has higher block gas limits + chainId: 42161, + }, // poco-chain native config 'dev-native': { chainId: 65535,