1
2
3
4
5
6
7
8
9
10
11
12
13
#![allow(clippy::arithmetic_side_effects)]
pub mod client;
pub mod output;
pub mod token;

/// Helper functions to generate split zero-knowledge proofs for confidential
/// transfers.
///
/// The logic in this submodule should belong to the `solana-zk-token-sdk` and
/// will be removed with an upgrade to the Solana program in the future.
pub mod proof_generation;

pub use spl_token_2022;