Skip to main content
Version: 0.21

Guest Code 101

In a zkVM application, the guest code is the code that will be executed and proven by the zkVM.

From Guest Code to Receipt

This page serves as an introduction to writing RISC Zero guest code, to help you get started building applications for Bonsai and the zkVM.

The full functionality of the guest is documented in the guest module of the risc0-zkvm Rust crate.

Basic Guest Functionality: Reading, Writing, and Committing

To build a zkVM application, we need our guest program to be able to:

  1. read inputs,
  2. write private outputs to the host, and
  3. commit public outputs to the journal.

To support various use cases, there are a number of functions that can be called from the guest for reading/writing/committing. For a complete list, see the guest module documentation; we include a brief list which should be sufficient for building your first application:

Tools for Debugging & Optimization

There are also a number of functions available to support with debugging and performance analysis. As above, we refer to the [guest module] for a full list, but include some highlights here:

For more information on optimization & performance, see our pages on Cryptography Acceleration and Benchmarking.

Boilerplate before main()

In our template and examples, there's a bit of boilerplate code before main(). In this section, we explain what each of those lines is doing:

  • #![no_std]
    The guest code should be as lightweight as possible for performance reasons. So, since we aren't using std, we exclude it.

  • #![no_main]
    The guest code is never launched as a standalone Rust executable, so we specify #![no_main].

  • risc0_zkvm_guest::entry!(main);
    We must make the guest code available for the host to launch, and to do that we must specify which function to call when the host starts executing this guest code. We use the risc0_zkvm_guest::entry! macro to indicate the initial guest function to call, which in this case is main.

Happy Building!

Hopefully, this guide and the zkVM Quick Start page will be sufficient for you to build your first zkVM application!

If you run into problems, don't be a stranger! You can file an issue on [these docs] or the examples, and we're happy to answer questions on Discord.