├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── README.md ├── foundry.lock ├── foundry.toml ├── script └── Deploy.s.sol ├── src └── Counter.sol └── test └── Counter.t.sol /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/foundry-template/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/foundry-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/foundry-template/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/foundry-template/HEAD/README.md -------------------------------------------------------------------------------- /foundry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/foundry-template/HEAD/foundry.lock -------------------------------------------------------------------------------- /foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/foundry-template/HEAD/foundry.toml -------------------------------------------------------------------------------- /script/Deploy.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/foundry-template/HEAD/script/Deploy.s.sol -------------------------------------------------------------------------------- /src/Counter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/foundry-template/HEAD/src/Counter.sol -------------------------------------------------------------------------------- /test/Counter.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScopeLift/foundry-template/HEAD/test/Counter.t.sol --------------------------------------------------------------------------------