Skip to content

Commit e3a656e

Browse files
authored
Merge pull request #120 from OffchainLabs/fix-stub-creator
Fix SequencerInboxStubCreator
2 parents d5d576f + cd5093d commit e3a656e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

deploy/SequencerInboxStubCreator.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1+
import { Toolkit4844 } from '../test/contract/toolkit4844'
2+
13
module.exports = async hre => {
2-
const { deployments, getNamedAccounts, ethers } = hre
4+
const { deployments, getSigners, getNamedAccounts, ethers } = hre
35
const { deploy } = deployments
46
const { deployer } = await getNamedAccounts()
57

68
const bridge = await ethers.getContract('BridgeStub')
7-
const blobBasefeeReader = await ethers.getContract('BlobBasefeeReader')
8-
const dataHashReader = await ethers.getContract('DataHashReader')
9+
const reader4844 = await Toolkit4844.deployReader4844(await ethers.getSigner(deployer))
910
const maxTime = {
1011
delayBlocks: 10000,
1112
futureBlocks: 10000,
@@ -19,8 +20,7 @@ module.exports = async hre => {
1920
deployer,
2021
maxTime,
2122
117964,
22-
dataHashReader,
23-
blobBasefeeReader,
23+
reader4844.address,
2424
],
2525
})
2626
}

0 commit comments

Comments
 (0)