You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you so much for open-sourcing Aegis code. I had a few minor issues to test the project. Hope these tips would be helpful for the next person who wants to run Aegis:
npm run build:circuits did not work for me. Instead I used npm run build. Maybe because of npm version mismatch,
Install zsh before running npm run build.
On npx hardhat test I got an error about OwnerShip.r1cs file not found. After a closer look, I got that there are some typos in test/1_setup.test.js. To solve the issues, replace all "OwnerShip" to "Ownership" in test/1_setup.test.js.
Best.
The text was updated successfully, but these errors were encountered:
Thank you so much for open-sourcing Aegis code. I had a few minor issues to test the project. Hope these tips would be helpful for the next person who wants to run Aegis:
npm run build:circuits
did not work for me. Instead I usednpm run build
. Maybe because of npm version mismatch,zsh
before runningnpm run build
.npx hardhat test
I got an error aboutOwnerShip.r1cs
file not found. After a closer look, I got that there are some typos intest/1_setup.test.js
. To solve the issues, replace all "OwnerShip" to "Ownership" intest/1_setup.test.js
.Best.
The text was updated successfully, but these errors were encountered: