Skip to content

Commit

Permalink
add main logic for proof generation in client
Browse files Browse the repository at this point in the history
  • Loading branch information
samkim-crypto committed Sep 12, 2023
1 parent 7d1179a commit 9626592
Show file tree
Hide file tree
Showing 4 changed files with 389 additions and 0 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions token/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ version = "0.5.1"

[dependencies]
async-trait = "0.1"
curve25519-dalek = "3.2.1"
futures = "0.3.28"
futures-util = "0.3"
solana-banks-interface = "1.16.3"
Expand Down
6 changes: 6 additions & 0 deletions token/client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,10 @@ 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;
Loading

0 comments on commit 9626592

Please sign in to comment.