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: fix link to range & aggregation program #340

Merged
merged 1 commit into from
Jan 21, 2025
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: 0 additions & 8 deletions .github/workflows/book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,6 @@ jobs:
curl -sSL https://github.com/sgoudham/mdbook-template/releases/latest/download/mdbook-template-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=./mdbook-template
echo $(pwd)/mdbook-template >> $GITHUB_PATH

- name: Install mdbook-linkcheck
run: |
mkdir mdbook-linkcheck
curl -sSL -o mdbook-linkcheck.zip https://github.com/Michael-F-Bryan/mdbook-linkcheck/releases/latest/download/mdbook-linkcheck.x86_64-unknown-linux-gnu.zip
unzip mdbook-linkcheck.zip -d ./mdbook-linkcheck
chmod +x $(pwd)/mdbook-linkcheck/mdbook-linkcheck
echo $(pwd)/mdbook-linkcheck >> $GITHUB_PATH

- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
Expand Down
10 changes: 5 additions & 5 deletions book.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
[book]
authors = ["Uma Roy"]
authors = ["Uma Roy", "ratankaliani"]
language = "en"
multilingual = false
src = "book"
title = "OP Succinct"
title = "OP Succinct book"
description = "A book on all things SP1"

[build]
build-dir = "target/book"

[output.html]
git-repository-url = "https://github.com/succinctlabs/op-succinct"

[preprocessor.template]
before = ["links"]

[preprocessor.index]

[preprocessor.links]

[output.linkcheck]
traverse-parent-directories = true
4 changes: 2 additions & 2 deletions book/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ OP Succinct enables OP Stack blocks to be proven with SP1 through a lightweight

### Core Components

1. **[Range Program](../programs/range/src/main.rs)**
1. **[Range Program](https://github.com/succinctlabs/op-succinct/tree/main/programs/range/src/main.rs)**
- Derives and executes batches of blocks
- Generates proofs of correct execution

2. **[Aggregation Program](../programs/aggregation/src/main.rs)**
2. **[Aggregation Program](https://github.com/succinctlabs/op-succinct/tree/main/programs/aggregation/src/main.rs)**
- Aggregates multiple range program proofs
- Reduces on-chain verification costs

Expand Down
10 changes: 0 additions & 10 deletions book/book.toml

This file was deleted.

Loading