This commit is contained in:
Dmitriy Ryajov 2023-03-20 19:13:15 -06:00
parent 688576cd2c
commit f52233c731
No known key found for this signature in database
GPG Key ID: DA8C680CE7C657A4
3 changed files with 9132 additions and 0 deletions

View File

@ -13,6 +13,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Cache circom
id: cache-circom
uses: actions/cache@v3
@ -23,6 +27,7 @@ jobs:
key: ${{ runner.os }}-circom-${{ hashFiles('./scripts/install-circom.sh') }}
- name: Install circom if not cached
run: sh ./scripts/install-circom.sh
- run: npm ci
- name: Build circuits
run: sh ./scripts/circuit-prep.sh
- name: Run the tests

9106
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

21
package.json Normal file
View File

@ -0,0 +1,21 @@
{
"name": "codex-zk",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"author": "",
"license": "ISC",
"dependencies": {
"@zk-kit/protocols": "^1.11.1",
"chai-as-promised": "^7.1.1",
"circom_tester": "^0.0.19",
"circomlib": "^2.0.5",
"circomlibjs": "^0.0.8",
"merkletreejs": "^0.3.9",
"mocha": "^10.1.0",
"snarkjs": "^0.5.0"
}
}