Files
sol-trade-sdk/crates/pumpfun/src/accounts/mod.rs
T
2024-12-31 16:51:58 +08:00

15 lines
357 B
Rust

//! Accounts for the Pump.fun Solana Program
//!
//! This module contains the definitions for the accounts used by the Pump.fun program.
//!
//! # Accounts
//!
//! - `BondingCurve`: Represents a bonding curve account.
//! - `Global`: Represents the global configuration account.
mod bonding_curve;
mod global;
pub use bonding_curve::*;
pub use global::*;