000-L2OutputOracle.deploy.ts 932 Bytes
/* Imports: Internal */
import { DeployFunction } from 'hardhat-deploy/dist/types'
import 'hardhat-deploy'

const deployFn: DeployFunction = async (hre) => {
  const { deploy } = hre.deployments
  const { deployer } = await hre.getNamedAccounts()

  if (
    !process.env.L2OO_STARTING_BLOCK_TIMESTAMP ||
    isNaN(Number(process.env.L2OO_STARTING_BLOCK_TIMESTAMP))
  ) {
    throw new Error(
      'Cannot deploy L2OutputOracle without specifying a valid L2OO_STARTING_BLOCK_TIMESTAMP.'
    )
  }

  await deploy('L2OutputOracle', {
    from: deployer,
    args: [
      6, // submission interval
      2, // l2 block time
      `0x${'00'.repeat(32)}`, // genesis output
      0, // historical blocks
      process.env.L2OO_STARTING_BLOCK_TIMESTAMP,
      '0x70997970C51812dc3A010C7d01b50e0d17dc79C8', // sequencer
    ],
    log: true,
    waitConfirmations: 1,
  })
}

deployFn.tags = ['L2OutputOracle']

export default deployFn