wp-solana-pool-traits 0.1.1

Traits and utilities for Solana liquidity pool operations: PoolViewer, PoolInfuser, PositionViewer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Library for fetching and managing Solana pool information

pub mod common;
pub mod error;
pub mod traits;
pub mod types;

// Re-export for convenience
pub use error::PoolError;
#[cfg(feature = "rpc")]
pub use traits::{pool_harvester::PoolHarvester, pool_infuser::PoolInfuser};
pub use types::*;