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

chore: create scripts folder #86

Merged
merged 10 commits into from
Aug 30, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
62 changes: 31 additions & 31 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
members = [
"client-programs/*",
"crates/*",
"native-host",
"zkvm-host",
"scripts/*",
"op-succinct-proposer",
]
resolver = "2"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion zkvm-host/Cargo.toml → scripts/prove/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "zkvm-host"
name = "op-succinct-prove"
version = "0.1.0"
edition.workspace = true
license.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions zkvm-host/bin/agg.rs → scripts/prove/bin/agg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ use host_utils::{
};
use sp1_sdk::{utils, HashableKey, ProverClient, SP1Proof, SP1ProofWithPublicValues};

pub const AGG_ELF: &[u8] = include_bytes!("../../elf/aggregation-elf");
pub const MULTI_BLOCK_ELF: &[u8] = include_bytes!("../../elf/range-elf");
pub const AGG_ELF: &[u8] = include_bytes!("../../../elf/aggregation-elf");
pub const MULTI_BLOCK_ELF: &[u8] = include_bytes!("../../../elf/range-elf");

#[derive(Parser, Debug)]
#[command(author, version, about, long_about = None)]
Expand Down
2 changes: 1 addition & 1 deletion zkvm-host/bin/multi.rs → scripts/prove/bin/multi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use host_utils::{
use kona_host::start_server_and_native_client;
use sp1_sdk::{utils, ProverClient};

pub const MULTI_BLOCK_ELF: &[u8] = include_bytes!("../../elf/range-elf");
pub const MULTI_BLOCK_ELF: &[u8] = include_bytes!("../../../elf/range-elf");

#[derive(Parser, Debug)]
#[command(author, version, about, long_about = None)]
Expand Down
2 changes: 1 addition & 1 deletion zkvm-host/bin/single.rs → scripts/prove/bin/single.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use kona_host::start_server_and_native_client;
use num_format::{Locale, ToFormattedString};
use sp1_sdk::{utils, ProverClient};

pub const SINGLE_BLOCK_ELF: &[u8] = include_bytes!("../../elf/fault-proof-elf");
pub const SINGLE_BLOCK_ELF: &[u8] = include_bytes!("../../../elf/fault-proof-elf");

#[derive(Parser, Debug)]
#[command(author, version, about, long_about = None)]
Expand Down
2 changes: 1 addition & 1 deletion native-host/Cargo.toml → scripts/witnessgen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "native-host"
name = "op-succinct-witnessgen"
version = "0.1.0"
license.workspace = true
edition.workspace = true
Expand Down
File renamed without changes.
Loading