Skip to content
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
2 changes: 1 addition & 1 deletion docs/src/dev/prover.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ Each stage may take a different amount of time.
- [Register](https://www.zkm.io/apply) your address to gain access.
- **SDK dependency**: add `zkm_sdk` from the Ziren SDK to your `Cargo.toml`:
```toml
zkm-sdk = { git = "https://github.com/ProjectZKM/Ziren", branch = "main" }
zkm-sdk = { git = "https://github.com/ProjectZKM/Ziren" }
```
### Environment Variable Setup
Before running your application, export the following environment variables to enable the network prover:
Expand Down
2 changes: 1 addition & 1 deletion examples/regex/host/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ fn main() {
// Setup a tracer for logging.
utils::setup_logger();

// Create a new stdin with d the input for the program.
// Create a new stdin with the input for the program.
let mut stdin = ZKMStdin::new();

let pattern = "a+".to_string();
Expand Down
2 changes: 1 addition & 1 deletion examples/ssz-withdrawals/guest/src/beacon/hints.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use hex_literal::hex;
use ssz_rs::prelude::*;
use std::hint::black_box;

/// Returns the beaacon block's withdrawals root and a corresponding SSZ merkle proof.
/// Returns the beacon block's withdrawals root and a corresponding SSZ merkle proof.
pub fn withdrawals_root_proof(_block_root: Node) -> (Node, Vec<Node>) {
let leaf =
node_from_bytes(hex!("5cc52fb136d9ff526f071f8f87d44c3f35ff5dc973371a2c3613d8ecc53bfcd4"));
Expand Down