Skip to content

Commit

Permalink
Add arbitrum mainnet
Browse files Browse the repository at this point in the history
  • Loading branch information
--global committed Feb 22, 2024
1 parent 4f41f62 commit 8d2a59f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
8 changes: 7 additions & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ const {
GOERLI_URL,
SEPOLIA_URL,
ETHERSCAN_API_KEY,
ARBITRUM_API_KEY
ARBITRUM_API_KEY,
ARBITRUM_URL
} = process.env;

export const config = {
Expand Down Expand Up @@ -57,6 +58,11 @@ export const config = {
accounts: PRIVATE_KEY ? [`0x${PRIVATE_KEY}`] : [],
gasPrice: 22000000000,
},
arbitrum: {
url: ARBITRUM_URL || "",
accounts: PRIVATE_KEY3 ? [`0x${PRIVATE_KEY3}`] : [],
gasPrice: 300000000,
},
},
solidity: {
compilers: [
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = [
{
implementation: "0x6DB9F75C0B79E0351B09311c4856F556b09F67a5",
receiptFactory: "0x5e08F361001480717cf35c6230C942e9d47fbE86",
},
];

0 comments on commit 8d2a59f

Please sign in to comment.