├── .github └── workflows │ └── test.yml ├── .gitignore ├── .gitmodules ├── foundry.toml ├── script └── Deploy.s.sol ├── src └── Challenge.sol └── test └── Solution.t.sol /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockelmore/MiniMutant/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockelmore/MiniMutant/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockelmore/MiniMutant/HEAD/.gitmodules -------------------------------------------------------------------------------- /foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockelmore/MiniMutant/HEAD/foundry.toml -------------------------------------------------------------------------------- /script/Deploy.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockelmore/MiniMutant/HEAD/script/Deploy.s.sol -------------------------------------------------------------------------------- /src/Challenge.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockelmore/MiniMutant/HEAD/src/Challenge.sol -------------------------------------------------------------------------------- /test/Solution.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brockelmore/MiniMutant/HEAD/test/Solution.t.sol --------------------------------------------------------------------------------