├── .gas-snapshot ├── .github └── workflows │ ├── checks.yml │ └── test.yml ├── .gitignore ├── .gitmodules ├── .prettierignore ├── LICENSE ├── README.md ├── foundry.lock ├── foundry.toml ├── remappings.txt └── test └── MetamorphicContract.t.sol /.gas-snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/tornado-cash-exploit/HEAD/.gas-snapshot -------------------------------------------------------------------------------- /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/tornado-cash-exploit/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/tornado-cash-exploit/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiler files 2 | cache 3 | out 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/tornado-cash-exploit/HEAD/.gitmodules -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib 3 | cache 4 | out 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/tornado-cash-exploit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/tornado-cash-exploit/HEAD/README.md -------------------------------------------------------------------------------- /foundry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/tornado-cash-exploit/HEAD/foundry.lock -------------------------------------------------------------------------------- /foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/tornado-cash-exploit/HEAD/foundry.toml -------------------------------------------------------------------------------- /remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/tornado-cash-exploit/HEAD/remappings.txt -------------------------------------------------------------------------------- /test/MetamorphicContract.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcaversaccio/tornado-cash-exploit/HEAD/test/MetamorphicContract.t.sol --------------------------------------------------------------------------------