Skip to content

Commit

Permalink
git a
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaDSan committed Jun 14, 2024
1 parent 0f53f6e commit d9bdfa8
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 d9bdfa8

Please sign in to comment.