zera-sdk 0.1.0

Rust SDK for ZERA transactions, validator APIs, and bridge workflows
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(feature = "bridge-guardian")]
pub mod guardian;
#[cfg(feature = "bridge-solana")]
pub mod solana;
pub mod zera;

#[cfg(feature = "bridge-guardian")]
pub use guardian::*;
#[allow(ambiguous_glob_reexports)]
#[cfg(feature = "bridge-solana")]
pub use solana::*;
#[allow(ambiguous_glob_reexports)]
pub use zera::*;