├── .gitignore ├── .gitmodules ├── README.md ├── foundry.toml └── src ├── Game.sol ├── Solution.sol └── test └── Solution.t.sol /.gitignore: -------------------------------------------------------------------------------- 1 | cache/ 2 | out/ 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmerkleplant/Hats-Finance-Game-Solution/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmerkleplant/Hats-Finance-Game-Solution/HEAD/README.md -------------------------------------------------------------------------------- /foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmerkleplant/Hats-Finance-Game-Solution/HEAD/foundry.toml -------------------------------------------------------------------------------- /src/Game.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmerkleplant/Hats-Finance-Game-Solution/HEAD/src/Game.sol -------------------------------------------------------------------------------- /src/Solution.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmerkleplant/Hats-Finance-Game-Solution/HEAD/src/Solution.sol -------------------------------------------------------------------------------- /src/test/Solution.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmerkleplant/Hats-Finance-Game-Solution/HEAD/src/test/Solution.t.sol --------------------------------------------------------------------------------