Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion book/getting-started/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

The last step is to update your OP Stack configuration to use the new `OPSuccinctL2OutputOracle` contract managed by the `op-succinct-proposer` service.

> ⚠️ **Warning**: All proposed, non-finalized output roots on the `L2OutputOracleProxy` will be automatically finalized after the upgrade to `op-succinct`, as the `finalizationPeriod` is set to 0 by default. For security, we recommend ensuring that all old proposer output roots are correct before upgrading.

## Self-Managed OP Stack Chains

If you are using a self-managed OP Stack chain, you will need to use your `ADMIN` key to update the existing `L2OutputOracle` implementation. Recall that the `L2OutputOracle` is a proxy contract that is upgradeable using the `ADMIN` key.
Expand All @@ -21,4 +23,4 @@ forge script script/OPSuccinctUpgrader.s.sol:OPSuccinctUpgrader \

## RaaS Providers

More information for how to configure an OP Stack RaaS provider deployment will be available soon.
More information for how to configure an OP Stack RaaS provider deployment will be available soon.
4 changes: 3 additions & 1 deletion rollup-configs/11155420.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
"scalar": "0xa6fe0",
"gasLimit": 30000000,
"baseFeeScalar": null,
"blobBaseFeeScalar": null
"blobBaseFeeScalar": null,
"eip1559Denominator": null,
"eip1559Elasticity": null
}
},
"block_time": 2,
Expand Down
5 changes: 5 additions & 0 deletions utils/host/src/stats.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@ impl fmt::Display for ExecutionStats {
)?;
write_stat(f, "Batch Start", self.batch_start)?;
write_stat(f, "Batch End", self.batch_end)?;
write_stat(
f,
"Witness Generation (seconds)",
self.witness_generation_time_sec,
)?;
write_stat(
f,
"Execution Duration (seconds)",
Expand Down