spl_token_swap/lib.rs
1#![allow(clippy::integer_arithmetic)]
2#![deny(missing_docs)]
3
4//! An Uniswap-like program for the Solana blockchain.
5
6pub mod constraints;
7pub mod curve;
8pub mod error;
9pub mod instruction;
10pub mod processor;
11pub mod state;
12
13#[cfg(not(feature = "no-entrypoint"))]
14mod entrypoint;
15
16// Export current sdk types for downstream users building with a different sdk version
17pub use solana_program;
18
19solana_program::declare_id!("Swapxy418CiVrU7RL7ZF5RuJKgncm7efhS8msyREZod");