github.com/algorand/go-algorand-sdk@v1.24.0/client/v2/common/models/state_proof.go (about) 1 package models 2 3 // StateProof represents a state proof and its corresponding message 4 type StateProof struct { 5 // Message represents the message that the state proofs are attesting to. 6 Message StateProofMessage `json:"Message"` 7 8 // Stateproof the encoded StateProof for the message. 9 Stateproof []byte `json:"StateProof"` 10 }