├── .DS_Store ├── .gitignore ├── README.md ├── allPuzzles ├── .DS_Store ├── 1_easyPuzzles │ ├── puzzle_1.json │ ├── puzzle_2.json │ ├── puzzle_3.json │ ├── puzzle_4.json │ └── puzzle_5.json ├── 2_mediumPuzzles │ ├── puzzle_1.json │ ├── puzzle_2.json │ ├── puzzle_3.json │ ├── puzzle_4.json │ └── puzzle_5.json └── 3_hardPuzzles │ ├── puzzle_1.json │ ├── puzzle_2.json │ ├── puzzle_3.json │ ├── puzzle_4.json │ └── puzzle_5.json ├── hardhat.config.js ├── package.json └── src ├── opcodes.js └── play.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaryab2000/decipher_EVM_Puzzles/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaryab2000/decipher_EVM_Puzzles/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaryab2000/decipher_EVM_Puzzles/HEAD/README.md -------------------------------------------------------------------------------- /allPuzzles/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaryab2000/decipher_EVM_Puzzles/HEAD/allPuzzles/.DS_Store -------------------------------------------------------------------------------- /allPuzzles/1_easyPuzzles/puzzle_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaryab2000/decipher_EVM_Puzzles/HEAD/allPuzzles/1_easyPuzzles/puzzle_1.json -------------------------------------------------------------------------------- /allPuzzles/1_easyPuzzles/puzzle_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaryab2000/decipher_EVM_Puzzles/HEAD/allPuzzles/1_easyPuzzles/puzzle_2.json -------------------------------------------------------------------------------- /allPuzzles/1_easyPuzzles/puzzle_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaryab2000/decipher_EVM_Puzzles/HEAD/allPuzzles/1_easyPuzzles/puzzle_3.json -------------------------------------------------------------------------------- /allPuzzles/1_easyPuzzles/puzzle_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaryab2000/decipher_EVM_Puzzles/HEAD/allPuzzles/1_easyPuzzles/puzzle_4.json -------------------------------------------------------------------------------- /allPuzzles/1_easyPuzzles/puzzle_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaryab2000/decipher_EVM_Puzzles/HEAD/allPuzzles/1_easyPuzzles/puzzle_5.json -------------------------------------------------------------------------------- /allPuzzles/2_mediumPuzzles/puzzle_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaryab2000/decipher_EVM_Puzzles/HEAD/allPuzzles/2_mediumPuzzles/puzzle_1.json -------------------------------------------------------------------------------- /allPuzzles/2_mediumPuzzles/puzzle_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaryab2000/decipher_EVM_Puzzles/HEAD/allPuzzles/2_mediumPuzzles/puzzle_2.json -------------------------------------------------------------------------------- /allPuzzles/2_mediumPuzzles/puzzle_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaryab2000/decipher_EVM_Puzzles/HEAD/allPuzzles/2_mediumPuzzles/puzzle_3.json -------------------------------------------------------------------------------- /allPuzzles/2_mediumPuzzles/puzzle_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaryab2000/decipher_EVM_Puzzles/HEAD/allPuzzles/2_mediumPuzzles/puzzle_4.json -------------------------------------------------------------------------------- /allPuzzles/2_mediumPuzzles/puzzle_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaryab2000/decipher_EVM_Puzzles/HEAD/allPuzzles/2_mediumPuzzles/puzzle_5.json -------------------------------------------------------------------------------- /allPuzzles/3_hardPuzzles/puzzle_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaryab2000/decipher_EVM_Puzzles/HEAD/allPuzzles/3_hardPuzzles/puzzle_1.json -------------------------------------------------------------------------------- /allPuzzles/3_hardPuzzles/puzzle_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaryab2000/decipher_EVM_Puzzles/HEAD/allPuzzles/3_hardPuzzles/puzzle_2.json -------------------------------------------------------------------------------- /allPuzzles/3_hardPuzzles/puzzle_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaryab2000/decipher_EVM_Puzzles/HEAD/allPuzzles/3_hardPuzzles/puzzle_3.json -------------------------------------------------------------------------------- /allPuzzles/3_hardPuzzles/puzzle_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaryab2000/decipher_EVM_Puzzles/HEAD/allPuzzles/3_hardPuzzles/puzzle_4.json -------------------------------------------------------------------------------- /allPuzzles/3_hardPuzzles/puzzle_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaryab2000/decipher_EVM_Puzzles/HEAD/allPuzzles/3_hardPuzzles/puzzle_5.json -------------------------------------------------------------------------------- /hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaryab2000/decipher_EVM_Puzzles/HEAD/hardhat.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaryab2000/decipher_EVM_Puzzles/HEAD/package.json -------------------------------------------------------------------------------- /src/opcodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaryab2000/decipher_EVM_Puzzles/HEAD/src/opcodes.js -------------------------------------------------------------------------------- /src/play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zaryab2000/decipher_EVM_Puzzles/HEAD/src/play.js --------------------------------------------------------------------------------