Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 497 Bytes

File metadata and controls

32 lines (21 loc) · 497 Bytes

Airbender Examples

Each example contains two crates:

  • guest/: guest program built with the Airbender toolchain.
  • host/: native runner that executes, proves, and verifies the guest program.

Build and Run

From a guest directory:

cargo airbender build

From the corresponding host directory:

cargo run

To generate and verify a proof:

cargo run -- --prove

Examples

  • fibonacci
  • u256-add (no_std + ruint)
  • std-btreemap (std + BTreeMap)