Build a Wordle-style game (inspired by the New York Times’ daily WORDLE puzzles) that uses Nillion’s blind computation for comparing player guesses to the secret word of the day. The game will be powered by a Nada program that has two parties: the gamemaker who sets the word of the day, and the player who tries to guess the word with up to 6 attempts.

Screenshot 2024-09-30 at 6.00.36 PM.png

Screenshot 2024-09-30 at 6.03.08 PM.png

Key components:

  1. A blind app - this is the frontend UI where anyone can login with their Nilchain Nillion wallet to authenticate and guess the word of the day in 6 guesses. The blind app is connected to your Wordle Nada program.

  2. The Wordle Nada program compares any player’s guess (converted to ascii) to the real word input by the gamemaker. This Nada program should be stored on the Nillion Testnet.

    1. Gamemaker stores word: “cloud” as [99, 108, 111, 117, 100]

    2. Player guesses the word: “sport” as [115, 112, 111, 114, 116]

    3. Nada program outputs the correct letter for a guess in the right place, a 0 for an incorrect letter

      letter_0 = Integer(0)
      letter_1 = Integer(0)
      letter_2 = Integer(111) 
      letter_3 = Integer(0)
      letter_4 = Integer(0)
      
      return [
            Output(letter_0, "letter_0", party_charlie),
            Output(letter_1, "letter_1", party_charlie),
            Output(letter_2, "letter_2", party_charlie),
            Output(letter_3, "letter_3", party_charlie),
            Output(letter_4, "letter_4", party_charlie)
        ]
      
  3. A mechanism for the gamemaker (you!) to set and store the word of the day (converted to ascii)

Resources

Words of the day

# 10 crypto themed wordles of the day you can use for testing your game

1. Block  
2. Chain  
3. Nodes  
4. Merge  
5. Shard  
6. Cipher  
7. Proof  
8. Stake  
9. Trust  
10. Blind