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

interface CommitmentProofAmino {
    batch?: BatchProofAmino;
    compressed?: CompressedBatchProofAmino;
    exist?: ExistenceProofAmino;
    nonexist?: NonExistenceProofAmino;
}

Properties