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
db5284db
Unverified
Commit
db5284db
authored
Jan 12, 2023
by
Mark Tyneway
Committed by
GitHub
Jan 12, 2023
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4616 from ethereum-optimism/feat/wait-for-final-deposit-hh
feat: wait for final deposit hh task
parents
45d30bae
0ec51da9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
102 additions
and
0 deletions
+102
-0
.chainId
packages/contracts-bedrock/deployments/mainnet/.chainId
+1
-0
hardhat.config.ts
packages/contracts-bedrock/hardhat.config.ts
+3
-0
index.ts
packages/contracts-bedrock/tasks/index.ts
+1
-0
wait-for-final-deposit.ts
packages/contracts-bedrock/tasks/wait-for-final-deposit.ts
+97
-0
No files found.
packages/contracts-bedrock/deployments/mainnet/.chainId
0 → 100644
View file @
db5284db
1
packages/contracts-bedrock/hardhat.config.ts
View file @
db5284db
...
...
@@ -22,6 +22,9 @@ const config: HardhatUserConfig = {
hardhat
:
{
live
:
false
,
},
mainnet
:
{
url
:
process
.
env
.
RPC_URL
||
'
http://localhost:8545
'
,
},
devnetL1
:
{
live
:
false
,
url
:
'
http://localhost:8545
'
,
...
...
packages/contracts-bedrock/tasks/index.ts
View file @
db5284db
...
...
@@ -8,3 +8,4 @@ import './solidity'
import
'
./accounts
'
import
'
./check-l2
'
import
'
./update-dynamic-oracle-config
'
import
'
./wait-for-final-deposit
'
packages/contracts-bedrock/tasks/wait-for-final-deposit.ts
0 → 100644
View file @
db5284db
import
{
task
,
types
}
from
'
hardhat/config
'
import
'
@nomiclabs/hardhat-ethers
'
import
'
hardhat-deploy
'
import
{
HardhatRuntimeEnvironment
}
from
'
hardhat/types
'
import
{
BigNumber
}
from
'
ethers
'
import
{
sleep
,
toRpcHexString
}
from
'
@eth-optimism/core-utils
'
task
(
'
wait-for-final-deposit
'
,
'
Waits for the final deposit to be ingested
'
)
.
addParam
(
'
l1RpcUrl
'
,
'
L1 RPC URL remote node
'
,
'
http://127.0.0.1:8545
'
,
types
.
string
)
.
addParam
(
'
l2RpcUrl
'
,
'
L2 RPC URL remote node
'
,
'
http://127.0.0.1:9545
'
,
types
.
string
)
.
setAction
(
async
(
args
,
hre
:
HardhatRuntimeEnvironment
)
=>
{
const
l1Provider
=
new
hre
.
ethers
.
providers
.
StaticJsonRpcProvider
(
args
.
l1RpcUrl
)
const
l2Provider
=
new
hre
.
ethers
.
providers
.
StaticJsonRpcProvider
(
args
.
l2RpcUrl
)
// Handle legacy deployments
let
Deployment__AddressManager
=
await
hre
.
deployments
.
getOrNull
(
'
Lib_AddressManager
'
)
if
(
!
Deployment__AddressManager
)
{
Deployment__AddressManager
=
await
hre
.
deployments
.
get
(
'
AddressManager
'
)
}
const
AddressManager
=
new
hre
.
ethers
.
Contract
(
Deployment__AddressManager
.
address
,
Deployment__AddressManager
.
abi
,
l1Provider
)
const
Deployment__CanonicalTransactionChain
=
await
hre
.
deployments
.
get
(
'
CanonicalTransactionChain
'
)
const
CanonicalTransactionChain
=
new
hre
.
ethers
.
Contract
(
Deployment__CanonicalTransactionChain
.
address
,
Deployment__CanonicalTransactionChain
.
abi
,
l1Provider
)
// Wait for DTL_SHUTOFF_BLOCK block to be set in the AddressManager
let
dtlShutoffBlock
=
BigNumber
.
from
(
0
)
while
(
true
)
{
console
.
log
(
'
Waiting for DTL shutoff block to be set...
'
)
const
val
=
await
AddressManager
.
getAddress
(
'
DTL_SHUTOFF_BLOCK
'
)
dtlShutoffBlock
=
BigNumber
.
from
(
val
)
if
(
!
dtlShutoffBlock
.
eq
(
0
))
{
break
}
await
sleep
(
3000
)
}
console
.
log
(
`DTL shutoff block
${
dtlShutoffBlock
.
toString
()}
`
)
// Now query the number of queue elements in the CTC
const
queueLength
=
await
CanonicalTransactionChain
.
getQueueLength
()
console
.
log
(
`Total number of deposits:
${
queueLength
}
`
)
console
.
log
(
'
Searching backwards for final deposit
'
)
let
height
=
await
l2Provider
.
getBlockNumber
()
while
(
true
)
{
console
.
log
(
`Trying block
${
height
}
`
)
const
hex
=
toRpcHexString
(
height
)
const
b
=
await
l2Provider
.
send
(
'
eth_getBlockByNumber
'
,
[
hex
,
true
])
const
tx
=
b
.
transactions
[
0
]
if
(
tx
===
undefined
)
{
throw
new
Error
(
`unable to fetch transaction`
)
}
if
(
tx
.
queueOrigin
===
'
l1
'
)
{
const
queueIndex
=
BigNumber
.
from
(
tx
.
queueIndex
).
toNumber
()
if
(
queueIndex
===
queueLength
)
{
break
}
if
(
queueIndex
<
queueLength
)
{
console
.
log
()
throw
new
Error
(
`Missed the final deposit. queueIndex
${
queueIndex
}
, queueLength
${
queueLength
}
`
)
}
}
height
--
}
console
.
log
(
'
Final deposit has been ingested by l2geth
'
)
})
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