├── .github └── workflows │ └── test.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── foundry.toml ├── script └── CDScript.sol ├── src └── CacheDetector.sol └── test └── CacheDetector.t.sol /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhusson/shim-transient-storage/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhusson/shim-transient-storage/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhusson/shim-transient-storage/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhusson/shim-transient-storage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhusson/shim-transient-storage/HEAD/README.md -------------------------------------------------------------------------------- /foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhusson/shim-transient-storage/HEAD/foundry.toml -------------------------------------------------------------------------------- /script/CDScript.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhusson/shim-transient-storage/HEAD/script/CDScript.sol -------------------------------------------------------------------------------- /src/CacheDetector.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhusson/shim-transient-storage/HEAD/src/CacheDetector.sol -------------------------------------------------------------------------------- /test/CacheDetector.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adhusson/shim-transient-storage/HEAD/test/CacheDetector.t.sol --------------------------------------------------------------------------------