Skip to content

Commit

Permalink
Configuration update for Arbitrum
Browse files Browse the repository at this point in the history
  • Loading branch information
arsen3d committed May 31, 2024
1 parent f957f9e commit 71ad575
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ hardhat/cache
hardhat/deployments/hardhat
hardhat/deployments/localhost
hardhat/deployments/geth
hardhat/deployments
hardhat/typechain-types
node_modules/*
lilypad
Expand Down
21 changes: 21 additions & 0 deletions hardhat/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,27 @@ const config: HardhatUserConfig = {
url: `https://sepolia.infura.io/v3/${INFURA_KEY}`,
accounts: [getAccount('admin').privateKey],
},
arbitrumOne: {
chainId: 42161,
url: 'https://arb1.arbitrum.io/rpc',
accounts: [getAccount('admin').privateKey],
},
arbitrumNova: {
chainId: 42170,
url: 'https://nova.arbitrum.io/rpc',
accounts: [getAccount('admin').privateKey],
},
arbitrumSepolia: {
url: 'https://sepolia-rollup.arbitrum.io/rpc',
chainId: 421614,
accounts: [getAccount('admin').privateKey],
},
local_l2: {
url: 'http://localhost:8547',
chainId: 412346,
accounts: [getAccount('admin').privateKey],
},

},
etherscan: {
apiKey: process.env.ETHERSCAN_API_KEY,
Expand Down

0 comments on commit 71ad575

Please sign in to comment.