mirror of
https://github.com/logos-storage/logos-storage-proofs-circuits.git
synced 2026-01-02 13:33:07 +00:00
Storage proof circom circuit
See the README in the parent dir for the (draft) specification.
Organization of the circuit code
sample_cells.circom- compute cell indices to sample, and prove those cellssingle_cell.circom- prove a single cellmerkle.circom- Merkle inclusion proof (using our custom Merkle tree convention)extract_bits.circom- extract lower bits of the standard representation of a field elementbinary_compare.circom- compare numbers given in binary representation (the point is that they can be bigger than the field size!)log2.circom- circom code for computing base 2 logarithmmisc.circom- miscellaneous helper funtionsposeidon2_hash.circom- compute Poseidon2 hash with sponge constructionposeidon2_sponge.circom- generic sponge constructionposeidon2_perm.circom- the Poseidon2 permutation
Note: the main component is not included in the above, as it depends on the
parameters. You can use one of the reference input generators to create one;
or look at deprecated/slot_main.circom for an example.