MerklePath is the path used to verify commitment proofs, which can be an arbitrary structured object (defined by a commitment type). MerklePath is represented from root-to-leaf

interface MerklePath {
    keyPath: string[];
}

Properties

Properties

keyPath: string[]