aztec_pxe_client/
lib.rs

1//! PXE (Private eXecution Environment) trait and shared types for aztec-rs.
2//!
3//! Provides the [`Pxe`] trait and supporting types for PXE implementations.
4//! The primary implementation is [`aztec_pxe::EmbeddedPxe`](../aztec_pxe/struct.EmbeddedPxe.html).
5
6pub mod pxe;
7pub use pxe::*;