fusionamm-client 1.0.76

Rust client to interact with on-chain FusionAMM program.
Documentation
//
// Copyright (c) Cryptic Dot
//
// Modification based on Orca Whirlpools (https://github.com/orca-so/whirlpools),
// originally licensed under the Apache License, Version 2.0, prior to February 26, 2025.
//
// Modifications licensed under FusionAMM SDK Source-Available License v1.0
// See the LICENSE file in the project root for license information.
//

mod fusion_pool;
mod fusion_pools_config;
mod limit_order;
mod position;
mod position_bundle;
mod tick_array;
mod token_badge;
mod utils;

// FIXME: Discriminators for accounts are not yet added to codama-rust,
// here they are added in such a way that if they are added to codama-rust,
// we can remove them from here.

pub use fusion_pool::*;
pub use fusion_pools_config::*;
pub use limit_order::*;
pub use position::*;
pub use position_bundle::*;
pub use tick_array::*;
pub use token_badge::*;
pub(crate) use utils::*;