An open API service indexing awesome lists of open source software.

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

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)