15 lines
357 B
Rust
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::*;
|