2026-03-17 18:08:53 +01:00
|
|
|
//! The AMM Program implementation.
|
|
|
|
|
|
|
|
|
|
pub use amm_core as core;
|
|
|
|
|
|
|
|
|
|
pub mod add;
|
2026-06-23 17:28:22 +02:00
|
|
|
pub mod create_oracle_price_account;
|
2026-06-18 09:01:10 +02:00
|
|
|
pub mod create_price_observations;
|
2026-06-17 16:29:30 +02:00
|
|
|
pub mod initialize;
|
2026-03-17 18:08:53 +01:00
|
|
|
pub mod new_definition;
|
|
|
|
|
pub mod remove;
|
|
|
|
|
pub mod swap;
|
2026-04-08 10:57:47 -03:00
|
|
|
pub mod sync;
|
2026-06-18 16:46:38 +02:00
|
|
|
pub mod update_config;
|
2026-03-17 18:08:53 +01:00
|
|
|
|
|
|
|
|
mod tests;
|