pub struct LiquidStakingStats {
pub total_sttnzo_supply: u128,
pub total_underlying_wei: u128,
pub exchange_rate: u128,
pub total_protocol_fees: u128,
pub total_rewards_distributed: u128,
pub holder_count: u64,
pub pending_withdrawals: u64,
}Expand description
Liquid staking pool statistics
Fields§
§total_sttnzo_supply: u128Total stTNZO in circulation
total_underlying_wei: u128Total TNZO underlying the pool
exchange_rate: u128Current exchange rate (TNZO per stTNZO, 18 decimals)
total_protocol_fees: u128Total protocol fees collected
total_rewards_distributed: u128Total rewards distributed through the pool
holder_count: u64Number of stTNZO holders
pending_withdrawals: u64Number of pending withdrawal requests
Trait Implementations§
Source§impl Clone for LiquidStakingStats
impl Clone for LiquidStakingStats
Source§fn clone(&self) -> LiquidStakingStats
fn clone(&self) -> LiquidStakingStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LiquidStakingStats
impl Debug for LiquidStakingStats
Source§impl<'de> Deserialize<'de> for LiquidStakingStats
impl<'de> Deserialize<'de> for LiquidStakingStats
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for LiquidStakingStats
impl RefUnwindSafe for LiquidStakingStats
impl Send for LiquidStakingStats
impl Sync for LiquidStakingStats
impl Unpin for LiquidStakingStats
impl UnsafeUnpin for LiquidStakingStats
impl UnwindSafe for LiquidStakingStats
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more