stable_swap_client/
lib.rs

1//! A Curve-like program for the Solana blockchain.
2#![deny(clippy::unwrap_used)]
3#![deny(rustdoc::all)]
4#![allow(rustdoc::missing_doc_code_examples)]
5#![deny(missing_docs)]
6
7pub mod error;
8pub mod fees;
9pub mod instruction;
10pub mod state;
11
12// Export current solana-program types for downstream users who may also be
13// building with a different solana-program version
14pub use solana_program;
15
16// The library uses this to verify the keys
17solana_program::declare_id!("SSwpkEEcbUqx4vtoEByFjSkhKdCT862DNVb52nZg1UZ");