Commit 847a6338 authored by Mark Tyneway's avatar Mark Tyneway

ops: bump hardhat version in docker hardhat-node

parent 3525635a
---
'@eth-optimism/hardhat-node': patch
---
Bump to hardhat@2.9.1
const isForkModeEnabled = !!process.env.FORK_URL const isForkModeEnabled = !!process.env.FORK_URL
const forkUrl = process.env.FORK_URL const forkUrl = process.env.FORK_URL
const forkStartingBlock = parseInt(process.env.FORK_STARTING_BLOCK) || undefined const forkStartingBlock =
const gasPrice = parseInt(process.env.GAS_PRICE) || 0 parseInt(process.env.FORK_STARTING_BLOCK, 10) || undefined
const gasPrice = parseInt(process.env.GAS_PRICE, 10) || 0
const config = { const config = {
networks: { networks: {
hardhat: { hardhat: {
gasPrice, gasPrice,
initialBaseFeePerGas: 0 initialBaseFeePerGas: 0,
}, },
}, },
analytics: { enabled: false }, analytics: { enabled: false },
......
...@@ -6,6 +6,6 @@ ...@@ -6,6 +6,6 @@
}, },
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"hardhat": "^2.7.0" "hardhat": "^2.9.2"
} }
} }
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