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
277 B

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