Skip to content

Commit

Permalink
Update gen-input file
Browse files Browse the repository at this point in the history
  • Loading branch information
wshino committed Oct 11, 2024
1 parent 69e5fff commit 7c73abd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/circuits/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"publish": "yarn npm publish --access=public",
"test": "NODE_OPTIONS=--max_old_space_size=8192 jest --runInBand --detectOpenHandles --forceExit --verbose tests",
"dev-setup": "NODE_OPTIONS=--max_old_space_size=16384 npx ts-node scripts/dev-setup.ts --output ./build",
"gen-input": "NODE_OPTIONS=--max_old_space_size=8192 npx ts-node scripts/gen_input.ts"
"gen-input": "NODE_OPTIONS=--max_old_space_size=8192 npx ts-node scripts/gen-input.ts"
},
"dependencies": {
"@zk-email/circuits": "6.1.5-nightly.2024-09-16",
Expand Down
4 changes: 2 additions & 2 deletions packages/circuits/scripts/gen-input.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// @ts-ignore
import { program } from 'commander';
import { generateJWT } from '../../helpers/src/jwt'; // JWTを生成する関数のパスを指定
import { generateJWTVerifierInputs } from '../../helpers/src/input-generators'; // 入力を生成する関数のパスを指定
import { generateJWT } from '../../helpers/src/jwt'; // Specify the path to the function that generates JWT
import { generateJWTVerifierInputs } from '../../helpers/src/input-generators'; // Specify the path to the function that generates inputs
import { splitJWT } from "../../helpers/src/utils";
import fs from "fs";
const snarkjs = require("snarkjs");
Expand Down

0 comments on commit 7c73abd

Please sign in to comment.