github.com/algorand/go-algorand-sdk@v1.24.0/client/v2/common/models/indexer_state_proof_message.go (about) 1 package models 2 3 // IndexerStateProofMessage defines a model for IndexerStateProofMessage. 4 type IndexerStateProofMessage struct { 5 // BlockHeadersCommitment (b) 6 BlockHeadersCommitment []byte `json:"block-headers-commitment,omitempty"` 7 8 // FirstAttestedRound (f) 9 FirstAttestedRound uint64 `json:"first-attested-round,omitempty"` 10 11 // LatestAttestedRound (l) 12 LatestAttestedRound uint64 `json:"latest-attested-round,omitempty"` 13 14 // LnProvenWeight (P) 15 LnProvenWeight uint64 `json:"ln-proven-weight,omitempty"` 16 17 // VotersCommitment (v) 18 VotersCommitment []byte `json:"voters-commitment,omitempty"` 19 }