SuiSystemStateSummary

Struct SuiSystemStateSummary 

Source
pub struct SuiSystemStateSummary {
Show 37 fields pub epoch: u64, pub protocol_version: u64, pub system_state_version: u64, pub storage_fund_total_object_storage_rebates: u64, pub storage_fund_non_refundable_balance: u64, pub reference_gas_price: u64, pub safe_mode: bool, pub safe_mode_storage_rewards: u64, pub safe_mode_computation_rewards: u64, pub safe_mode_storage_rebates: u64, pub safe_mode_non_refundable_storage_fee: u64, pub epoch_start_timestamp_ms: u64, pub epoch_duration_ms: u64, pub stake_subsidy_start_epoch: u64, pub max_validator_count: u64, pub min_validator_joining_stake: u64, pub validator_low_stake_threshold: u64, pub validator_very_low_stake_threshold: u64, pub validator_low_stake_grace_period: u64, pub stake_subsidy_balance: u64, pub stake_subsidy_distribution_counter: u64, pub stake_subsidy_current_distribution_amount: u64, pub stake_subsidy_period_length: u64, pub stake_subsidy_decrease_rate: u16, pub total_stake: u64, pub active_validators: Vec<SuiValidatorSummary>, pub pending_active_validators_id: Address, pub pending_active_validators_size: u64, pub pending_removals: Vec<u64>, pub staking_pool_mappings_id: Address, pub staking_pool_mappings_size: u64, pub inactive_pools_id: Address, pub inactive_pools_size: u64, pub validator_candidates_id: Address, pub validator_candidates_size: u64, pub at_risk_validators: Vec<(Address, u64)>, pub validator_report_records: Vec<(Address, Vec<Address>)>,
}
Expand description

This is the JSON-RPC type for the SUI system state object.

It flattens all fields to make them top-level fields such that it as minimum dependencies to the internal data structures of the SUI system state type.

Originally sui_types::sui_system_state::sui_system_state_summary::SuiSystemStateSummary.

Fields§

§epoch: u64

The current epoch ID, starting from 0.

§protocol_version: u64

The current protocol version, starting from 1.

§system_state_version: u64

The current version of the system state data structure type.

§storage_fund_total_object_storage_rebates: u64

The storage rebates of all the objects on-chain stored in the storage fund.

§storage_fund_non_refundable_balance: u64

The non-refundable portion of the storage fund coming from storage reinvestment, non-refundable storage rebates and any leftover staking rewards.

§reference_gas_price: u64

The reference gas price for the current epoch.

§safe_mode: bool

Whether the system is running in a downgraded safe mode due to a non-recoverable bug. This is set whenever we failed to execute advance_epoch, and ended up executing advance_epoch_safe_mode. It can be reset once we are able to successfully execute advance_epoch.

§safe_mode_storage_rewards: u64

Amount of storage rewards accumulated (and not yet distributed) during safe mode.

§safe_mode_computation_rewards: u64

Amount of computation rewards accumulated (and not yet distributed) during safe mode.

§safe_mode_storage_rebates: u64

Amount of storage rebates accumulated (and not yet burned) during safe mode.

§safe_mode_non_refundable_storage_fee: u64

Amount of non-refundable storage fee accumulated during safe mode.

§epoch_start_timestamp_ms: u64

Unix timestamp of the current epoch start

§epoch_duration_ms: u64

The duration of an epoch, in milliseconds.

§stake_subsidy_start_epoch: u64

The starting epoch in which stake subsidies start being paid out

§max_validator_count: u64

Maximum number of active validators at any moment. We do not allow the number of validators in any epoch to go above this.

§min_validator_joining_stake: u64

Lower-bound on the amount of stake required to become a validator.

§validator_low_stake_threshold: u64

Validators with stake amount below validator_low_stake_threshold are considered to have low stake and will be escorted out of the validator set after being below this threshold for more than validator_low_stake_grace_period number of epochs.

§validator_very_low_stake_threshold: u64

Validators with stake below validator_very_low_stake_threshold will be removed immediately at epoch change, no grace period.

§validator_low_stake_grace_period: u64

A validator can have stake below validator_low_stake_threshold for this many epochs before being kicked out.

§stake_subsidy_balance: u64

Balance of SUI set aside for stake subsidies that will be drawn down over time.

§stake_subsidy_distribution_counter: u64

This counter may be different from the current epoch number if in some epochs we decide to skip the subsidy.

§stake_subsidy_current_distribution_amount: u64

The amount of stake subsidy to be drawn down per epoch. This amount decays and decreases over time.

§stake_subsidy_period_length: u64

Number of distributions to occur before the distribution amount decays.

§stake_subsidy_decrease_rate: u16

The rate at which the distribution amount decays at the end of each period. Expressed in basis points.

§total_stake: u64

Total amount of stake from all active validators at the beginning of the epoch.

§active_validators: Vec<SuiValidatorSummary>

The list of active validators in the current epoch.

§pending_active_validators_id: Address

ID of the object that contains the list of new validators that will join at the end of the epoch.

§pending_active_validators_size: u64

Number of new validators that will join at the end of the epoch.

§pending_removals: Vec<u64>

Removal requests from the validators. Each element is an index pointing to active_validators.

§staking_pool_mappings_id: Address

ID of the object that maps from staking pool’s ID to the sui address of a validator.

§staking_pool_mappings_size: u64

Number of staking pool mappings.

§inactive_pools_id: Address

ID of the object that maps from a staking pool ID to the inactive validator that has that pool as its staking pool.

§inactive_pools_size: u64

Number of inactive staking pools.

§validator_candidates_id: Address

ID of the object that stores preactive validators, mapping their addresses to their Validator structs.

§validator_candidates_size: u64

Number of preactive validators.

§at_risk_validators: Vec<(Address, u64)>

Map storing the number of epochs for which each validator has been below the low stake threshold.

§validator_report_records: Vec<(Address, Vec<Address>)>

A map storing the records of validator reporting each other.

Trait Implementations§

Source§

impl Clone for SuiSystemStateSummary

Source§

fn clone(&self) -> SuiSystemStateSummary

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for SuiSystemStateSummary

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for SuiSystemStateSummary

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for SuiSystemStateSummary

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<U> As for U

Source§

fn as_<T>(self) -> T
where T: CastFrom<U>,

Casts self to type T. The semantics of numeric casting with the as operator are followed, so <T as As>::as_::<U> can be used in the same way as T as U for numeric conversions. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSend for T
where T: Send,