Skip to content

Commit

Permalink
DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
ImJeremyHe committed Jul 23, 2024
1 parent 8789086 commit e4b8345
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions scripts/deploymentUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,15 +107,6 @@ export async function deployAllContracts(
const reader4844 = isOnArb
? ethers.constants.AddressZero
: (await Toolkit4844.deployReader4844(signer)).address
console.log("before deploy sequencer inbox")

const ethSequencerInbox = await deployContract(
'SequencerInbox',
signer,
[maxDataSize, reader4844, false],
verify
)

const ethInbox = await deployContract('Inbox', signer, [maxDataSize], verify)
const ethRollupEventInbox = await deployContract(
'RollupEventInbox',
Expand Down Expand Up @@ -146,6 +137,16 @@ export async function deployAllContracts(
)
const erc20Outbox = await deployContract('ERC20Outbox', signer, [], verify)

console.log("before deploy sequencer inbox")

const ethSequencerInbox = await deployContract(
'SequencerInbox',
signer,
[maxDataSize, reader4844, false],
verify
)


const bridgeCreator = await deployContract(
'BridgeCreator',
signer,
Expand Down

0 comments on commit e4b8345

Please sign in to comment.