pub struct MevCommissionAverageOverTime {
pub aggregated_mev_rewards: u64,
pub mev_rewards: Vec<TimeSeriesData<u64>>,
pub tvl: Vec<TimeSeriesData<u64>>,
pub apy: Vec<TimeSeriesData<f64>>,
pub num_validators: Vec<TimeSeriesData<u64>>,
pub supply: Vec<TimeSeriesData<f64>>,
}Expand description
MEV commission average over time
Fields§
§aggregated_mev_rewards: u64Aggregated MEV rewards
mev_rewards: Vec<TimeSeriesData<u64>>MEV rewards time series
tvl: Vec<TimeSeriesData<u64>>Total value locked time series
apy: Vec<TimeSeriesData<f64>>APY time series
num_validators: Vec<TimeSeriesData<u64>>Number of validators time series
supply: Vec<TimeSeriesData<f64>>JitoSOL supply time series
Trait Implementations§
Source§impl Clone for MevCommissionAverageOverTime
impl Clone for MevCommissionAverageOverTime
Source§fn clone(&self) -> MevCommissionAverageOverTime
fn clone(&self) -> MevCommissionAverageOverTime
Returns a duplicate of the value. Read more
1.0.0 · 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 MevCommissionAverageOverTime
impl Debug for MevCommissionAverageOverTime
Source§impl<'de> Deserialize<'de> for MevCommissionAverageOverTime
impl<'de> Deserialize<'de> for MevCommissionAverageOverTime
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 MevCommissionAverageOverTime
impl RefUnwindSafe for MevCommissionAverageOverTime
impl Send for MevCommissionAverageOverTime
impl Sync for MevCommissionAverageOverTime
impl Unpin for MevCommissionAverageOverTime
impl UnwindSafe for MevCommissionAverageOverTime
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