Skip to content

Commit 23f2680

Browse files
authored
Update INSPIRATION.md
1 parent 5001c83 commit 23f2680

File tree

1 file changed

+8
-44
lines changed

1 file changed

+8
-44
lines changed

hackathons/INSPIRATION.md

+8-44
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ The lack of privacy is consistently brought up as one of the main reasons we are
1212

1313
These projects would be implemented as, or in conjunction with, Aztec contracts:
1414

15-
- **ZK UniSwap frontend -** develop a frontend for our uniswap smart contract found [here](https://github.com/AztecProtocol/aztec-packages/tree/master/noir-projects/noir-contracts/contracts/uniswap_contract)
16-
- **Shielding** - an app that allows users to convert public tokens into a private form, perform an action, and then unshield back into original token. This could build on the existing token contract implementation, see the [tutorial here](https://docs.aztec.network/dev_docs/tutorials/writing_token_contract).
15+
- **ZK Uniswap frontend -** develop a frontend for our uniswap smart contract found [here](https://github.com/AztecProtocol/aztec-packages/tree/master/noir-projects/noir-contracts/contracts/uniswap_contract)
1716
- **ZK stablecoin** - build a stablecoin that allows you to wrap a stablecoin so it can be privately transferred
1817
- **Private lending front end** - you can see an example [here](https://github.com/AztecProtocol/aztec-packages/tree/master/noir-projects/noir-contracts/contracts/lending_contract)
1918
- **ZKollateral** - privately prove assets for collateral or creditworthiness for a loan
@@ -27,13 +26,6 @@ Aztec and Noir are new protocols, so we’re always updating the developer tooli
2726

2827
### Ideas
2928

30-
These projects would be implemented for Noir, but could be used for Aztec contracts as well:
31-
32-
- **IDE language support** - we have some support with VSCode but would love to expand this through IDE features like auto-complete, hover for documentation, go-to function definition/references, etc. You can find our Language Server protocol [here](https://noir-lang.org/docs/nargo/language_server/)
33-
- **Ethereum History API** - trustlessly and optionally privately prove any piece of information that exists on Ethereum (e.g. token ownership, historical prices, protocol interactions, etc.) using Ethereum Storage Proofs in Noir - find example [here](https://github.com/Maddiaa0/noir-storage-proofs-demo)
34-
- **Regex support in Noir** - regular expression (regex) in Noir that provides a mechanism to perform searches, manipulations, and evaluations using regex patterns within the language; more info [here](https://speakerdeck.com/sorasuegami/ethcon-korea-2023-zk-email-on-chain-verification-of-emails-using-zkp)
35-
- **Hash Maps in Noir** - incorporate hash maps into Noir to allow devs to store and manipulate key-value pairs more efficiently
36-
3729
These projects could be done for Noir or Aztec contracts:
3830

3931
- **Boilerplates for more frameworks** - there are [Noir boilerplates](https://github.com/noir-lang/awesome-noir#boilerplates) and [Aztec boilerplates](https://github.com/AztecProtocol/aztec-packages/tree/master/boxes) for a number of popular frameworks already. Consider creating one for your favorite framework if there isn't one yet.
@@ -44,7 +36,7 @@ These projects would be specific to Noir:
4436

4537
### Proving backends
4638

47-
Noir does not compile to a specific proof system, so you can implement an entirely different proving system such as Halo2 or Marlin.
39+
Noir does not compile to a specific proof system, so you can implement an entirely different proving system such as Halo2 or Marlin. You can see what is being worked on [here](https://github.com/noir-lang/awesome-noir#proving-backends).
4840

4941
### Verifiers
5042

@@ -72,18 +64,18 @@ We’re always looking to support applications that utilize privacy and ZK proof
7264
You could try to implement these in vanilla Noir, or as Aztec contracts.
7365

7466
- **zkPatreon** - privately unlock token-gated content by using Ethereum Storage Proofs in Noir
75-
- **zkEmail** - privately prove that some email was received, while hiding any private data in the e-mail, without trusting a centralized server to keep your privacy. Inspired by this [great blog post](https://blog.aayushg.com/posts/zkemail)
76-
- **Privacy Preserving Rewards Protocol** - an app or protocol that rewards participants for doing a specific on-chain action without revealing how much
67+
- **zkEmail** - privately prove that some email was received, while hiding any private data in the e-mail, without trusting a centralized server to keep your privacy. You can use [this library](https://github.com/zkemail/zkemail.nr).
68+
- **Privacy Preserving Rewards Protocol** - an app or protocol that rewards participants for doing a specific on-chain action without revealing how much. This [tutorial](https://docs.aztec.network/tutorials/codealong/contract_tutorials/crowdfunding_contract) may be helpful.
7769

7870
## Gaming 👾
7971

8072
### Ideas
8173

8274
You could try to implement these in vanilla Noir, or as Aztec contracts.
8375

84-
- **ZK Poker**
85-
- **ZK Chess**
86-
- **ZK Scrabble**
76+
- **Poker**
77+
- **Chess**
78+
- **Scrabble**
8779
- **ZK Quests** - players can prove they have achieved a specific action or quest within a game without revealing the quest, preventing spoilers
8880
- **ZK Treasure Hunt** - irl experience that validates a user has found a clue/treasure without revealing their location to other players
8981

@@ -105,32 +97,4 @@ Relevant for Aztec specifically:
10597

10698
## Cool Noir projects
10799

108-
A curated list of existing projects building with Noir
109-
110-
### Authentication
111-
112-
- Anonymous proof of token ownership on Aztec for token-gated access
113-
- [Sequi](https://github.com/sequi-xyz)
114-
- [Cyclone](https://github.com/TalDerei/cyclone)
115-
- [SafeRecover](https://github.com/porco-rosso-j/safe-recovery-noir) - Recovery of ownership of Gnosis Safe accounts
116-
117-
### Gaming
118-
119-
- [Mastermind](https://github.com/vezenovm/mastermind-noir) - Mastermind in Noir
120-
- [BattleZips](https://battlezips.com/) ([Source Code](https://github.com/BattleZips/BattleZips-Noir)) - On-chain Battleship
121-
- [Sudoku, Wordle, and Trivia](https://github.com/ruizehung/Zero-Knowledge-Sudoku-Wordle-Trivia) - Sudoku, Wordle, and Trivia games
122-
- [ZCaptcha](https://github.com/signorecello/zcaptcha) - A ZK version of Captcha
123-
- [Hangman](https://github.com/resurgencelabs/hangman) - Simple implementation of the Hangman game
124-
125-
### Governance
126-
127-
- [MeloCafe](https://github.com/MeloCafe) - Anonymous on-chain voting
128-
- [Nouns Research Sprint](https://github.com/aragonzkresearch/nouns-anonymous-voting) - Anonymous voting research sprint solution with NounsDAO
129-
130-
### Social
131-
132-
- [FruityFriends](https://github.com/guelowrd/fruity-lib) - Various circuits (Proof of Intersection, Proof of Proximity, Proof of Proper Secret) to be used in social applications
133-
134-
### Payments
135-
136-
- [Private token](https://github.com/jat9292/Private-token) - Token with private balances using zkSNARKs and Homomorphic Encryption, inspired by Zeestar and Zether, implemented in Noir (and Rust).
100+
Check the [awesome-noir repo](https://github.com/noir-lang/awesome-noir) for the latest complete list.

0 commit comments

Comments
 (0)