Skip to content

Commit

Permalink
Merge pull request #234 from RafaDSan/develop
Browse files Browse the repository at this point in the history
feat: Updated and added new networks to the `hardhat.config.ts`
  • Loading branch information
RafaDSan authored Jun 21, 2024
2 parents 85e39a8 + 50d1914 commit 5c72530
Showing 1 changed file with 23 additions and 3 deletions.
26 changes: 23 additions & 3 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dotenv.config();
// Using a hardcoded solution to avoid GitHub actions issues
const DEPLOYER_PRIVATE_KEY =
process.env.DEPLOYER_PRIVATE_KEY ||
"0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80";
"";

const config: HardhatUserConfig = {
solidity: {
Expand All @@ -34,8 +34,28 @@ const config: HardhatUserConfig = {
url: `${process.env.SEPOLIA_RPC_URL}`,
accounts: [`${DEPLOYER_PRIVATE_KEY}`],
},
mumbai: {
url: `${process.env.MUMBAI_RPC_URL}`,
amoy: {
url: `${process.env.AMOY_RPC_URL}`,
accounts: [`${DEPLOYER_PRIVATE_KEY}`],
},
opsepolia: {
url: `${process.env.OPSEPOLIA_RPC_URL}`,
accounts: [`${DEPLOYER_PRIVATE_KEY}`],
},
fuji: {
url: `${process.env.FUJI_RPC_URL}`,
accounts: [`${DEPLOYER_PRIVATE_KEY}`],
},
bnb_testnet: {
url: `${process.env.BNB_TESTNET_RPC_URL}`,
accounts: [`${DEPLOYER_PRIVATE_KEY}`],
},
arbitrum_sepolia: {
url: `${process.env.ARBITRUM_SEPOLIA_RPC_URL}`,
accounts: [`${DEPLOYER_PRIVATE_KEY}`],
},
base_sepolia: {
url: `${process.env.BASE_SEPOLIA_RPC_URL}`,
accounts: [`${DEPLOYER_PRIVATE_KEY}`],
},
/**
Expand Down

0 comments on commit 5c72530

Please sign in to comment.