Foundry (dapptools-style) property-based tests for ERC4626 standard conformance.
You can read our post on "Generalized property tests for ERC4626 vaults."
- Test suites for checking if the given ERC4626 implementation satisfies the standard requirements.
- Dapptools-style property-based tests for fuzzing or symbolic execution testing.
- Tests that are independent from implementation details, thus applicable for any ERC4626 vaults.
- It does NOT test implementation-specific details, e.g., how to generate and distribute yields, how to compute the share price, etc.
-
Round-trip properties: no one can make a free profit by depositing and immediately withdrawing back and forth.
-
Functional correctness: the
deposit(),mint(),withdraw(), andredeem()functions update the balance and allowance properly. -
The
preview{Deposit,Redeem}()functions MUST NOT over-estimate the exact amount.1
- The
preview{Mint,Withdraw}()functions MUST NOT under-estimate the exact amount.2
-
The
convertTo{Shares,Assets}functions “MUST NOT show any variations depending on the caller.” -
The
asset(),totalAssets(), andmax{Deposit,Mint,Withdraw,Redeem}()functions “MUST NOT revert.”
Step 0: Install foundry and add forge-std in your vault repo:
$ curl -L https://foundry.paradigm.xyz | bash
$ cd /path/to/your-erc4626-vault
$ forge install foundry-rs/forge-stdStep 1: Add this erc4626-tests as a dependency to your vault:
$ cd /path/to/your-erc4626-vault
$ forge install a16z/erc4626-testsStep 2: Extend the abstract test contract ERC4626Test with your own custom vault setup method, for example:
// SPDX-License-Identifier: AGPL-3.0
pragma solidity >=0.8.0 <0.9.0;
import "erc4626-tests/ERC4626.test.sol";
import { ERC20Mock } from "/path/to/mocks/ERC20Mock.sol";
import { ERC4626Mock } from "/path/to/mocks/ERC4626Mock.sol";
contract ERC4626StdTest is ERC4626Test {
function setUp() public override {
_underlying_ = address(new ERC20Mock("Mock ERC20", "MERC20", 18));
_vault_ = address(new ERC4626Mock(ERC20Mock(__underlying__), "Mock ERC4626", "MERC4626"));
_delta_ = 0;
_vaultMayBeEmpty = false;
_unlimitedAmount = false;
_skipRoundTripShares = false;
}
}Specifically, set the state variables as follows:
_vault_: the address of your ERC4626 vault._underlying_: the address of the underlying asset of your vault. Note that the defaultsetupVault()andsetupYield()methods ofERC4626Testassume that it implementsmint(address to, uint value)andburn(address from, uint value). You can override the setup methods with your own if suchmint()andburn()are not implemented._delta_: the maximum approximation error size to be passed toassertApproxEqAbs(). It must be given as an absolute value (not a percentage) in the smallest unit (e.g., Wei or Satoshi). Note that all the tests are expected to pass with__delta__ == 0as long as your vault follows the preferred rounding direction as specified in the standard. If your vault doesn't follow the preferred rounding direction, you can set__delta__to a reasonable size of rounding errors where the adversarial profit of exploiting such rounding errors stays sufficiently small compared to the gas cost. (You can read our post for more about the adversarial profit.)_vaultMayBeEmpty: when set to false, fuzz inputs that empties the vault are ignored._unlimitedAmount: when set to false, fuzz inputs are restricted to the currently available amount from the caller. Limiting the amount can speed up fuzzing, but may miss some edge cases._skipRoundTripShares: when set to true, shares inequality assertions in round trip properties are skipped. This is useful for testing vaults where shares comparison may not yield expected results due to implementation-specific behavior (see issue #13 for examples).
Step 3: Run forge test
$ forge test
Here are some examples of these property tests in use:
- OpenZeppelin ERC4626 Test
- MetaMorpho Vault Test
- Snekmate ERC4626 Test
- Yearn Tokenized Strategy Test
- Aave Umbrella StakeToken Test
More examples can be found in other projects.
These smart contracts are being provided as is. No guarantee, representation or warranty is being made, express or implied, as to the safety or correctness of the user interface or the smart contracts. They have not been audited and as such there can be no assurance they will work as intended, and users may experience delays, failures, errors, omissions or loss of transmitted information. THE SMART CONTRACTS CONTAINED HEREIN ARE FURNISHED AS IS, WHERE IS, WITH ALL FAULTS AND WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING ANY WARRANTY OF MERCHANTABILITY, NON-INFRINGEMENT OR FITNESS FOR ANY PARTICULAR PURPOSE. Further, use of any of these smart contracts may be restricted or prohibited under applicable law, including securities laws, and it is therefore strongly advised for you to contact a reputable attorney in any jurisdiction where these smart contracts may be accessible for any questions or concerns with respect thereto. Further, no information provided in this repo should be construed as investment advice or legal advice for any particular facts or circumstances, and is not meant to replace competent counsel. a16z is not liable for any use of the foregoing, and users should proceed with caution and use at their own risk. See a16z.com/disclosures for more info.