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
15
16
17
//! Instructions for the Pump.fun Solana Program
//!
//! This module contains the definitions for instructions that can be sent to the Pump.fun program.
//!
//! # Instructions
//!
//! - `Create`: Creates a new token with an associated bonding curve.
//! - `Buy`: Buys tokens from a bonding curve by providing SOL.
//! - `Sell`: Sells tokens back to the bonding curve in exchange for SOL.

mod buy;
mod create;
mod sell;

pub use buy::*;
pub use create::*;
pub use sell::*;