https://github.com/fomoweth/foundry-template
A starter template for Solidity development using Foundry
https://github.com/fomoweth/foundry-template
ethereum evm forge foundry smart-contracts solidity template
Last synced: about 1 month ago
JSON representation
A starter template for Solidity development using Foundry
- Host: GitHub
- URL: https://github.com/fomoweth/foundry-template
- Owner: fomoweth
- Created: 2025-10-04T12:49:44.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-10-04T13:52:08.000Z (8 months ago)
- Last Synced: 2025-10-04T15:27:07.374Z (8 months ago)
- Topics: ethereum, evm, forge, foundry, smart-contracts, solidity, template
- Language: Solidity
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Foundry Template
A production-ready Foundry template with comprehensive utilities for multi-chain smart contract development, testing, and deployment.
## Usage
Click the [`Use this template`](https://github.com/fomoweth/foundry-template/generate) button at the top of the page to
create a new repository with this repo as the initial state. Or:
**Forge**
```bash
forge init my-project --template fomoweth/foundry-template
cd my-project
forge install
```
**Git Clone**
```bash
git clone https://github.com/fomoweth/foundry-template.git
cd foundry-template
forge install
```
## Resources
- [Solidity Documentation](https://docs.soliditylang.org/)
- [Foundry Book](https://book.getfoundry.sh/)
- [Foundry GitHub](https://github.com/foundry-rs/foundry)