You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
264 B

  1. const mimcGenContract = require("./mimc_gencontract");
  2. const SEED = "mimc";
  3. let nRounds;
  4. if (typeof process.argv[2] != "undefined") {
  5. nRounds = parseInt(process.argv[2]);
  6. } else {
  7. nRounds = 91;
  8. }
  9. console.log(mimcGenContract.createCode(SEED, nRounds));