github.com/algorand/go-algorand-sdk@v1.24.0/client/v2/common/models/light_block_header_proof.go (about) 1 package models 2 3 // LightBlockHeaderProof proof of membership and position of a light block header. 4 type LightBlockHeaderProof struct { 5 // Index the index of the light block header in the vector commitment tree 6 Index uint64 `json:"index"` 7 8 // Proof the encoded proof. 9 Proof []byte `json:"proof"` 10 11 // Treedepth represents the depth of the tree that is being proven, i.e. the number 12 // of edges from a leaf to the root. 13 Treedepth uint64 `json:"treedepth"` 14 }