Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: README #61

Merged
merged 2 commits into from
Aug 16, 2024
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ Standalone repo to use Kona & SP1 to verify OP Stack blocks.
first generate proofs for `range` programs for each batch, then use `aggregation` to
generate an aggregate proof.

## Run `op-succinct`
## Running `op-succinct`

To generate validity proofs for an OP Stack chain, see [OP_PROPOSER.md](./OP_PROPOSER.md).
For instructions on generating validity proofs for an OP Stack chain, refer to the [`op-succinct` Guide](./OP_PROPOSER.md).

## Cycle Counts
## Estimating Cycle Counts

To see how to get the cycle counts for a given block range, see [CYCLE_COUNT.md](./CYCLE_COUNT.md).
To learn how to estimate cycle counts for a given block range, check out our [Cycle Count Guide](./CYCLE_COUNT.md).
6 changes: 3 additions & 3 deletions prover-server/bin/fetch_and_save_proof.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ struct Args {
#[arg(short, long)]
chain_id: u64,

/// Agg proof
/// Aggregate proof.
#[arg(short, long)]
agg_proof: bool,

/// Start L2 block number
/// Start L2 block number.
#[arg(short, long, required = false)]
start: Option<u64>,

/// End L2 block number
/// End L2 block number.
#[arg(short, long, required = false)]
end: Option<u64>,
}
Expand Down
Loading