[![ethereum badge]][ethereum] [![readme style standard badge]][standard readme] [![codecov badge]][codecov] [![circleci badge]][circleci] [![appveyor badge]][appveyor] [![license badge]][Apache License, Version 2.0]
Fast Quantum Resistant Virtual Machine implementation
qrvmone is a C++ implementation of the Quantum Resistant Virtual Machine (QRVM). Created by members of the [Ipsilon] (ex-[Ewasm]) team, the project aims for clean, standalone QRVM implementation that can be imported as an execution module by QRL Client projects. The codebase of qrvmone is optimized to provide fast and efficient execution of QRVM smart contracts.
- Exposes the [QRVMC] API.
- Requires C++20 standard.
- The [intx] library is used to provide multi-precision integer arithmetic (256-bit and 512-bit) used by the QRVM stack.
- The [ethash] library is used to provide Keccak hash function implementation
needed for the special
KECCAK256instruction. - Contains two interpreters:
- Baseline (default)
- Advanced (select with the
advancedoption)
- Provides relatively straight-forward but efficient QRVM implementation.
- Performs only minimalistic
JUMPDESTanalysis.
- The indirect call threading is the dispatch method used - a loaded QRVM program is a table with pointers to functions implementing virtual instructions.
- The gas cost and stack requirements of block of instructions is precomputed and applied once per block during execution.
- Performs extensive and expensive bytecode analysis before execution.
qrvmone implements the [QRVMC] API for Quantum Resistant Virtual Machines. It can be used as a plugin replacing gzond's internal QRVM. But for that a modified version of gzond is needed. The [Ewasm]'s fork of go-zond provides binary releases of gzond with QRVMC support.
Next, download qrvmone from [Releases].
Start the downloaded gzond with --vm.qrvm option pointing to the qrvmone shared library.
gzond --vm.qrvm=./libqrvmone.soTo build the qrvmone QRVMC module (shared library), test, and benchmark:
-
Fetch the source code:
git clone --recursive https://github.com/theqrl/qrvmone cd qrvmone -
Configure the project build and dependencies:
cmake -S . -B build -DQRVMONE_TESTING=ONcmake -S . -B build -DQRVMONE_TESTING=ON -G "Visual Studio 16 2019" -A x64 -
Build:
cmake --build build --parallel -
Run the unit tests or benchmarking tool:
build/bin/qrvmone-unittests build/bin/qrvmone-bench test/qrvm-benchmarks/benchmarks
The qrvm-test executes a collection of unit tests on any QRVMC-compatible Quantum Resistant Virtual Machine implementation. The collection of tests comes from the qrvmone project.
qrvm-test ./qrvmone.soDocker images with qrvmone are available on Docker Hub: https://hub.docker.com/r/qrledger/qrvmone.
Having the qrvmone shared library inside a docker is not very useful on its own, but the image can be used as the base of another one or you can run benchmarks with it.
docker run --entrypoint qrvmone-bench qrledger/qrvmone /src/test/benchmarksPaweł Bylica [@chfast]
[![license badge]][Apache License, Version 2.0]
Licensed under the [Apache License, Version 2.0].