The crvUSD Factory enables the creation of new markets and adjustments, including setting a new fee receiver, modifying the debt ceiling of an existing market, or updating blueprint implementations.
Other than the pool factory, this factory does not allow permissionless deployment of new markets. Only its admin, the CurveOwnershipAgent, can call to add a market. Therefore, adding a new market requires a successfully passed DAO vote.
Function to remove stablecoins above the debt seiling from a controller and burn them. This function is used to burn residual crvUSD when the debt ceiling was lowered.
Input
Type
Description
_to
address
Address of the controller to remove stablecoins from
Source code
@external@nonreentrant('lock')defrug_debt_ceiling(_to:address):""" @notice Remove stablecoins above the debt ceiling from the address and burn them @param _to Address to remove stablecoins from """self._set_debt_ceiling(_to,self.debt_ceiling[_to],False)@internaldef_set_debt_ceiling(addr:address,debt_ceiling:uint256,update:bool):""" @notice Set debt ceiling for a market @param addr Controller address @param debt_ceiling Value for stablecoin debt ceiling @param update Whether to actually update the debt ceiling (False is used for burning the residuals) """old_debt_residual:uint256=self.debt_ceiling_residual[addr]ifdebt_ceiling>old_debt_residual:to_mint:uint256=debt_ceiling-old_debt_residualSTABLECOIN.mint(addr,to_mint)self.debt_ceiling_residual[addr]=debt_ceilinglogMintForMarket(addr,to_mint)ifdebt_ceiling<old_debt_residual:diff:uint256=min(old_debt_residual-debt_ceiling,STABLECOIN.balanceOf(addr))STABLECOIN.burnFrom(addr,diff)self.debt_ceiling_residual[addr]=old_debt_residual-difflogRemoveFromMarket(addr,diff)ifupdate:self.debt_ceiling[addr]=debt_ceilinglogSetDebtCeiling(addr,debt_ceiling)
The fee receiver is the address that receives the claimed fees when calling collect_fees() on the Controller. A new receiver can be set by the admin of the contract, which is the CurveOwnershipAgent.
fee_receiver:public(address)@externaldef__init__(stablecoin:ERC20,admin:address,fee_receiver:address,weth:address):""" @notice Factory which creates both controllers and AMMs from blueprints @param stablecoin Stablecoin address @param admin Admin of the factory (ideally DAO) @param fee_receiver Receiver of interest and admin fees @param weth Address of WETH contract address """STABLECOIN=stablecoinself.admin=adminself.fee_receiver=fee_receiverWETH=weth
Implementations are blueprint contracts used to deploy new markets. When calling add_market, Controller and AMM are created from the current implementations.
STABLECOIN:immutable(ERC20)@externaldef__init__(stablecoin:ERC20,admin:address,fee_receiver:address,weth:address):""" @notice Factory which creates both controllers and AMMs from blueprints @param stablecoin Stablecoin address @param admin Admin of the factory (ideally DAO) @param fee_receiver Receiver of interest and admin fees @param weth Address of WETH contract address """STABLECOIN=stablecoinself.admin=adminself.fee_receiver=fee_receiverWETH=weth
Getter for the sum of all debts across the controllers.
Returns: total amount of debt (uint256).
Source code
@external@viewdeftotal_debt()->uint256:""" @notice Sum of all debts across controllers """total:uint256=0n_collaterals:uint256=self.n_collateralsforiinrange(MAX_CONTROLLERS):ifi==n_collaterals:breaktotal+=Controller(self.controllers[i]).total_debt()returntotal
Index to iterate over several controller for the same collateral if needed
Source code
@external@viewdefget_controller(collateral:address,i:uint256=0)->address:""" @notice Get controller address for collateral @param collateral Address of collateral token @param i Iterate over several controllers for collateral if needed """returnself.controllers[self.collaterals_index[collateral][i]-2**128]
Index to iterate over several amms for the same collateral if needed
Source code
@external@viewdefget_amm(collateral:address,i:uint256=0)->address:""" @notice Get AMM address for collateral @param collateral Address of collateral token @param i Iterate over several AMMs for collateral if needed """returnself.amms[self.collaterals_index[collateral][i]-2**128]
WETH:public(immutable(address))@externaldef__init__(stablecoin:ERC20,admin:address,fee_receiver:address,weth:address):""" @notice Factory which creates both controllers and AMMs from blueprints @param stablecoin Stablecoin address @param admin Admin of the factory (ideally DAO) @param fee_receiver Receiver of interest and admin fees @param weth Address of WETH contract address """STABLECOIN=stablecoinself.admin=adminself.fee_receiver=fee_receiverWETH=weth