MerkleProof is a wrapper type over a chain of CommitmentProofs. It demonstrates membership or non-membership for an element or set of elements, verifiable in conjunction with a known commitment root. Proofs should be succinct. MerkleProofs are ordered from leaf-to-root

interface MerkleProofAmino {
    proofs?: CommitmentProofAmino[];
}

Properties

Properties