Skip to content

Commit

Permalink
Add orbit template to hardhat config
Browse files Browse the repository at this point in the history
  • Loading branch information
gvladika committed Apr 16, 2024
1 parent 4159c1b commit 84be29a
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,9 @@ const config = {
},
timeout: 100000,
},
orbit: {
url: 'http://127.0.0.1:8547',
},
},
typechain: {
outDir: 'build/types',
Expand Down Expand Up @@ -179,6 +182,7 @@ const config = {
nova: process.env['NOVA_ARBISCAN_API_KEY'],
arbGoerliRollup: process.env['ARBISCAN_API_KEY'],
arbSepoliaRollup: 'x',
orbit: 'x',
},
customChains: [
{
Expand All @@ -201,10 +205,19 @@ const config = {
network: 'arbSepoliaRollup',
chainId: 421614,
urls: {
apiURL: 'https://sepolia-explorer.arbitrum.io/api?module=contract&action=verify',
apiURL:
'https://sepolia-explorer.arbitrum.io/api?module=contract&action=verify',
browserURL: 'https://sepolia-explorer.arbitrum.io/',
},
}
},
{
network: 'orbit',
chainId: 412346,
urls: {
apiURL: 'http://127.0.0.1:4000/api?module=contract&action=verify',
browserURL: 'http://127.0.0.1:4000/',
},
},
],
},
}
Expand Down

0 comments on commit 84be29a

Please sign in to comment.