Categories
Applications
Web3 Framework
  • Github CLI
  • SSH
  • HTTPS
Clone Repo

Logo

ziggy-starkdust


GitHub Workflow Status (with event) OpenSSF Scorecard Report Project license Follow StarknetZig on Twitter

Exploration_Team

Note that ziggy-starkdust is still experimental. Breaking changes will be made before the first stable release. The library is also NOT audited or reviewed for security at the moment. Use at your own risk.

πŸ“¦ Installation

πŸ“‹ Prerequisites

Alternatively, if you have nix installed, you can get the full development environment nix develop.

  • Also you need installed python, so we can compile cairo0 programs in benchmarks/integration tests, to insatll them just run:
    make deps
    
    if u got macos:
    make deps-macos
    
  • After you need compile all cairo0 programs, to use test or benchmarks:
    make compile-cairo-programs
    

⚑ Wanna get up to speed fast?

πŸ‘‡ ⚑ Zig
πŸ‘‡ 🐺 Cairo VM

πŸ”§ Build

make build

πŸ€– Usage

You can display the help message by running:

./zig-out/bin/ziggy-starkdust --help

Run a cairo program

Without proof mode:

./zig-out/bin/ziggy-starkdust execute --filename cairo_programs/fibonacci.json

With proof mode:

./zig-out/bin/ziggy-starkdust execute --filename cairo_programs/fibonacci.json --proof-mode

With memory layout, trace, proof mode and custom layout:

./zig-out/bin/ziggy-starkdust execute --filename cairo_programs/fibonacci.json --memory-file=/dev/null --trace-file=/dev/null --proof-mode=true --layout all_cairo

πŸ§ͺ Testing

Run all integration tests with summary:

make build-integration-test
./zig-out/bin/integration_test

Run all benchmarks and compare:

make build-compare-benchmarks

Run all programs and compare output memory/trace for Zig/Rust cairo-vm:

make build-compare-output

Run all unit tests with test summary:

make test

Run a single test, for example, the β€œFelt252 zero” test:

$ make test-filter FILTER="Felt252 zero"
All 2 tests passed.

Notice that 2 tests passed despite running only 1 test, because our tests are wrapped in another test call within src/tests.zig.

In order to compare two memory files or trace files, use the following command:

vbindiff cairo_programs/expected_fibonacci.trace cairo_programs/fibonacci.trace

πŸ“Š Benchmarks

Installing benchmark dependencies

In order to compile programs you need to install the cairo-lang package.

Running the make deps (or the make deps-macos if you are runnning in MacOS) command will create a virtual environment with all the required dependencies.

Run the complete benchmark suite with Make:

make build-compare-benchmarks

πŸ”’ Security

Security guidelines

For security guidelines, please refer to SECURITY.md.

OpenSSF Scorecard

We are using the OpenSSF Scorecard to track the security of this project.

Scorecard assesses open source projects for security risks through a series of automated checks.

You can see the current scorecard for this project here.

πŸ™ Acknowledgments

⚑ Why Zig?

πŸ‘‡ ⚑

Choosing Zig for a third implementation of the Cairo VM brings several advantages, offering a unique blend of features not entirely covered by the existing Rust and Go implementations.

1. Simplicity and Readability

Zig aims for simplicity and clarity, enabling developers to read and understand the code quickly. It omits certain features like classes and exceptions to keep the language simple, which can be particularly useful for a VM where performance and maintainability are key.

2. Performance

Zig compiles to highly efficient native code, similar to Rust, making it an excellent choice for computationally-intensive tasks. The language’s design gives the programmer direct control over memory and CPU, without unnecessary abstractions.

3. Explicit Control with Safety Features

Zig provides an environment where you have explicit control over memory allocation, similar to C and C++. While this does mean you’re responsible for managing memory yourself, Zig offers certain safety features to catch common errors, like undefined behavior, during compile time or by providing runtime checks. This approach allows for a blend of performance and safety, making it a suitable choice for a VM where you often need fine-grained control.

4. C Interoperability

Zig offers first-class C interoperability without requiring any bindings or wrappers. This feature can be a game-changer for integrating with existing technologies.

5. Flexibility

Zig’s comptime (compile-time) features offer powerful metaprogramming capabilities. This allows for expressive yet efficient code, as you can generate specialized routines at compile-time, reducing the need for runtime polymorphism.

6. Minimal Dependencies

Zig aims to reduce dependencies to a minimum, which could simplify the deployment and distribution of Cairo VM. This is particularly advantageous for systems that require high-reliability or have limited resources.

7. Community and Ecosystem

Although younger than Rust and Go, Zig’s community is enthusiastic and rapidly growing. Adopting Zig at this stage means you can be a significant contributor to its ecosystem.

By choosing Zig for the third implementation of Cairo VM, we aim to leverage these features to build a high-performance, reliable, and maintainable virtual machine.

πŸ“„ License

This project is licensed under the MIT license.

See LICENSE for more information.

Happy coding! πŸŽ‰

Contributors ✨

Thanks goes to these wonderful people (emoji key):

Abdel @ StarkWare
Abdel @ StarkWare

πŸ’»
bing
bing

πŸ’»
Francesco Ceccon
Francesco Ceccon

πŸ’»
Thomas Coratger
Thomas Coratger

πŸ’»
lambda-0x
lambda-0x

πŸ’»
Nils
Nils

πŸ’»
johann bestowrous
johann bestowrous

πŸ’»
lanaivina
lanaivina

πŸ’»
Dhruv Kelawala
Dhruv Kelawala

πŸ’»
Godspower Eze
Godspower Eze

πŸ’»
tedison
tedison

πŸ’»
ptisserand
ptisserand

πŸ’»
ndcroos
ndcroos

πŸ“–
Icosahedron
Icosahedron

πŸ’»
Pierre-Jean
Pierre-Jean

πŸ’»
iwantanode
iwantanode

πŸ“–

This project follows the all-contributors specification. Contributions of any kind welcome!

About
⚑ Cairo VM in Zig ⚑
Owner
Last Commit
2024-08-20
Latest Release
Latest Release Date
Created
2023-09-26