pumpfun 4.6.0

Rust SDK to interact with the Pump.fun Solana program.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! 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::*;