Epoch

data class Epoch(val epochId: Any, val startTimestamp: Any?, val endTimestamp: Any?, val referenceGasPrice: Any?, val fundInflow: Any?, val fundOutflow: Any?, val fundSize: Any?, val liveObjectSetDigest: String?, val netInflow: Any?, val totalCheckpoints: Any?, val totalGasFees: Any?, val totalStakeRewards: Any?, val totalStakeSubsidies: Any?, val totalTransactions: Any?, val protocolConfigs: GetLatestSuiSystemStateQuery.ProtocolConfigs?, val systemState: GetLatestSuiSystemStateQuery.SystemState?, val validatorSet: GetLatestSuiSystemStateQuery.ValidatorSet?)

Constructors

Link copied to clipboard
constructor(epochId: Any, startTimestamp: Any?, endTimestamp: Any?, referenceGasPrice: Any?, fundInflow: Any?, fundOutflow: Any?, fundSize: Any?, liveObjectSetDigest: String?, netInflow: Any?, totalCheckpoints: Any?, totalGasFees: Any?, totalStakeRewards: Any?, totalStakeSubsidies: Any?, totalTransactions: Any?, protocolConfigs: GetLatestSuiSystemStateQuery.ProtocolConfigs?, systemState: GetLatestSuiSystemStateQuery.SystemState?, validatorSet: GetLatestSuiSystemStateQuery.ValidatorSet?)

Properties

Link copied to clipboard

The timestamp associated with the last checkpoint in the epoch (or null if the epoch has not finished yet).

Link copied to clipboard

The epoch's id as a sequence number that starts at 0 and is incremented by one at every epoch change.

Link copied to clipboard

The storage fees paid for transactions executed during the epoch (or null if the epoch has not finished yet).

Link copied to clipboard

The storage fee rebates paid to users who deleted the data associated with past transactions (or null if the epoch has not finished yet).

Link copied to clipboard

The storage fund available in this epoch (or null if the epoch has not finished yet). This fund is used to redistribute storage fees from past transactions to future validators.

Link copied to clipboard

A commitment by the committee at the end of epoch on the contents of the live object set at that time. This can be used to verify state snapshots.

Link copied to clipboard

The difference between the fund inflow and outflow, representing the net amount of storage fees accumulated in this epoch (or null if the epoch has not finished yet).

Link copied to clipboard

The epoch's corresponding protocol configuration, including the feature flags and the configuration options.

Link copied to clipboard

The minimum gas price that a quorum of validators are guaranteed to sign a transaction for in this epoch.

Link copied to clipboard

The timestamp associated with the first checkpoint in the epoch.

Link copied to clipboard

The contents of the system state inner object at the start of this epoch.

Link copied to clipboard

The total number of checkpoints in this epoch.

Link copied to clipboard

The total amount of gas fees (in MIST) that were paid in this epoch (or null if the epoch has not finished yet).

Link copied to clipboard

The total MIST rewarded as stake (or null if the epoch has not finished yet).

Link copied to clipboard

The amount added to total gas fees to make up the total stake rewards (or null if the epoch has not finished yet).

Link copied to clipboard

The total number of transaction blocks in this epoch.

Link copied to clipboard

Validator-related properties, including the active validators.