mirror of
https://github.com/dl-solarity/hardhat-zkit.git
synced 2026-05-01 03:00:04 -04:00
* Feature/plonk (#47) * Add base plonk implementation * Update doc comments * Fix Reporter logs * Add CircuitZKitBuilder class * Small fixes * Fix multiple ploring systems user flow * Fix outdated subtask params * added getPlonkConstraintsNumber function * Add unit tests * Update README file * ptauId calculation fix * fixed ptauId calculation for different proving systems * quick readme fix --------- Co-authored-by: mllwchrry <mariia.zhvanko@gmail.com> Co-authored-by: Artem Chystiakov <artem.ch31@gmail.com> * Update zktype version * Circom 2.2.0 (#53) * updated latest supported Circom version to 2.2.0 * fixed unsupported versions test * fixed platform-specific test * restricted bus usage * fixed error message * update readme * Fix rename logic for the cpp Makefile * Update version --------- Co-authored-by: Oleg Komendant <44612825+Hrom131@users.noreply.github.com> Co-authored-by: mllwchrry <mariia.zhvanko@gmail.com> Co-authored-by: Oleh Komendant <oleg02kom@gmail.com>
18 lines
365 B
TypeScript
18 lines
365 B
TypeScript
import { CompileFlags, SetupContributionSettings } from "../src/types/core";
|
|
|
|
export const defaultCompileFlags: CompileFlags = {
|
|
r1cs: true,
|
|
wasm: true,
|
|
sym: true,
|
|
c: false,
|
|
json: false,
|
|
O0: false,
|
|
O1: true,
|
|
O2: false,
|
|
};
|
|
|
|
export const defaultContributionSettings: SetupContributionSettings = {
|
|
provingSystems: ["groth16"],
|
|
contributions: 2,
|
|
};
|