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

     1  package models
     2  
     3  // MerkleArrayProof defines a model for MerkleArrayProof.
     4  type MerkleArrayProof struct {
     5  	// HashFactory
     6  	HashFactory HashFactory `json:"hash-factory,omitempty"`
     7  
     8  	// Path (pth)
     9  	Path [][]byte `json:"path,omitempty"`
    10  
    11  	// TreeDepth (td)
    12  	TreeDepth uint64 `json:"tree-depth,omitempty"`
    13  }