Template repository for getting started quickly with Foundry and Hardhat in one project
- Use Foundry:
forge install
forge test- Use Hardhat:
npm install || yarn
npx hardhat test- Write / run tests with either Hardhat or Foundry:
forge test || yarn test
# or
npx hardhat test || yarn testhh- Install libraries with Foundry which work with Hardhat.
forge install rari-capital/solmate # Already in this repo, just an exampleWhenever you install new libraries using Foundry, make sure to update your remappings.txt file by running forge remappings > remappings.txt. This is required because we use hardhat-preprocessor and the remappings.txt file to allow Hardhat to resolve libraries you install with Foundry.