OPERATION_ DOCUMENT
The minimized GraphQL document being sent to the server to save a few bytes. The un-minimized version is:
query getCurrentEpoch {
epoch {
epochId
totalTransactions
startTimestamp
endTimestamp
referenceGasPrice
firstCheckpoint: checkpoints(first: 1) {
nodes {
sequenceNumber
}
}
validatorSet {
activeValidators {
pageInfo {
hasNextPage
endCursor
}
nodes {
__typename
...RPC_VALIDATOR_FIELDS
}
}
contents {
type {
repr
}
json
bcs
}
}
}
}
fragment RPC_VALIDATOR_FIELDS on Validator {
atRisk
contents {
type {
repr
}
json
bcs
}
}Content copied to clipboard