Skip to content

Commit

Permalink
Add sepolia etherium network
Browse files Browse the repository at this point in the history
  • Loading branch information
--global committed Apr 28, 2024
1 parent 8d2a59f commit 8a7c3fc
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
16 changes: 11 additions & 5 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ const {
MUMBAI_URL,
POLYGONSCAN_API_KEY,
GOERLI_URL,
SEPOLIA_URL,
SEPOLIA_ARBITRUM_URL,
ETHERSCAN_API_KEY,
ARBITRUM_API_KEY,
ARBITRUM_URL
ARBITRUM_URL,
ETHEREUM_SEPOLIA_URL
} = process.env;

export const config = {
Expand Down Expand Up @@ -53,8 +54,8 @@ export const config = {
accounts: PRIVATE_KEY ? [`0x${PRIVATE_KEY}`] : [],
gasPrice: 22000000000,
},
sepolia: {
url: SEPOLIA_URL || "",
sepolia_arbitrum: {
url: SEPOLIA_ARBITRUM_URL || "",
accounts: PRIVATE_KEY ? [`0x${PRIVATE_KEY}`] : [],
gasPrice: 22000000000,
},
Expand All @@ -63,6 +64,11 @@ export const config = {
accounts: PRIVATE_KEY3 ? [`0x${PRIVATE_KEY3}`] : [],
gasPrice: 300000000,
},
sepolia: {
url: ETHEREUM_SEPOLIA_URL || "",
accounts: PRIVATE_KEY ? [`0x${PRIVATE_KEY}`] : [],
gasPrice: 10000000000,
},
},
solidity: {
compilers: [
Expand All @@ -80,7 +86,7 @@ export const config = {
etherscan: {
// Your API key for Etherscan
// Obtain one at https://etherscan.io/
apiKey: ARBITRUM_API_KEY,
apiKey: ETHERSCAN_API_KEY,
customChains: [
{
network: "arbitrum sepolia",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = [
{
implementation: "0xebaF408b5cE8bf417e627d66b948acDa3Ca9de15",
receiptFactory: "0x7e6Ee6a291847Aa28788467092B318A7D2229F7c",
},
];

0 comments on commit 8a7c3fc

Please sign in to comment.