Skip to content

Commit

Permalink
docs: README (#61)
Browse files Browse the repository at this point in the history
* docs: README

* fix
  • Loading branch information
ratankaliani authored Aug 16, 2024
1 parent d306aa8 commit 381260f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
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

0 comments on commit 381260f

Please sign in to comment.