mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-05 06:43:08 +00:00
28 lines
702 B
Rust
28 lines
702 B
Rust
#[cfg(not(feature = "no_docker"))]
|
|
pub mod program_methods {
|
|
include!(concat!(env!("OUT_DIR"), "/program_methods/mod.rs"));
|
|
}
|
|
|
|
#[cfg(feature = "no_docker")]
|
|
use program_methods;
|
|
|
|
pub mod encoding;
|
|
pub mod error;
|
|
mod merkle_tree;
|
|
pub mod privacy_preserving_transaction;
|
|
pub mod program;
|
|
pub mod public_transaction;
|
|
mod signature;
|
|
mod state;
|
|
|
|
pub use nssa_core::account::{Account, AccountId};
|
|
pub use nssa_core::address::Address;
|
|
pub use privacy_preserving_transaction::{
|
|
PrivacyPreservingTransaction, circuit::execute_and_prove,
|
|
};
|
|
pub use public_transaction::PublicTransaction;
|
|
pub use signature::PrivateKey;
|
|
pub use signature::PublicKey;
|
|
pub use signature::Signature;
|
|
pub use state::V01State;
|