OPERATION_DOCUMENT

The minimized GraphQL document being sent to the server to save a few bytes. The un-minimized version is:

query getLatestSuiSystemState($activeValidatorsFirst: Int, $activeValidatorsAfter: String, $activeValidatorsLast: Int, $activeValidatorsBefore: String) {
epoch {
epochId
startTimestamp
endTimestamp
referenceGasPrice
fundInflow
fundOutflow
fundSize
liveObjectSetDigest
netInflow
totalCheckpoints
totalGasFees
totalStakeRewards
totalStakeSubsidies
totalTransactions
protocolConfigs {
protocolVersion
}
systemState {
type {
repr
}
json
bcs
}
validatorSet {
activeValidators(first: $activeValidatorsFirst, after: $activeValidatorsAfter, last: $activeValidatorsLast, before: $activeValidatorsBefore) {
pageInfo {
hasNextPage
hasPreviousPage
endCursor
startCursor
}
nodes {
__typename
...RPC_VALIDATOR_FIELDS
}
}
contents {
type {
repr
}
json
bcs
}
}
}
}

fragment RPC_VALIDATOR_FIELDS on Validator {
atRisk
contents {
type {
repr
}
json
bcs
}
}