mirror of
https://github.com/codex-storage/nim-codex.git
synced 2025-01-19 17:30:02 +00:00
e23159b065
* wire in circom backend * should contain leafs * adding circom compad and circuits deps * update windows build * fix windows build * improve test names * move proving defaults to codextypes * remove unnedded inmports and move defaults to codextypes * capture error code on backend failure
5 lines
235 B
Plaintext
5 lines
235 B
Plaintext
pragma circom 2.0.0;
|
|
include "sample_cells.circom";
|
|
// SampleAndProven( maxDepth, maxLog2NSlots, blockTreeDepth, nFieldElemsPerCell, nSamples )
|
|
component main {public [entropy,dataSetRoot,slotIndex]} = SampleAndProve(32, 8, 5, 67, 5);
|