package tezos-protocol-016-PtMumbai
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=7062cd57addd452852598a2214ade393130efa087b99068d53713bdf912b3680
sha512=08e4091144a03ce3c107fb91a66501bd8b65ca3278917c455a2eaac6df3e108ade63f6ab8340a4bb152d60f404326e464d0ec95d26cafe8e82f870465d24a5fc
doc/tezos-protocol-016-PtMumbai.raw/Tezos_raw_protocol_016_PtMumbai/Sc_rollup_reveal_hash/index.html
Module Tezos_raw_protocol_016_PtMumbai.Sc_rollup_reveal_hash
Source
The type of a reveal hash.
The hashing schemes supported by the reveal hash.
A Map module for storing reveal-hash-indexed values.
size ~scheme
returns the size of reveal hashes using the scheme
specified in input.
zero ~scheme
returns the reveal hash corresponding to the zero hash for the scheme
specified in input.
Formatting function for reveal-hashes.
equal hash1 hash2
checks if the two reveal-hashes hash1
and hash2
are equal. This function must preserve the equality of individual supported hashing schemes. If hash1
and hash2
are hashes obtained from the same supported hashing scheme, then the equal
function from that hashing scheme is used to determine whether they are equivalent. Otherwise, they are different.
compare hash1 hash2
compares the values of the reveal hashes hash1
and hash2
. This function must preserve the ordering of individual supported hashing scheme. If hash1
and hash2
are reveal-hashes obtained from the same hashing scheme, then compare hash1 hash2
should return the same result of the compare function exposed by the hash module corresponding to their hashing scheme.