-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 820 Bytes
/
Copy pathpackage.json
File metadata and controls
19 lines (19 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "@prova/circuits",
"version": "0.1.0",
"description": "Prova compliance circuits (Circom + SnarkJS): range + nullifier + KYC-sig.",
"private": true,
"scripts": {
"compile": "mkdir -p build && circom circuits/transfer.circom --r1cs --wasm --sym -l node_modules -o build",
"ptau": "bash scripts/download_ptau.sh",
"setup": "snarkjs groth16 setup build/transfer.r1cs build/pot12_final.ptau build/transfer_0000.zkey",
"contribute": "snarkjs zkey contribute build/transfer_0000.zkey build/transfer_final.zkey --name='dev' -v -e='dev entropy'",
"vkey": "snarkjs zkey export verificationkey build/transfer_final.zkey build/verification_key.json",
"clean": "rm -rf build"
},
"license": "UNLICENSED",
"devDependencies": {
"circomlib": "^2.0.5",
"snarkjs": "^0.7.5"
}
}