Files
solana/zk-token-sdk/src/lib.rs

21 lines
468 B
Rust

#![allow(clippy::integer_arithmetic)]
#[cfg(not(target_arch = "bpf"))]
#[macro_use]
pub(crate) mod macros;
#[cfg(not(target_arch = "bpf"))]
pub mod encryption;
#[cfg(not(target_arch = "bpf"))]
mod errors;
#[cfg(not(target_arch = "bpf"))]
mod range_proof;
#[cfg(not(target_arch = "bpf"))]
mod sigma_proofs;
#[cfg(not(target_arch = "bpf"))]
mod transcript;
mod instruction;
pub mod zk_token_elgamal;
pub mod zk_token_proof_instruction;
pub mod zk_token_proof_program;