Implementation of stark.Not suitable for production use.
Ensure you have Rust and Cargo installed. To install the project, run:
git clone https://github.com/Saksham010/mini-stark/
cd mini-starkComputation is handwired as fibbonacci sequence Ensure that number of gates is in 2^n
Proof generated form the values that does not satisfy the constraint is rejected
Generate proof by running:
cargo run --bin proverCopy the proof string.
Honest verifier will run the recieved proof with the verifier algorithm.
cargo run --bin verifier REPLACE_WITH_PROOFThe verification algorithm will output whether the proof is valid or not in the console.
References are listed here: https://github.com/Saksham010/awesome-zk-stark

