axiom-eth 0.4.0

This crate is the main library for building ZK circuits that prove data about the Ethereum virtual machine (EVM).
Documentation
1
2
3
4
5
6
/// Generates a dummy of this type from a seed.
/// This is used to generate dummy inputs for the circuit.
pub trait DummyFrom<S> {
    /// Dummy from a seed.
    fn dummy_from(seed: S) -> Self;
}