carbon-raydium-launchpad-decoder 2.0.0

Raydium Launchpad Decoder
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! This code was AUTOGENERATED using the Codama library.
/// Represents the parameters for initializing a new token mint
/// # Fields
/// * `decimals` - Number of decimal places for the token
/// * `name` - Name of the token
/// * `symbol` - Symbol/ticker of the token
/// * `uri` - URI pointing to token metadata
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Debug, Clone, borsh::BorshSerialize, borsh::BorshDeserialize, PartialEq)]
pub struct MintParams {
    pub decimals: u8,
    pub name: String,
    pub symbol: String,
    pub uri: String,
}