github.com/algorand/go-algorand-sdk@v1.24.0/client/v2/common/models/state_proof_reveal.go (about)

     1  package models
     2  
     3  // StateProofReveal defines a model for StateProofReveal.
     4  type StateProofReveal struct {
     5  	// Participant (p)
     6  	Participant StateProofParticipant `json:"participant,omitempty"`
     7  
     8  	// Position the position in the signature and participants arrays corresponding to
     9  	// this entry.
    10  	Position uint64 `json:"position,omitempty"`
    11  
    12  	// SigSlot (s)
    13  	SigSlot StateProofSigSlot `json:"sig-slot,omitempty"`
    14  }