noir VS clvm_rs

Compare noir vs clvm_rs and see what are their differences.

noir

Noir is a domain specific language for zero knowledge proofs (by noir-lang)

clvm_rs

Rust implementation of clvm (by Chia-Network)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
noir clvm_rs
4 4
792 66
3.0% -
9.9 8.8
5 days ago 1 day ago
Rust Rust
Apache License 2.0 Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

noir

Posts with mentions or reviews of noir. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-07.
  • [Aztec Noir + Scroll] Crea ZK DApps fácil
    3 projects | dev.to | 7 Nov 2023
    mkdir -p $HOME/.nargo/bin && \ curl -o $HOME/.nargo/bin/nargo-x86_64-unknown-linux-gnu.tar.gz -L https://github.com/noir-lang/noir/releases/download/v0.17.0/nargo-x86_64-unknown-linux-gnu.tar.gz && \ tar -xvf $HOME/.nargo/bin/nargo-x86_64-unknown-linux-gnu.tar.gz -C $HOME/.nargo/bin/ && \ echo 'export PATH=$PATH:$HOME/.nargo/bin' >> ~/.bashrc && \ source ~/.bashrc
  • A beginner's intro to coding zero-knowledge proofs
    13 projects | dev.to | 9 Feb 2023
    Noir, built by Aztec, is the newest language of the pack and is under active development. It is distributed as nargo, a rust-based CLI, and as a set of npm packages. The npm packages releases seem to lag slightly behind the crate, which has the bleeding edge features and only got its first stable release a few days ago (early February). Both the rust crate and the npm package can be used to compile Noir programs, generate and verify proofs, and create a verifier Solidity contract.
  • RiB Newsletter #22 - A few tweaks
    4 projects | /r/rust | 31 Mar 2021
    Noir.
  • DSL for Zero Knowledge Proofs
    3 projects | /r/crypto | 13 Mar 2021

clvm_rs

Posts with mentions or reviews of clvm_rs. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-05-20.
  • Chia build script for FreeBSD
    5 projects | /r/chia | 20 May 2022
    #!/bin/sh PYTHON=python3.8 #***************************************************************** # Dependencies adapted from # https://github.com/Chia-Network/chia-blockchain/wiki/FreeBSD-Install # # Either install these from packages or ports # # lang/gcc9 lang/gcc devel/gmake devel/cmake lang/rust # shells/bash www/node www/npm devel/git security/openssl # devel/py-maturin devel/py-virtualenv devel/py-pip # devel/py-setuptools devel/py-wheel databases/py-sqlite3 devel/py-cffi # # Usage: # ./build_chia $version # so for version 1.3.1 you would run "./build_chia 1.3.1" # when finished you should have chia a 1.3.1 folder in the chia_builds # directory. Activate the virtual environment with # ". chia_builds/$version/venv/bin/activate" and you are good to go. # #***************************************************************** BASEDIR=`dirname "$0"` GET_CHIA_RS_PYTHON=" from setup import dependencies chia_rs = [x for x in dependencies if x.startswith('chia_rs==') or x.startswith('clvm_rs==')] print(chia_rs[0]) " GET_CLVM_TOOLS_RS_PYTHON=" from setup import dependencies clvm_tools_rs = [x for x in dependencies if x.startswith('clvm-tools-rs==')] print(clvm_tools_rs[0]) " mkdir $BASEDIR/chia_builds/$1 cd $BASEDIR/chia_builds/$1 git clone -b main https://github.com/Chia-Network/chia-blockchain.git $PYTHON -m venv $BASEDIR/chia_builds/$1/venv . $BASEDIR/chia_builds/$1/venv/bin/activate pip install --upgrade pip cd $BASEDIR/chia_builds/$1/chia-blockchain git checkout tags/$1 CHIA_RS_STRING=`echo "$GET_CHIA_RS_PYTHON" | python` CHIA_RS_LIBRARY=${CHIA_RS_STRING%%==*} CHIA_RS_VERSION=${CHIA_RS_STRING##*==} CLVM_TOOLS_RS=`echo "$GET_CLVM_TOOLS_RS_PYTHON" | python` echo Detected CHIA_RS type: $CHIA_RS_LIBRARY version $CHIA_RS_VERSION if [ "$CHIA_RS_LIBRARY" = "clvm_rs" ]; then CHIA_RS_REPO=https://github.com/Chia-Network/clvm_rs.git elif [ "$CHIA_RS_LIBRARY" = "chia_rs" ]; then CHIA_RS_REPO=https://github.com/Chia-Network/chia_rs.git fi cd $BASEDIR/chia_builds/$1 git clone --branch $CHIA_RS_VERSION $CHIA_RS_REPO cd $BASEDIR/chia_builds/$1/$CHIA_RS_LIBRARY git checkout tags/$CHIA_RS_VERSION cd $BASEDIR/chia_builds/$1/$CHIA_RS_LIBRARY/wheel maturin develop --release pip install git+https://github.com/Chia-Network/clvm@use_clvm_rs cd $BASEDIR/chia_builds/$1 if [ ! -z "$CLVM_TOOLS_RS" ]; then git clone -b base https://github.com/Chia-Network/clvm_tools_rs.git cd $BASEDIR/chia_builds/$1/clvm_tools_rs git checkout tags/${CLVM_TOOLS_RS##*==} maturin develop --release fi cd $BASEDIR/chia_builds/$1/chia-blockchain sh ./install.sh
  • Chialisp -> Rust
    1 project | /r/chia | 3 Nov 2021
    Not a Chialisp developer, but are you thinking of more direct integration with rust implementation of the CLVM?
  • Dev team?
    6 projects | /r/chia | 22 Jun 2021
  • RiB Newsletter #22 - A few tweaks
    4 projects | /r/rust | 31 Mar 2021
    clvm-rs. Rust implementation of clvm.

What are some alternatives?

When comparing noir and clvm_rs you can also consider the following projects:

barretenberg - C++ elliptic curve library

pool-reference - Reference python implementation of Chia pool operations for pool operators

risc0 - RISC Zero is a zero-knowledge verifiable general computing platform based on zk-STARKs and the RISC-V microarchitecture.

chia-blockchain - Chia blockchain python implementation (full node, farmer, harvester, timelord, and wallet)

constantine - Constantine: modular, high-performance, zero-dependency cryptography stack for proof systems and blockchain protocols.

clvm - [Contract Language|Chia Lisp] Virtual Machine

ZoKrates - A toolbox for zkSNARKs on Ethereum

cairo-lang

clvm_tools_rs - clvm_tools ported to rust based on https://github.com/Chia-Mine/clvm_tools-js/, and chialisp-21 dialect with a new compiler.

halo2

chia_rs - Rust crate & wheel with consensus code