├── .gitignore ├── README.md ├── hardhat.config.js ├── package.json ├── puzzles ├── puzzle_1.json ├── puzzle_10.json ├── puzzle_2.json ├── puzzle_3.json ├── puzzle_4.json ├── puzzle_5.json ├── puzzle_6.json ├── puzzle_7.json ├── puzzle_8.json └── puzzle_9.json ├── src ├── opcodes.js └── play.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | cache/ 2 | node_modules/ 3 | solutions/ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvictorio/evm-puzzles/HEAD/README.md -------------------------------------------------------------------------------- /hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvictorio/evm-puzzles/HEAD/hardhat.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvictorio/evm-puzzles/HEAD/package.json -------------------------------------------------------------------------------- /puzzles/puzzle_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvictorio/evm-puzzles/HEAD/puzzles/puzzle_1.json -------------------------------------------------------------------------------- /puzzles/puzzle_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvictorio/evm-puzzles/HEAD/puzzles/puzzle_10.json -------------------------------------------------------------------------------- /puzzles/puzzle_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvictorio/evm-puzzles/HEAD/puzzles/puzzle_2.json -------------------------------------------------------------------------------- /puzzles/puzzle_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvictorio/evm-puzzles/HEAD/puzzles/puzzle_3.json -------------------------------------------------------------------------------- /puzzles/puzzle_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvictorio/evm-puzzles/HEAD/puzzles/puzzle_4.json -------------------------------------------------------------------------------- /puzzles/puzzle_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvictorio/evm-puzzles/HEAD/puzzles/puzzle_5.json -------------------------------------------------------------------------------- /puzzles/puzzle_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvictorio/evm-puzzles/HEAD/puzzles/puzzle_6.json -------------------------------------------------------------------------------- /puzzles/puzzle_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvictorio/evm-puzzles/HEAD/puzzles/puzzle_7.json -------------------------------------------------------------------------------- /puzzles/puzzle_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvictorio/evm-puzzles/HEAD/puzzles/puzzle_8.json -------------------------------------------------------------------------------- /puzzles/puzzle_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvictorio/evm-puzzles/HEAD/puzzles/puzzle_9.json -------------------------------------------------------------------------------- /src/opcodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvictorio/evm-puzzles/HEAD/src/opcodes.js -------------------------------------------------------------------------------- /src/play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvictorio/evm-puzzles/HEAD/src/play.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fvictorio/evm-puzzles/HEAD/yarn.lock --------------------------------------------------------------------------------