Skip to content

Commit 2bed737

Browse files
committed
fix renamings
1 parent 3deb0eb commit 2bed737

File tree

11 files changed

+35
-35
lines changed

11 files changed

+35
-35
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ body:
1515
description: |
1616
A clear and concise description of what the bug is.
1717
18-
If the bug is in a crate you are using (i.e. you are not running the standard `strata` binaries) please mention that as well.
18+
If the bug is in a crate you are using (i.e. you are not running the standard `zkaleido` binaries) please mention that as well.
1919
validations:
2020
required: true
2121
- type: textarea
@@ -63,7 +63,7 @@ body:
6363
id: terms
6464
attributes:
6565
label: Code of Conduct
66-
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/alpenlabs/strata/blob/main/CONTRIBUTING.md#code-of-conduct)
66+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/alpenlabs/zkaleido/blob/main/CONTRIBUTING.md#code-of-conduct)
6767
options:
6868
- label: I agree to follow the Code of Conduct
6969
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: GitHub Discussions
4-
url: https://github.com/alpenlabs/strata/discussions
4+
url: https://github.com/alpenlabs/zkaleido/discussions
55
about: Please ask and answer questions here to keep the issue tracker clean.

Cargo.lock

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

adapters/sp1/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Strata SP1 Adapter
1+
# SP1 Adapter
22

33
Important: The SP1 prover operates exclusively in release mode, so please ensure that the prover adapter and tests are run in release mode only.

artifacts/risc0/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
edition = "2021"
3-
name = "strata-risc0-artifacts"
3+
name = "zkaleido-risc0-artifacts"
44
version = "0.1.0"
55

66
[dependencies]

artifacts/sp1/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "strata-sp1-artifacts"
2+
name = "zkaleido-sp1-artifacts"
33
version = "0.1.0"
44
edition = "2021"
55

runner/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ schnorr-sig-verify.workspace = true
1313

1414
# sp1
1515
zkaleido-sp1-adapter = { path = "../adapters/sp1", optional = true }
16-
strata-sp1-artifacts = { path = "../artifacts/sp1", optional = true }
16+
zkaleido-sp1-artifacts = { path = "../artifacts/sp1", optional = true }
1717

1818
# risc0
1919
zkaleido-risc0-adapter = { path = "../adapters/risc0", optional = true }
20-
strata-risc0-artifacts = { path = "../artifacts/risc0", optional = true }
20+
zkaleido-risc0-artifacts = { path = "../artifacts/risc0", optional = true }
2121

2222
anyhow = "1.0.83"
2323
clap = { version = "4.5.9", features = ["derive"] }
@@ -34,13 +34,13 @@ tokio = { version = "1.39.0", features = ["full"] }
3434
default = ["sp1-mock", "risc0-mock"]
3535
sp1 = [
3636
"zkaleido-sp1-adapter/prover",
37-
"strata-sp1-artifacts",
37+
"zkaleido-sp1-artifacts",
3838
"zkaleido-sp1-adapter/perf",
3939
]
40-
sp1-mock = ["sp1", "zkaleido-sp1-adapter/mock", "strata-sp1-artifacts/mock"]
40+
sp1-mock = ["sp1", "zkaleido-sp1-adapter/mock", "zkaleido-sp1-artifacts/mock"]
4141
risc0 = [
4242
"zkaleido-risc0-adapter/prover",
43-
"strata-risc0-artifacts",
43+
"zkaleido-risc0-artifacts",
4444
"zkaleido-risc0-adapter/perf",
4545
]
4646
risc0-mock = ["risc0", "zkaleido-risc0-adapter/mock"]

runner/src/github.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ fn set_github_headers(builder: RequestBuilder, token: &str) -> RequestBuilder {
6262
builder
6363
.header("Authorization", format!("Bearer {}", token))
6464
.header("X-GitHub-Api-Version", "2022-11-28")
65-
.header("User-Agent", "strata-perf-bot")
65+
.header("User-Agent", "zkaleido-perf-bot")
6666
}
6767

6868
pub fn format_github_message(results_text: &[String]) -> String {

runner/src/programs/fibonacci.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ fn fib_prover_perf_report(host: &impl ZkVmHost) -> ProofReport {
88

99
#[cfg(feature = "sp1")]
1010
pub fn sp1_fib_report() -> ProofReport {
11-
use strata_sp1_artifacts::FIBONACCI_ELF;
11+
use zkaleido_sp1_artifacts::FIBONACCI_ELF;
1212
use zkaleido_sp1_adapter::SP1Host;
1313
let host = SP1Host::init(FIBONACCI_ELF);
1414
fib_prover_perf_report(&host)
1515
}
1616

1717
#[cfg(feature = "risc0")]
1818
pub fn risc0_fib_report() -> ProofReport {
19-
use strata_risc0_artifacts::GUEST_RISC0_FIBONACCI_ELF;
19+
use zkaleido_risc0_artifacts::GUEST_RISC0_FIBONACCI_ELF;
2020
use zkaleido_risc0_adapter::Risc0Host;
2121
let host = Risc0Host::init(GUEST_RISC0_FIBONACCI_ELF);
2222
fib_prover_perf_report(&host)

runner/src/programs/schnorr.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ fn perf_report(host: &impl ZkVmHost) -> ProofReport {
88

99
#[cfg(feature = "sp1")]
1010
pub fn sp1_schnorr_sig_verify_report() -> ProofReport {
11-
use strata_sp1_artifacts::SCHNORR_SIG_VERIFY_ELF;
1211
use zkaleido_sp1_adapter::SP1Host;
12+
use zkaleido_sp1_artifacts::SCHNORR_SIG_VERIFY_ELF;
1313
let host = SP1Host::init(SCHNORR_SIG_VERIFY_ELF);
1414
perf_report(&host)
1515
}
1616

1717
#[cfg(feature = "risc0")]
1818
pub fn risc0_schnorr_sig_verify_report() -> ProofReport {
19-
use strata_risc0_artifacts::GUEST_RISC0_SCHNORR_SIG_VERIFY_ELF;
2019
use zkaleido_risc0_adapter::Risc0Host;
20+
use zkaleido_risc0_artifacts::GUEST_RISC0_SCHNORR_SIG_VERIFY_ELF;
2121
let host = Risc0Host::init(GUEST_RISC0_SCHNORR_SIG_VERIFY_ELF);
2222
perf_report(&host)
2323
}

0 commit comments

Comments
 (0)