Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/z-kaggle/ZKaggle
🏆 Finalist of ETHGlobal FVM Space Warp Hack
https://github.com/z-kaggle/ZKaggle
Last synced: 8 days ago
JSON representation
🏆 Finalist of ETHGlobal FVM Space Warp Hack
- Host: GitHub
- URL: https://github.com/z-kaggle/ZKaggle
- Owner: z-kaggle
- License: gpl-3.0
- Created: 2023-02-02T17:27:52.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-04T05:21:31.000Z (over 1 year ago)
- Last Synced: 2024-08-03T01:13:45.074Z (4 months ago)
- Language: Solidity
- Homepage: https://zkaggle.vercel.app
- Size: 8.97 MB
- Stars: 25
- Watchers: 0
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-zkml - ZKaggle - [@socathie](https://twitter.com/drCathieSo_eth) (2023) (Codebases / Articles and podcasts)
README
# ZKaggle
Bounty platform for incentivized decentralized computing on FVMDeployed on Hyperspace testnet: https://zkaggle.vercel.app/
## Project Description
This project makes decentralized computing not only available for storage providers, but for everyone who wants to share their processing power and/or monetize their proprietary models. Our browser-based frontend allows bounty providers to upload their data to Filecoin and set up a computing task with bounty rewards. Bounty hunters can browse all open bounties, download the data onto their local machine, and compute. When they are ready to submit, they construct a ZK proof to submit the hashed computed results on-chain. Bounty providers will then review the submission and release the bounty. Last but not least, bounty hunters can claim their rewards by providing the pre-image of the hashed computed results. ZKP serves two purposes here: (1) to keep the proof of computation succinct, and (2) to allow bounty hunters to monetize private models with credibility.## How it's Made
We use RainbowKit + wagmi + Next.js to build the frontend. Lighthouse SDK is used to handle file uploading and encryption. It has helped such that we do not need to handle storage deals by ourselves. Also, files that bounty hunters upload can only be viewed by bounty providers, but not by anyone else that hasn’t paid. We used the FEVM hardhat kit to develop our smart contracts. The ZKP tech stack consists of circom, which is the domain-specific language for writing ZKP circuits, and snarkjs, which is the library to produce ZK proofs from circuits, used both locally and on the browser.Presentation deck linked [here](https://www.canva.com/design/DAFZaRE7dgA/OSL5YjvS_jyt1WvqzEB8GQ/view?utm_content=DAFZaRE7dgA&utm_campaign=designshare&utm_medium=link&utm_source=publishsharelink) for more information.