axiom-codec 0.2.1

This crate contains Rust types for Axiom queries and specifies how to encode/decode them to field elements for in-circuit use.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![feature(trait_alias)]
#![feature(io_error_other)]

pub use axiom_eth::utils::hilo::HiLo;
pub use axiom_eth::Field;

/// Constants
pub mod constants;
pub mod decoder;
pub mod encoder;
/// Special constants used in subquery specification
pub mod special_values;
pub mod types;
pub mod utils;

pub const VERSION: u8 = 0x02;