safe-token-swap 3.0.0

Safecoin Program Library Token Swap
Documentation
#![allow(clippy::integer_arithmetic)]
#![deny(missing_docs)]

//! An Uniswap-like program for the Safecoin blockchain.

pub mod constraints;
pub mod curve;
pub mod error;
pub mod instruction;
pub mod processor;
pub mod state;

#[cfg(not(feature = "no-entrypoint"))]
mod entrypoint;

// Export current sdk types for downstream users building with a different sdk version
pub use safecoin_program;

safecoin_program::declare_id!("SwapsVeCiPHMUAtzQWZw7RjsKjgCjhwU55QGu4U1Szw");