Foundry-based template for developing Solidity smart contracts used by Vac
Go to file
Paul Razvan Berg af8aec11d4
forge install: prb-math
v3.2.0
2023-01-23 12:54:01 +02:00
.github ci: add fuzz seed to avoid burning rpc requests 2023-01-18 18:10:48 +02:00
.vscode feat: commit VSCode settings 2023-01-23 12:38:32 +02:00
.yarn build: upgrade to yarn v3.2.4 2022-10-30 18:39:19 +02:00
lib forge install: prb-math 2023-01-23 12:54:01 +02:00
script feat: initial commit 2022-07-17 21:57:09 +03:00
src refactor: substitute "forge fmt" for "prettier-plugin-solidity" 2023-01-03 21:18:14 +02:00
test ci: expose env vars in GitHub workflow 2023-01-17 19:59:49 +02:00
.commitlintrc.yml feat: initial commit 2022-07-17 21:57:09 +03:00
.editorconfig chore: fix indenting for *.sol in .editorconfig 2022-09-15 00:57:35 +02:00
.env.example test: add Ethereum Mainnet fork test 2023-01-17 19:49:14 +02:00
.gitignore chore: git ignore "*.html" and "lcov.info" files 2023-01-02 13:54:45 +02:00
.gitmodules forge install: prb-math 2023-01-23 12:54:01 +02:00
.lintstagedrc.yml chore: do not run Prettier over "*.sol" files 2023-01-04 23:31:44 +02:00
.prettierignore feat: initial commit 2022-07-17 21:57:09 +03:00
.prettierrc.yml style: add "tabWidth" Prettier override for Solidity 2023-01-19 16:18:22 +02:00
.solhint.json test: add fuzz test 2023-01-07 11:48:58 +02:00
.solhintignore feat: initial commit 2022-07-17 21:57:09 +03:00
.yarnrc.yml chore: surround values with double quotes in ".yarnrc.yml" 2022-11-28 13:29:02 +02:00
LICENSE.md chore: update copyright year in license 2023-01-01 13:26:12 +02:00
README.md docs: capitalize GitHub username 2023-01-16 13:40:22 +02:00
foundry.toml test: add Ethereum Mainnet fork test 2023-01-17 19:49:14 +02:00
package.json chore: add more "fmt" rules in Foundry config 2023-01-03 22:49:02 +02:00
remappings.txt chore: add "src" to remappings 2022-11-20 16:34:27 +02:00
yarn.lock refactor: substitute "forge fmt" for "prettier-plugin-solidity" 2023-01-03 21:18:14 +02:00

README.md

Foundry Template Open in Gitpod Github Actions Foundry License: MIT

A Foundry-based template for developing Solidity smart contracts, with sensible defaults.

What's Inside

  • Forge: compile, test, fuzz, debug and deploy smart contracts
  • PRBTest: modern collection of testing assertions and logging utilities
  • Forge Std: collection of helpful contracts and cheatcodes for testing
  • Solhint: code linter
  • Prettier Plugin Solidity: code formatter

Getting Started

Click the Use this template button at the top of the page to create a new repository with this repo as the initial state.

Or, if you prefer to install the template manually:

forge init my-project --template https://github.com/PaulRBerg/foundry-template
cd my-project
yarn install # install solhint and prettier and other goodies

If this is your first time with Foundry, check out the installation instructions.

Features

This template builds upon the frameworks and libraries mentioned above, so for details about their specific features, please consult their respective documentations.

For example, for Foundry, you can refer to the Foundry Book. You might be in particular interested in reading the Writing Tests guide.

Sensible Defaults

This template comes with sensible default configurations in the following files:

├── .commitlintrc.yml
├── .editorconfig
├── .gitignore
├── .prettierignore
├── .prettierrc.yml
├── .solhintignore
├── .solhint.json
├── .yarnrc.yml
├── foundry.toml
└── remappings.txt

VSCode Integration

This template is IDE agnostic, but for the best user experience, you may want to use it in VSCode with Juan Blanco's Solidity extension.

For guidance on how to integrate a Foundry project in VSCode, please refer to this guide.

GitHub Actions

This template comes with GitHub Actions pre-configured. Your contracts will be linted and tested on every push and pull request made to the main branch.

You can edit the CI script in .github/workflows/ci.yml.

Conventional Commits

This template enforces the Conventional Commits standard for git commit messages. This is a lightweight convention that creates an explicit commit history, which makes it easier to write automated tools on top of.

Git Hooks

This template uses Husky to run automated checks on commit messages, and Lint Staged to automatically format the code with Prettier when making a git commit.

Writing Tests

To write a new test contract, you start by importing PRBTest and inherit from it in your test contract. PRBTest comes with a pre-instantiated cheatcodes environment accessible via the vm property. You can also use console.log, whose logs you can see in the terminal output by adding the -vvvv flag.

This template comes with an example test contract Foo.t.sol.

Usage

Here's a list of the most frequently needed commands.

Build

Build the contracts:

$ forge build

Clean

Delete the build artifacts and cache directories:

$ forge clean

Compile

Compile the contracts:

$ forge build

Coverage

Get a test coverage report:

$ forge coverage

Deploy

Deploy to Anvil:

$ forge script script/Foo.s.sol --broadcast --fork-url http://localhost:8545

For instructions on how to deploy to a testnet or mainnet, check out the Solidity Scripting tutorial.

Format

Format the contracts:

$ forge fmt

Gas Usage

Get a gas report:

$ forge test --gas-report

Lint

Lint the contracts:

$ yarn lint

Test

Run the tests:

$ forge test

Notes

  1. Foundry piggybacks off git submodules to manage dependencies. There's a guide about how to work with dependencies in the book.
  2. You don't have to create a .env file, but filling in the environment variables may be useful when debugging and testing against a mainnet fork.

License

MIT © Paul Razvan Berg