CommitmentProof is either an ExistenceProof or a NonExistenceProof, or a Batch of such messages

interface CommitmentProof {
    batch?: BatchProof;
    compressed?: CompressedBatchProof;
    exist?: ExistenceProof;
    nonexist?: NonExistenceProof;
}

Properties

batch?: BatchProof