clmm-common 0.1.39

Blockchain, Clmm for Solana
Documentation
use borsh::BorshDeserialize;
use solana_program::pubkey::Pubkey;
use tabled::Tabled;

#[derive(BorshDeserialize, Tabled)]
pub struct Partner {
    // partner fee claim authority.
    pub partner_fee_claim_authority: Pubkey,

    pub pending_authority: Pubkey,

    //base
    pub base: Pubkey,
    // the fee rate of partner.
    pub fee_rate: u16,
    // the bump.
    pub bump: u8,
    //
    pub start_time: u64,
    //
    pub end_time: u64,
    pub name: String,
}