solana_zk_token_sdk/instruction/batched_grouped_ciphertext_validity/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
mod handles_2;
mod handles_3;

pub use {
    handles_2::{
        BatchedGroupedCiphertext2HandlesValidityProofContext,
        BatchedGroupedCiphertext2HandlesValidityProofData,
    },
    handles_3::{
        BatchedGroupedCiphertext3HandlesValidityProofContext,
        BatchedGroupedCiphertext3HandlesValidityProofData,
    },
};