UNPKG

@voctest/circomlibjs

Version:

Javascript library to work with circomlib

14 lines (9 loc) 244 B
import {createCode} from "./mimc7_gencontract.js"; const SEED = "mimc"; let nRounds; if (typeof process.argv[2] != "undefined") { nRounds = parseInt(process.argv[2]); } else { nRounds = 91; } console.log(createCode(SEED, nRounds));