bonds-token-swap 3.0.5

Solana Program Library Token Swap
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![allow(clippy::arithmetic_side_effects)]
// #![deny(missing_docs)]

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 solana_program;

solana_program::declare_id!("Ej56jz4o4jESeSS2rtC3rPnDQmM8YwovjTHVL8Tjv1Fk");