🚧 cairo-rs
is still being built therefore breaking changes might happen often so use it at your own risk. 🚧
Cargo doesn't comply with semver, so we advise to pin the version to 0.1.0. This can be done adding cairo-vm = "0.1.0"
to your Cargo.toml
Cairo VM is the virtual machine for the Cairo language.
There's an older version of Cairo VM written in Python, which is currently in production.
This repository contains the newer version, written in Rust. It's faster and has safer and more expressive typing. Once completed, it will replace the older one as the sole Cairo VM.
Cairo is the first production-grade platform for generating STARK proofs for general computation.
It's Turing-complete and it was created by Starkware as part of the Starknet ecosystem.
Required
Optional
These dependencies are only necessary in order to run the original VM, compile Cairo programs, and run tests.
To run programs from the command line, first compile the repository from the cairo-vm-cli folder:
bash
cd cairo-vm-cli; cargo build --release; cd ..
Once the binary is built, it can be found in target/release/
under the name cairo-rvm-cli
.
To compile a program, use cairo-compile [path_to_the_.cairo_file] --output [desired_path_of_the_compiled_.json_file]
. For example:
bash
cairo-compile cairo_programs/abs_value_array.cairo --output cairo_programs/abs_value_array_compiled.json
To run a compiled .json program through the VM, call the executable giving it the path and name of the file to be executed. For example:
bash
target/release/cairo-vm-cli cairo_programs/abs_value_array_compiled.json --layout all_cairo
The flag --layout
determines which builtins can be used. More info about layouts here.
To sum up, the following code will get you from zero to running a Cairo program:
```bash git clone https://github.com/lambdaclass/cairo-rs.git
cd cairo-rs
cargo build --release
cairo-compile cairoprograms/absvaluearray.cairo --output cairoprograms/absvaluearray_compiled.json
target/release/cairo-rs-run cairoprograms/absvaluearraycompiled.json --layout all_cairo ```
Currently, as this VM is under construction, it's missing some of the features of the original VM. Notably, this VM only implements a limited number of Python hints at the moment, while the Python Cairo VM allows users to run any Python code.
There are two ways to use non-standard hints in this VM:
When running a Cairo program directly using the Cairo-rs repository you would first need to prepare a couple of things.
Specify the Cairo program you want to run
rust
let program =
Program::from_file(Path::new(&file_path), None);
Instantiate the VM, the cairo_runner, the hint processor, and the entrypoint
```rust let mut vm = VirtualMachine::new(false);
let mut cairorunner = CairoRunner::new(&program, "allcairo", false);
let mut hintprocessor = BuiltinHintProcessor::newempty();
let entrypoint = program .identifiers .get(&format!("main.{}", &func_name))? .pc; ```
Lastly, initialize the builtins and segments.
rust
cairo_runner.initialize_builtins(&mut vm)?;
cairo_runner.initialize_segments(&mut vm, None);
When using cairo-rs with the Starknet devnet there are additional parameters that are part of the OS context passed on to the run_from_entrypoint
method that we do not have here when using it directly. These parameters are, for example, initial stacks of the builtins, which are the base of each of them and are needed as they are the implicit arguments of the function.
rust
let _var = cairo_runner.run_from_entrypoint(
entrypoint,
vec![
&MaybeRelocatable::from(2).into(), //this is the entry point selector
&MaybeRelocatable::from((2,0)).into() //this would be the output_ptr for example if our cairo function uses it
],
false,
&mut vm,
&mut hint_processor,
);
A demo on how to use cairo-rs
with WebAssembly can be found
here.
To run the test suite you'll need cargo-llvm-cov
dependency so make sure to run this command beforehand:
bash
make deps
Now that you have the dependencies necessary to run the test suite you can run:
bash
make test
Running a Cairo program that gets the 1000th Fibonacci number we got the following benchmarks:
Note before running the benchmark suite: the benchmark named iai_benchmark depends on Valgrind. Please make sure it is installed prior to running the iai_benchmark
benchmark.
Run the complete benchmark suite with cargo:
bash
cargo bench
Run only the criterion_benchmark
benchmark suite with cargo:
bash
cargo bench --bench criterion_benchmark
Run only the iai_benchmark
benchmark suite with cargo:
bash
cargo bench --bench iai_benchmark
Keeps track of the latest changes here.
The open-source community is a fantastic place for learning, inspiration, and creation, and this is all thanks to contributions from people like you. Your contributions are greatly appreciated.
If you have any suggestions for how to improve the project, please feel free to fork the repo and create a pull request, or open an issue with the tag 'enhancement'.
git checkout -b feat/AmazingFeature
)git commit -m 'feat: add some AmazingFeature'
)git push origin feat/AmazingFeature
)And don't forget to give the project a star! ⭐ Thank you again for your support.
You can find more detailed instructions in the CONTRIBUTING.md document.
We wrote a document explaining how the Cairo VM works. It can be found here.
This is a list of recommended books to learn how to implement a compiler or an interpreter.
Introduction:
Vitalik Buterin's blog series on zk-STARKs:
Alan Szepieniec's STARK tutorial:
StarkWare's STARK Math blog series:
This project is licensed under the Apache 2.0 license.
See LICENSE for more information.