goerli.ts 778 Bytes
Newer Older
1 2 3
import { DeployConfig } from '../src/deploy-config'

const config: DeployConfig = {
4
  numDeployConfirmations: 1,
5 6 7 8 9 10 11
  l1BlockTimeSeconds: 15,
  l2BlockGasLimit: 15_000_000,
  l2ChainId: 420,
  ctcL2GasDiscountDivisor: 32,
  ctcEnqueueGasCost: 60_000,
  sccFaultProofWindowSeconds: 604800,
  sccSequencerPublishWindowSeconds: 12592000,
12 13
  ovmSequencerAddress: '0x7431310e026B69BFC676C0013E12A1A11411EEc9',
  ovmProposerAddress: '0x02b1786A85Ec3f71fBbBa46507780dB7cF9014f6',
14
  ovmBlockSignerAddress: '0x27770a9694e4B4b1E130Ab91Bc327C36855f612E',
15 16 17
  ovmFeeWalletAddress: '0xfd1D2e729aE8eEe2E146c033bf4400fE75284301',
  ovmAddressManagerOwner: '0xf80267194936da1E98dB10bcE06F3147D580a62e',
  ovmGasPriceOracleOwner: '0xa693B8f8207FF043F6bbC2E2120bbE4C2251Efe9',
18 19 20
}

export default config