# Remix Challenge: DSRV Builder's House 2023 https://bit.ly/remix-dsrv ## About ### Remix Challenges are onchain quizzes that use ZK Proofs. ### People submitting answers won't reveal their solutions. **When the questions have been correctly answered, a Remixer badge can be minted.** - Why not just code the challenge in Solidity? All the data in the Ethereum blockchain is public and visible. This means that if the challenge is coded in Solidity, the first user who finds the solution will submit that solution in **a transaction** and thus the solution will be visible by everyone. Using a ZK Proof, we only require the user to post a **proof** that the challenge has been successfully completed. - Is it possible to double post the same proof? There are 2 parts to this question - can the same person (address) post the same proof? And can a different address post the same proof? Incorporated in the proof is a special parameter named `nullifier` - a number that a user chooses and inputs when generating the proof. Inputting a different nullifier with the correct answers will generate a different proof. If a user correctly answers the questions and uses "142 as the nullifier when generating the proof, the smart contract will remember that the nullifier `142` has been used. If another number is used, the proof will be different but will still show that the questions were correctly answered. So even when the actual proof becomes public, it won't be possible to re-post that specific proof. An address (a user) can only submit a single proof - even if another `nullifier` is used. And a `nullifier` can only be used once. - If a user knows how to complete a challenge, can he compute with another salt and win the game again? The contract keeps a mapping of all the users that completed the challenge (using `msg.sender`), it is also possible to ask for a signed nullifier instead of directly using `msg.sender` ## Cost The contract for Remix Challenge is on the Optimism chain and posting the proof will cost about 60-110 cents worth of Optimism ETH in gas. ## Setup - Clone the following repository in Remix `https://github.com/yann300/remix-challenges`. - In Remix, to find the **clone** option, go to the hamburger menu at the top of the File Explorer. - Once the cloned repo has been retrieved, open the file, **compute.ts**, which is in the **scripts** folder. ## Updating the Nullifier - On line 54 of compute.ts, choose a random number for the nullifier. Replace the example nullifier. ## The Questions for Remix Challenge - DSRV Builder's House 2023 1. What does the nullifier do? **A:** Adds a unique identifier to the proof **B:** Cancels the "toxic waste" in the proof **C:** Makes the circuit faster 2. What is the language that this Remix Challenge ZK Proof is written in? **A:** Zokrates **B:** Circom **C:** Huff **D:** Solidity 3. To clone a repo in Remix, you go to: **A:** The File Explorer **B:** Deploy & Run Transactions module **C:** The ZK Proof module 4. If you try to submit a proof in Remix Challenge with a wrong answer, what happens? **A:** The authorities are notified and your makgeolli tastes nasty **B:** The proof doesn't generate **C:** A loud beeping sound comes out of your computer Remember, input only the letter (A, B, C, or D) of the corresponding correct answer. ## Answering the questions - Starting on line 56 of compute.ts, input the answers to the questions. - In the case of multiple choice questions, only input the letter (A, B, or C) of the corresponding correct answer. - Run the script by either right-clicking on the script in the File Explorer or clicking on the green play button. - If the program executes correctly, you have successfully answered the 4 questions. - In Remix's terminal, you'll see a log of the proof. The script will save this proof in a file in the folder named **generated**. - **If you have not answered the questions correctly**, the proof will NOT be generated and the file `generated/proof.json` will not be created. - This proof can be used in a **verifier** to prove that you found the 4 values. By doing so, only the proof needs to be shared, you don't need to share the 4 values, but everyone can be certain that you know these values. - Go to the next steps. ## Mint a Remixer Badge using the generated proof - Switch to the Optimism network. Make sure that in the Deploy & Run plugin, you are connected to Optimism and that your browser wallet (often MetaMask) is also connected there and that you have enough ETH to pay for the minting (usually between $0.40 and $1.00 USD). - Open the file scripts/publish-solution.ts. - This script will use the proof generated in the previous section `generated/proof.json` for calling the function `publishChallenge` in the Remix Rewards contract. - Run the script. - Approve the transaction for publishing the solution. - Once the solution has been published head to https://rewards.remix.ethereum.eth.limo to see the newly created badge.