package proof import "github.com/Fuwn/plutia/internal/merkle" type DIDInclusionProof struct { DID string `json:"did"` ChainTipHash string `json:"chain_tip_hash"` LeafHash string `json:"leaf_hash"` MerkleRoot string `json:"merkle_root"` Siblings []merkle.Sibling `json:"siblings"` CheckpointSeq uint64 `json:"checkpoint_sequence"` CheckpointHash string `json:"checkpoint_hash"` CheckpointSig string `json:"checkpoint_signature"` CheckpointKeyID string `json:"checkpoint_key_id"` }