Skip to main content

carbon_pumpfun_decoder/types/
shareholder.rs

1//! This code was AUTOGENERATED using the Codama library.
2use solana_pubkey::Pubkey;
3#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
4#[derive(Debug, Clone, borsh::BorshSerialize, borsh::BorshDeserialize, PartialEq)]
5pub struct Shareholder {
6    pub address: Pubkey,
7    pub share_bps: u16,
8}