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

     1  package models
     2  
     3  // StateProofSignature defines a model for StateProofSignature.
     4  type StateProofSignature struct {
     5  	// FalconSignature
     6  	FalconSignature []byte `json:"falcon-signature,omitempty"`
     7  
     8  	// MerkleArrayIndex
     9  	MerkleArrayIndex uint64 `json:"merkle-array-index,omitempty"`
    10  
    11  	// Proof
    12  	Proof MerkleArrayProof `json:"proof,omitempty"`
    13  
    14  	// VerifyingKey (vkey)
    15  	VerifyingKey []byte `json:"verifying-key,omitempty"`
    16  }