Skip to content

Commit

Permalink
[R4R] - {0.4.2}: fix qa deployer config (#1169)
Browse files Browse the repository at this point in the history
[fix]: fix deployer config
  • Loading branch information
Sha3nS authored Jun 29, 2023
1 parent c10ba71 commit 822a474
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 20 deletions.
13 changes: 6 additions & 7 deletions packages/contracts/deploy-config/goerli-qa.ts
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
const config = {
numDeployConfirmations: 1,
l1BlockTimeSeconds: 15,
l2BlockGasLimit: 15_000_000,
gasPrice: 150_000_000_000,
l1BlockTimeSeconds: 12,
l2BlockGasLimit: 30_000_000,
l2ChainId: 1705003,
updateGaslimitBlock: 90000,
eigenDaBlock: 2512521,
ctcL2GasDiscountDivisor: 32,
ctcEnqueueGasCost: 60_000,
sccFaultProofWindowSeconds: 0,
sccFaultProofWindowSeconds: 10,
sccSequencerPublishWindowSeconds: 12592000,
blockStaleMeasure: 100,
daFraudProofPeriod: 120,
blockStaleMeasure: 500,
daFraudProofPeriod: 3600,
l2SubmittedBlockNumber: 1,
bvmSequencerAddress: process.env.BVM_SEQUENCER_ADDRESS || '0x2B1D033ddCc36cd6f4DE10A9a9C2Bc329a443bEB',
bvmProposerAddress: process.env.BVM_PROPOSER_ADDRESS || '0x4e1614113AF6a1a41cA85d1a5Fe41De105BD65fA',
Expand Down
12 changes: 6 additions & 6 deletions packages/contracts/deploy-config/hardhat.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
const config = {
numDeployConfirmations: 4,
numDeployConfirmations: 1,
gasPrice: 150_000_000_000,
l1BlockTimeSeconds: 15,
l2BlockGasLimit: 15_000_000,
l1BlockTimeSeconds: 12,
l2BlockGasLimit: 30_000_000,
l2ChainId: 17,
ctcL2GasDiscountDivisor: 32,
ctcEnqueueGasCost: 60_000,
sccFaultProofWindowSeconds: 0,
sccFaultProofWindowSeconds: 10,
sccSequencerPublishWindowSeconds: 12592000,
blockStaleMeasure: 100,
daFraudProofPeriod: 120,
blockStaleMeasure: 500,
daFraudProofPeriod: 3600,
l2SubmittedBlockNumber: 1,
bvmSequencerAddress: process.env.BVM_SEQUENCER_ADDRESS || '0x70997970c51812dc3a010c7d01b50e0d17dc79c8',
bvmProposerAddress: process.env.BVM_PROPOSER_ADDRESS || '0x3c44cdddb6a900fa2b585dd299e03d12fa4293bc',
Expand Down
14 changes: 7 additions & 7 deletions packages/contracts/deploy-config/local.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
const config = {
l1BlockTimeSeconds: 15,
l2BlockGasLimit: 15_000_000,
numDeployConfirmations: 1,
gasPrice: 150_000_000_000,
l1BlockTimeSeconds: 12,
l2BlockGasLimit: 30_000_000,
l2ChainId: 17,
updateGaslimitBlock: 10,
eigenDaBlock: 100,
ctcL2GasDiscountDivisor: 32,
ctcEnqueueGasCost: 60_000,
sccFaultProofWindowSeconds: 60,
sccFaultProofWindowSeconds: 10,
sccSequencerPublishWindowSeconds: 12592000,
blockStaleMeasure: 100,
daFraudProofPeriod: 120,
blockStaleMeasure: 500,
daFraudProofPeriod: 3600,
l2SubmittedBlockNumber: 1,
bvmSequencerAddress: process.env.BVM_SEQUENCER_ADDRESS || '0x70997970c51812dc3a010c7d01b50e0d17dc79c8',
bvmProposerAddress: process.env.BVM_PROPOSER_ADDRESS || '0x4f958F2C2303BDca22b739339cD633F8543BB07D',
Expand Down

0 comments on commit 822a474

Please sign in to comment.