Commit 36cb5368 authored by elenadimitrova's avatar elenadimitrova

Add optimistic kovan and mainnet to config

parent 758fa49e
...@@ -42,6 +42,20 @@ const config: HardhatUserConfig = { ...@@ -42,6 +42,20 @@ const config: HardhatUserConfig = {
ovm: true, ovm: true,
saveDeployments: false, saveDeployments: false,
}, },
'optimism-kovan': {
chainId: 69,
url: 'https://kovan.optimism.io',
accounts: [process.env.PRIVATE_KEY],
gasPrice: 15000000,
ovm: true,
},
'optimism-mainnet': {
chainId: 10,
url: 'https://mainnet.optimism.io',
accounts: [process.env.PRIVATE_KEY],
gasPrice: 15000000,
ovm: true,
}
}, },
mocha: { mocha: {
timeout: 50000, timeout: 50000,
...@@ -82,6 +96,9 @@ const config: HardhatUserConfig = { ...@@ -82,6 +96,9 @@ const config: HardhatUserConfig = {
gasPrice: 100, gasPrice: 100,
outputFile: process.env.CI ? 'gas-report.txt' : undefined, outputFile: process.env.CI ? 'gas-report.txt' : undefined,
}, },
etherscan: {
apiKey: process.env.ETHERSCAN_API_KEY,
},
} }
if ( if (
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment