This repository contains the implementation of a Peg Stability Module (PSM) contract, which facilitates the swapping, depositing, and withdrawing of three given assets to maintain stability and ensure the peg of involved assets. The PSM supports both yield-bearing and non-yield-bearing assets.
The PSM contract allows users to swap between USDC, USDS, and sUSDS, deposit any of the assets to mint shares, and withdraw any of the assets by burning shares.
The conversion between a stablecoin and susds is provided by a rate provider contract. The rate provider returns the conversion rate between susds and the stablecoin in 1e27 precision. The conversion between the stablecoins is one to one.
The conversion rate between assets and shares is based on the total value of assets within the PSM. This includes USDS and sUSDS held custody by the PSM, and USDC held custody by the pocket. The total value is calculated by converting the assets to their equivalent value in USD with 18 decimal precision. The shares represent the ownership of the underlying assets in the PSM. Since three assets are used, each with different precisions and values, they are converted to a common USD-denominated value for share conversions.
For detailed implementation, refer to the contract code and IPSM3 interface documentation.
src/PSM3.sol: The core contract implementing theIPSM3interface, providing functionality for swapping, depositing, and withdrawing assets.src/interfaces/IPSM3.sol: Defines the essential functions and events that the PSM contract implements.
On the deployment of the PSM, the deployer MUST make an initial deposit to get AT LEAST 1e18 shares in order to protect the first depositor from getting attacked with a share inflation attack or DOS attack. Share inflation attack is outlined further here. Technical details related to this can be found in test/InflationAttack.t.sol.
The DOS attack is performed by:
- Attacker sends funds directly to the PSM.
totalAssetsnow returns a non-zero value. - Victim calls deposit.
convertToSharesreturnsamount * totalShares / totalValue. In this case,totalValueis non-zero andtotalSharesis zero, so it performsamount * 0 / totalValueand returns zero. - The victim has
transferFromcalled moving their funds into the PSM, but they receive zero shares so they cannot recover any of their underlying assets. This renders the PSM unusable for all users since this issue will persist.totalSharescan never be increased in this state.
The deployment library (deploy/PSM3Deploy.sol) in this repo contains logic for the deployer to perform this initial deposit, so it is HIGHLY RECOMMENDED to use this deployment library when deploying the PSM. Reasoning for the technical implementation approach taken is outlined in more detail here.
usdc: IERC20 interface of USDC.usds: IERC20 interface of USDS.susds: IERC20 interface of sUSDS. Note that this is an ERC20 and not a ERC4626 because it's not on mainnet.pocket: Address that holds custody of USDC. Thepocketcan deploy USDC to yield-bearing strategies. Defaulted to the address of the PSM itself.rateProvider: Contract that returns a conversion rate between and sUSDS and USD in 1e27 precision.totalShares: Total shares in the PSM. Shares represent the ownership of the underlying assets in the PSM.shares: Mapping of user addresses to their shares.
setPocket: Sets thepocketaddress. Only theownercan call this function. This is a very important and sensitive action because it transfers the entire balance of USDC to the newpocketaddress. OZ Ownable is used for this function, andownerwill always be set to the governance proxy.
swapExactIn: Allows swapping of assets based on current conversion rates, specifying anamountInof the asset to swap. Ensures the derived output amount is above theminAmountOutspecified by the user before executing the transfer and emitting the swap event. Includes a referral code.swapExactOut: Allows swapping of assets based on current conversion rates, specifying anamountOutof the asset to receive from the swap. Ensures the derived input amount is below themaxAmountInspecified by the user before executing the transfer and emitting the swap event. Includes a referral code.
deposit: Deposits assets into the PSM, minting new shares. Includes a referral code.withdraw: Withdraws assets from the PSM by burning shares. Ensures the user has sufficient shares for the withdrawal and adjusts the total shares accordingly. Includes a referral code.
previewDeposit: Estimates the number of shares minted for a given deposit amount.previewWithdraw: Estimates the number of shares burned and the amount of assets withdrawn for a specified amount.previewSwapExactIn: Estimates the amount ofassetOutreceived for a given amount ofassetInin a swap.previewSwapExactOut: Estimates the amount ofassetInrequired to receive a given amount ofassetOutin a swap.
NOTE: These functions do not round in the same way as preview functions, so they are meant to be used for general quoting purposes.
convertToAssets: Converts shares to the equivalent amount of a specified asset.convertToAssetValue: Converts shares to their equivalent value in USD terms with 18 decimal precision.convertToShares: Converts asset values to shares based on the current exchange rate.
totalAssets: Returns the total value of all assets held by the PSM denominated in USD with 18 decimal precision.
Swap: Emitted on asset swaps.Deposit: Emitted on asset deposits.Withdraw: Emitted on asset withdrawals.
To run tests in this repo, run:
forge test