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

     1  package models
     2  
     3  // StateProofVerifier defines a model for StateProofVerifier.
     4  type StateProofVerifier struct {
     5  	// Commitment (cmt) Represents the root of the vector commitment tree.
     6  	Commitment []byte `json:"commitment,omitempty"`
     7  
     8  	// KeyLifetime (lf) Key lifetime.
     9  	KeyLifetime uint64 `json:"key-lifetime,omitempty"`
    10  }