https://github.com/tangle-network/solidity-fixtures
Zero-Knowledge files required for generating proofs against circom.
https://github.com/tangle-network/solidity-fixtures
Last synced: 2 months ago
JSON representation
Zero-Knowledge files required for generating proofs against circom.
- Host: GitHub
- URL: https://github.com/tangle-network/solidity-fixtures
- Owner: tangle-network
- Created: 2022-08-31T21:56:36.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-28T00:35:22.000Z (about 2 years ago)
- Last Synced: 2025-03-30T19:17:30.989Z (12 months ago)
- Size: 21.5 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# solidity-fixtures
Zero-Knowledge files required for generating proofs against circom.
This repository uses DVC to manage large fixtures files and uploads to a public AWS S3 bucket. This allows anyone to fetch the fixtures, while minimizing impact on git size.
### Fetching fixtures from remote storage
`dvc pull`
### Pushing new fixtures to remote storage
After generating new fixtures (likely from `protocol-solidity`), you should run the following steps:
```
dvc add solidity-fixtures
git add -A
git commit
dvc push --remote s3-read-write # This should be done after a PR merge by the creator of the fixtures
```