solana_zk_token_sdk/
zk_token_proof_program.rs

1//! The native ZK Token proof program.
2//!
3//! The program verifies a number of zero-knowledge proofs that are tailored to work with Pedersen
4//! commitments and ElGamal encryption over the elliptic curve curve25519. A general overview of
5//! the program as well as the technical details of some of the proof instructions can be found in
6//! the [`ZK Token proof`] documentation.
7//!
8//! [`ZK Token proof`]: https://docs.solanalabs.com/runtime/zk-token-proof
9
10// Program Id of the ZkToken Proof program
11pub use solana_sdk_ids::zk_token_proof_program::{check_id, id, ID};