Several contracts on Unicly V2 will have privileged roles controlled by the Unicly DAO. This gives the protocol flexibility to change protocol-level parameters in the future.
• admin in ConverterTimeLock.sol,
• feeToSetter, owner in UnicFactory.sol,
• owner in ConverterGovernorAlphaConfig.sol,
• owner in Converter.sol, and
• owner in AuctionHandler.sol.
Misc
The minBidMultiplier and feeDivisor parameters on the AuctionHandler are limited to a uint8.
This means that the two variables will always be between 1 and 255, inclusive.
This is fine because the protocol should never increase auction fees to above 5% (likely values for feeDivisor are either 100, 50, and 20), and minBidMultiplier should always be somewhere between 100 and 110.