Size is a credit marketplace with unified liquidity across maturities.
Target networks:
- Ethereum mainnet
- Base
- 2024-12-10 - ChainDefenders
- 2024-11-13 - Custodia Security
- 2024-06-10 - Code4rena
- 2024-06-08 - Spearbit
- 2024-03-26 - Solidified
- 2024-03-19 - LightChaserV3
For bug reports, please refer to our Bug Bounty Program
The architecture of Size v2 was inspired by dYdX v2, with the following design goals:
- Upgradeability
- Modularity
- Overcome EIP-170's contract code size limit of 24kb
- Maintaining the protocol invariants after each user interaction ("FREI-PI" pattern)
For that purpose, the contract is deployed behind an UUPS-Upgradeable proxy, and contains a single entrypoint, Size.sol
. External libraries are used, and a single State storage
variable is passed to them via delegatecall
s. All user-facing functions have the same pattern:
state.validateFunction(params);
state.executeFunction(params);
state.validateInvariant(params);
The Multicall
pattern is also available to allow users to perform a sequence of multiple actions, such as depositing borrow tokens, liquidating an underwater borrower, and withdrawing all liquidated collateral. Note: in order to accept ether deposits through multicalls, all user-facing functions have the payable
modifier, and deposit
always uses address(this).balance
to wrap ether. This means leftover amounts, if sent forcibly, are always credited to the depositor.
Additional safety features were employed, such as different levels of Access Control (ADMIN, PAUSER_ROLE, KEEPER_ROLE, BORROW_RATE_UPDATER_ROLE), and Pause.
In order to address donation and reentrancy attacks, the following measures were adopted:
- No withdraws of native ether, only wrapped ether (WETH)
- Underlying borrow and collateral tokens, such as USDC and WETH, are converted 1:1 into deposit tokens via
deposit
, which mintsszaUSDC
andszWETH
, and received back viawithdraw
, which burns deposit tokens 1:1 in exchange for the underlying tokens.
All mathematical operations are implemented with explicit rounding (mulDivUp
or mulDivDown
) using Solady's FixedPointMathLib. Whenever a taker-maker operation occurs, all rounding tries to favor the maker, who is the passive party. In some generic situations, such as in yield curve calculations, the rounding is always in one direction.
Decimal amounts are preserved until a conversion is necessary:
- USDC/aUSDC: 6 decimals
- WETH/szETH: 18 decimals
- szDebt: same as borrow token
- Price feeds: 18 decimals
All percentages are expressed in 18 decimals. For example, a 150% liquidation collateral ratio is represented as 1500000000000000000.
A contract that provides the price of ETH in terms of USDC in 18 decimals. For example, a price of 3327.39 ETH/USDC is represented as 3327390000000000000000.
In order to set the current market average value of USDC variable borrow rates, we perform an off-chain calculation on Aave's rate, convert it to 18 decimals, and store it in the Size contract. For example, a rate of 2.49% on Aave v3 is represented as 24900000000000000. The admin can disable this feature by setting the stale interval to zero. If the oracle information is stale, orders relying on the variable rate feed cannot be matched.
forge install
forge test
yarn coverage
File | % Lines | % Statements | % Branches | % Funcs |
---|---|---|---|---|
src/Size.sol | 96.77% (60/62) | 97.01% (65/67) | 100.00% (3/3) | 95.65% (22/23) |
src/SizeView.sol | 100.00% (31/31) | 100.00% (50/50) | 100.00% (3/3) | 100.00% (22/22) |
src/libraries/AccountingLibrary.sol | 96.34% (79/82) | 96.88% (93/96) | 86.96% (20/23) | 100.00% (12/12) |
src/libraries/CapsLibrary.sol | 91.67% (11/12) | 93.33% (14/15) | 75.00% (3/4) | 100.00% (3/3) |
src/libraries/DepositTokenLibrary.sol | 100.00% (10/10) | 100.00% (10/10) | 100.00% (0/0) | 100.00% (4/4) |
src/libraries/LoanLibrary.sol | 96.77% (30/31) | 97.83% (45/46) | 93.33% (14/15) | 100.00% (8/8) |
src/libraries/Math.sol | 100.00% (17/17) | 100.00% (25/25) | 100.00% (5/5) | 100.00% (6/6) |
src/libraries/Multicall.sol | 100.00% (10/10) | 100.00% (16/16) | 100.00% (0/0) | 100.00% (1/1) |
src/libraries/OfferLibrary.sol | 100.00% (10/10) | 100.00% (18/18) | 100.00% (3/3) | 100.00% (4/4) |
src/libraries/RiskLibrary.sol | 96.00% (24/25) | 97.83% (45/46) | 83.33% (5/6) | 100.00% (9/9) |
src/libraries/YieldCurveLibrary.sol | 100.00% (35/35) | 100.00% (57/57) | 100.00% (15/15) | 100.00% (4/4) |
src/libraries/actions/BuyCreditLimit.sol | 100.00% (5/5) | 100.00% (5/5) | 100.00% (1/1) | 100.00% (2/2) |
src/libraries/actions/BuyCreditMarket.sol | 100.00% (52/52) | 100.00% (63/63) | 100.00% (16/16) | 100.00% (3/3) |
src/libraries/actions/Claim.sol | 100.00% (11/11) | 100.00% (16/16) | 100.00% (2/2) | 100.00% (2/2) |
src/libraries/actions/Compensate.sol | 100.00% (48/48) | 100.00% (53/53) | 100.00% (13/13) | 100.00% (2/2) |
src/libraries/actions/Deposit.sol | 100.00% (23/23) | 100.00% (24/24) | 100.00% (8/8) | 100.00% (2/2) |
src/libraries/actions/Initialize.sol | 68.32% (69/101) | 61.21% (71/116) | 64.00% (16/25) | 84.62% (11/13) |
src/libraries/actions/Liquidate.sol | 100.00% (29/29) | 100.00% (38/38) | 100.00% (5/5) | 100.00% (3/3) |
src/libraries/actions/LiquidateWithReplacement.sol | 100.00% (32/32) | 100.00% (42/42) | 100.00% (5/5) | 100.00% (3/3) |
src/libraries/actions/Repay.sol | 100.00% (9/9) | 100.00% (11/11) | 100.00% (2/2) | 100.00% (2/2) |
src/libraries/actions/SelfLiquidate.sol | 100.00% (12/12) | 100.00% (17/17) | 100.00% (2/2) | 100.00% (2/2) |
src/libraries/actions/SellCreditLimit.sol | 100.00% (5/5) | 100.00% (5/5) | 100.00% (1/1) | 100.00% (2/2) |
src/libraries/actions/SellCreditMarket.sol | 100.00% (46/46) | 100.00% (54/54) | 100.00% (15/15) | 100.00% (3/3) |
src/libraries/actions/SetUserConfiguration.sol | 100.00% (14/14) | 100.00% (21/21) | 100.00% (2/2) | 100.00% (2/2) |
src/libraries/actions/UpdateConfig.sol | 100.00% (48/48) | 100.00% (51/51) | 100.00% (32/32) | 100.00% (5/5) |
src/libraries/actions/Withdraw.sol | 100.00% (18/18) | 100.00% (18/18) | 100.00% (7/7) | 100.00% (2/2) |
src/oracle/PriceFeed.sol | 96.43% (27/28) | 97.96% (48/49) | 91.67% (11/12) | 100.00% (3/3) |
src/token/NonTransferrableToken.sol | 90.91% (10/11) | 92.31% (12/13) | 0.00% (0/1) | 100.00% (8/8) |
src/token/deprecated/NonTransferrableScaledTokenV1.sol | 85.71% (18/21) | 90.00% (27/30) | 0.00% (0/1) | 50.00% (6/12) |
src/token/deprecated/NonTransferrableScaledTokenV1_2.sol | 80.85% (38/47) | 82.76% (48/58) | 0.00% (0/7) | 53.85% (7/13) |
src/v1.5/SizeFactory.sol | 100.00% (69/69) | 100.00% (88/88) | 100.00% (6/6) | 96.77% (30/31) |
src/v1.5/libraries/MarketFactoryLibrary.sol | 100.00% (2/2) | 100.00% (3/3) | 100.00% (0/0) | 100.00% (1/1) |
src/v1.5/libraries/NonTransferrableScaledTokenV1_5FactoryLibrary.sol | 100.00% (1/1) | 100.00% (1/1) | 100.00% (0/0) | 100.00% (1/1) |
src/v1.5/libraries/PriceFeedFactoryLibrary.sol | 100.00% (1/1) | 100.00% (1/1) | 100.00% (0/0) | 100.00% (1/1) |
src/v1.5/token/NonTransferrableScaledTokenV1_5.sol | 88.57% (62/70) | 90.80% (79/87) | 25.00% (2/8) | 85.00% (17/20) |
┌───────────────────────────────┬────────┐
│ (index) │ Values │
├───────────────────────────────┼────────┤
│ BuyCreditLimit │ 4 │
│ BuyCreditMarket │ 10 │
│ Claim │ 10 │
│ Compensate │ 20 │
│ CryticToFoundry │ 27 │
│ Deposit │ 5 │
│ GenericMarket │ 20 │
│ Initialize │ 4 │
│ LiquidateWithReplacement │ 6 │
│ Liquidate │ 12 │
│ Math │ 6 │
│ Multicall │ 9 │
│ NonTransferrableScaledTokenV1 │ 17 │
│ NonTransferrableToken │ 8 │
│ OfferLibrary │ 1 │
│ Pause │ 2 │
│ PriceFeed │ 9 │
│ Repay │ 7 │
│ SelfLiquidate │ 10 │
│ SellCreditLimit │ 5 │
│ SellCreditMarket │ 13 │
│ SetUserConfiguration │ 3 │
│ SizeFactory │ 34 │
│ SizeView │ 5 │
│ SwapData │ 3 │
│ UpdateConfig │ 7 │
│ Upgrade │ 2 │
│ Withdraw │ 9 │
│ YieldCurve │ 14 │
└───────────────────────────────┴────────┘
Run Echidna with
yarn echidna-property
yarn echidna-assertion
source .env
FOUNDRY_PROFILE=fork FOUNDRY_INVARIANT_RUNS=0 FOUNDRY_INVARIANT_DEPTH=0 forge test --mc FoundryForkTester -vvvvv --ffi
Check the coverage report with
yarn echidna-coverage
Run Halmos with
for i in {0..5}; do halmos --loop $i; done
- The protocol does not support rebasing/fee-on-transfer tokens
- The protocol only supports tokens compliant with the IERC20Metadata interface
- The protocol only supports pre-vetted tokens
- The protocol owner, KEEPER_ROLE, PAUSER_ROLE, and BORROW_RATE_UPDATER_ROLE are trusted
- The protocol uses Uniswap TWAP as a fallback oracle in case Chainlink is stale.
- In case Chainlink reports a wrong price, the protocol state cannot be guaranteed. This may cause incorrect liquidations, among other issues
- In case the protocol is paused, the price of the collateral may change during the unpause event. This may cause unforseen liquidations, among other issues
- It is not possible to pause individual functions. Nevertheless, BORROW_RATE_UPDATER_ROLE and admin functions are enabled even if the protocol is paused
- Users blacklisted by underlying tokens (e.g. USDC) may be unable to withdraw
- If the Variable Pool (Aave v3) fails to
supply
orwithdraw
for any reason, such as supply caps, Size'sdeposit
andwithdraw
may be prevented - Centralization risk related to integrations (USDC, Aave v3, Chainlink) are out of scope
- The Variable Pool Borrow Rate feed is trusted and users of rate hook adopt oracle risk of buying/selling credit at unsatisfactory prices
- The insurance fund (out of scope for this project) may not be able to make all lenders whole, maybe unfair, and may be manipulated
- LiquidateWithReplacement might not be available for the big enough debt positions
- All issues acknowledged on previous audits and automated findings
Ensure your .env
file in the root directory of your project contains the following variables:
API_KEY_ALCHEMY=<Your Alchemy API Key>
API_KEY_ETHERSCAN=<Your Etherscan API Key>
DEPLOYER_ADDRESS=<Deployer's Ethereum Address>
DEPLOYER_ACCOUNT=<Name of the Deployer's Account in Foundry>
OWNER=<Owner's Address>
FEE_RECIPIENT=<Fee Recipient's Address>
NETWORK_CONFIGURATION=<Network Configuration>
RPC_URL=<Network Name>
The DEPLOYER_ACCOUNT
is a reference to the name of an account managed by Foundry's cast wallet
feature. To create and import a new deployer wallet using a private key, use the following command:
cast wallet import DEPLOYER_ACCOUNT_NAME --private-key $(cast wallet new | grep Private | awk -F 'Private key: ' '{print $2}')
Ensure that the NETWORK_CONFIGURATION
is set according to the network options you are deploying to. For example, you can create a configuration base-mocks
and another base-production
without mocks. Also, ensure that RPC_URL
is set according to the network you are deploying to. In the previous case, both would be equal to base
as in your foundry.toml
. You can see the available network configuration in script/Networks.sol
.
You can set relevant NetworkParams
to address(0)
if you are deploying with mock contracts or require specific network parameters.
source .env
export NETWORK_CONFIGURATION=base-production-weth-usdc
forge script script/Deploy.s.sol --rpc-url $RPC_URL --gas-limit 30000000 --sender $DEPLOYER_ADDRESS --account $DEPLOYER_ACCOUNT --ffi --verify -vvvvv
If it does not work, try removing --verify
- Due dilligence on borrow/collateral tokens: non-rebasing, IERC20Metadata
- Deploy
- Grant
KEEPER_ROLE
to liquidation contract - Grant
BORROW_RATE_UPDATER_ROLE
to bot - Grant
PAUSER_ROLE
to bot, multisig signers
source .env.sepolia
forge script script/Upgrade.s.sol --rpc-url $RPC_URL --gas-limit 30000000 --sender $DEPLOYER_ADDRESS --account $DEPLOYER_ACCOUNT --ffi --verify -vvvvv