Skip to content

Commit

Permalink
Merge pull request #8 from JetonDAO/implement-zk-deck
Browse files Browse the repository at this point in the history
Implement zk deck
  • Loading branch information
arssly authored Sep 9, 2024
2 parents db81e7a + e9228d8 commit 85bf65a
Show file tree
Hide file tree
Showing 34 changed files with 8,036 additions and 4,817 deletions.
9 changes: 7 additions & 2 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,20 @@ runs:
- name: Cache Turbo Build Setup
uses: actions/cache@v4
with:
path: .turbo
path: |
~/.cargo
.turbo
key: ${{ runner.os }}-release-job-${{ github.sha }}
restore-keys: |
${{ runner.os }}-release-job-
- name: Insall circom
shell: bash
run: cargo install --git https://github.com/iden3/circom.git --tag v2.1.9
- name: Setup Node.js Environment
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- name: Install Dependencies
shell: bash
run: npm install
run: npm ci
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,17 @@ Make sure you have the correct versions of Node.js and npm installed:
- **Node.js**: v20.16 or later
- **npm**: v10.8 or later

You can use [NVM](https://github.com/nvm-sh/nvm) to install the required version of node and npm.
You can use [NVM](https://github.com/nvm-sh/nvm) to install the required version
of node and npm.

Also you need rustc and cargo install. It is recommended to use
[rustup](https://rustup.rs/) to install them.

After that you need to also install circom using:

```shell
cargo install --git https://github.com/iden3/circom.git --tag v2.1.9
```

### Cloning the Repository

Expand Down
Loading

0 comments on commit 85bf65a

Please sign in to comment.