Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
44c5ce37
Unverified
Commit
44c5ce37
authored
Mar 25, 2022
by
smartcontracts
Committed by
GitHub
Mar 25, 2022
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2260 from ethereum-optimism/deps/bump-hardhat
deps: bump hardhat
parents
3e995d8e
7dc5bff4
Changes
11
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
233 additions
and
155 deletions
+233
-155
twelve-shrimps-add.md
.changeset/twelve-shrimps-add.md
+9
-0
weak-walls-cross.md
.changeset/weak-walls-cross.md
+5
-0
package.json
integration-tests/package.json
+1
-1
hardhat.config.js
ops/docker/hardhat/hardhat.config.js
+4
-3
package.json
ops/docker/hardhat/package.json
+1
-1
package.json
packages/contracts/package.json
+1
-1
OVM_GasPriceOracle.spec.ts
...s/test/contracts/L2/predeploys/OVM_GasPriceOracle.spec.ts
+3
-3
package.json
packages/data-transport-layer/package.json
+1
-1
package.json
packages/message-relayer/package.json
+1
-1
package.json
packages/sdk/package.json
+1
-1
yarn.lock
yarn.lock
+206
-143
No files found.
.changeset/twelve-shrimps-add.md
0 → 100644
View file @
44c5ce37
---
'
@eth-optimism/contracts'
:
patch
'
@eth-optimism/data-transport-layer'
:
patch
'
@eth-optimism/integration-tests'
:
patch
'
@eth-optimism/message-relayer'
:
patch
'
@eth-optimism/sdk'
:
patch
---
Bump to hardhat@2.9.1
.changeset/weak-walls-cross.md
0 → 100644
View file @
44c5ce37
---
'
@eth-optimism/hardhat-node'
:
patch
---
Bump to hardhat@2.9.1
integration-tests/package.json
View file @
44c5ce37
...
...
@@ -63,7 +63,7 @@
"eslint-plugin-unicorn"
:
"^32.0.1"
,
"ethereum-waffle"
:
"^3.3.0"
,
"ethers"
:
"^5.5.4"
,
"hardhat"
:
"^2.
3.0
"
,
"hardhat"
:
"^2.
9.2
"
,
"hardhat-gas-reporter"
:
"^1.0.4"
,
"lint-staged"
:
"11.0.0"
,
"mocha"
:
"^8.4.0"
,
...
...
ops/docker/hardhat/hardhat.config.js
View file @
44c5ce37
const
isForkModeEnabled
=
!!
process
.
env
.
FORK_URL
const
forkUrl
=
process
.
env
.
FORK_URL
const
forkStartingBlock
=
parseInt
(
process
.
env
.
FORK_STARTING_BLOCK
)
||
undefined
const
gasPrice
=
parseInt
(
process
.
env
.
GAS_PRICE
)
||
0
const
forkStartingBlock
=
parseInt
(
process
.
env
.
FORK_STARTING_BLOCK
,
10
)
||
undefined
const
gasPrice
=
parseInt
(
process
.
env
.
GAS_PRICE
,
10
)
||
0
const
config
=
{
networks
:
{
hardhat
:
{
gasPrice
,
initialBaseFeePerGas
:
0
initialBaseFeePerGas
:
0
,
},
},
analytics
:
{
enabled
:
false
},
...
...
ops/docker/hardhat/package.json
View file @
44c5ce37
...
...
@@ -6,6 +6,6 @@
},
"license"
:
"MIT"
,
"dependencies"
:
{
"hardhat"
:
"^2.
7.0
"
"hardhat"
:
"^2.
9.2
"
}
}
packages/contracts/package.json
View file @
44c5ce37
...
...
@@ -100,7 +100,7 @@
"ethereum-waffle"
:
"^3.3.0"
,
"ethers"
:
"^5.5.4"
,
"glob"
:
"^7.1.6"
,
"hardhat"
:
"^2.
3.0
"
,
"hardhat"
:
"^2.
9.2
"
,
"hardhat-deploy"
:
"^0.9.3"
,
"hardhat-gas-reporter"
:
"^1.0.4"
,
"hardhat-output-validator"
:
"^0.1.18"
,
...
...
packages/contracts/test/contracts/L2/predeploys/OVM_GasPriceOracle.spec.ts
View file @
44c5ce37
...
...
@@ -26,9 +26,9 @@ describe('OVM_GasPriceOracle', () => {
await
signer1
.
getAddress
()
)
OVM_GasPriceOracle
.
setOverhead
(
2750
)
OVM_GasPriceOracle
.
setScalar
(
1500000
)
OVM_GasPriceOracle
.
setDecimals
(
6
)
await
OVM_GasPriceOracle
.
setOverhead
(
2750
)
await
OVM_GasPriceOracle
.
setScalar
(
1500000
)
await
OVM_GasPriceOracle
.
setDecimals
(
6
)
})
describe
(
'
owner
'
,
()
=>
{
...
...
packages/data-transport-layer/package.json
View file @
44c5ce37
...
...
@@ -75,7 +75,7 @@
"eslint-plugin-prettier"
:
"^3.4.0"
,
"eslint-plugin-react"
:
"^7.24.0"
,
"eslint-plugin-unicorn"
:
"^32.0.1"
,
"hardhat"
:
"^2.
3.0
"
,
"hardhat"
:
"^2.
9.2
"
,
"lint-staged"
:
"11.0.0"
,
"mocha"
:
"^8.4.0"
,
"pino-pretty"
:
"^4.7.1"
,
...
...
packages/message-relayer/package.json
View file @
44c5ce37
...
...
@@ -52,7 +52,7 @@
"eslint-plugin-react"
:
"^7.24.0"
,
"eslint-plugin-unicorn"
:
"^32.0.1"
,
"ethereum-waffle"
:
"^3.3.0"
,
"hardhat"
:
"^2.
3.0
"
,
"hardhat"
:
"^2.
9.2
"
,
"lint-staged"
:
"11.0.0"
,
"prettier"
:
"^2.3.1"
,
"ts-node"
:
"^10.0.0"
,
...
...
packages/sdk/package.json
View file @
44c5ce37
...
...
@@ -55,7 +55,7 @@
"eslint-plugin-unicorn"
:
"^32.0.1"
,
"ethereum-waffle"
:
"^3.4.0"
,
"ethers"
:
"^5.5.4"
,
"hardhat"
:
"^2.
3.0
"
,
"hardhat"
:
"^2.
9.2
"
,
"lint-staged"
:
"11.0.0"
,
"mocha"
:
"^8.4.0"
,
"nyc"
:
"^15.1.0"
,
...
...
yarn.lock
View file @
44c5ce37
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment