carbon-gavel-decoder 1.0.0

Gavel Pool Decoder
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! This code was AUTOGENERATED using the Codama library.
use crate::types::PendingSharesToVest;
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Debug, Clone, borsh::BorshSerialize, borsh::BorshDeserialize, PartialEq)]
pub struct LpPosition {
    pub reward_factor_snapshot: u128,
    pub lp_shares: u64,
    pub withdrawable_lp_shares: u64,
    pub uncollected_fees: u64,
    pub collected_fees: u64,
    pub pending_shares_to_vest: PendingSharesToVest,
}