# Blockchain Bites at EthLatam Remix Challenge ### Remix Challenges are onchain quizzes that use ZK Proofs. ## About Remix Challenges TLDR: A player generates a ZK Proof which is submitted to an onchain contract. The solution stays hidden. When the questions have been correctly answered, a Remixer badge can be minted. ## FAQ - 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 externalNullifier - a number generated from a timestamp. If a different value is used in the nullifier, then a different proof will be generated, but it will still show that the questions were correctly answered. The smart contract used for verifying the proof will remember the nullifier. An address (a user) can only submit a single proof - even if another nullifier is used. And a nullifier can only be used once. So even when the actual proof becomes public, it won't be possible to re-post that specific proof. - 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/remix-project-org/remix-challenges.git` - 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, **verify-solution.ts**, which is in the **scripts** folder. ## The Questions for "Blockchain Bites at EthLatam Remix Challenge" Questions are coming... Remember, input only the letter (A, B, C, or D) of the corresponding correct answer. ## Answering the questions - Starting on line 76 of **verify-solution.ts** (which is in the scripts folder), input the answers to the questions. - In the case of multiple choice questions, only input the letter (A, B, C, or D) 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). In the **Deploy & Run Transaction** plugin, the label under the Environment select box will show Optimism's network ID - **10**. - 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. - After successfully running the publish-solution.ts, please go to: https://rewards.remix.ethereum.eth.limo/