Fix comments in proposals

Signed-off-by: AlienTornadosaurusHex <>
This commit is contained in:
AlienTornadosaurusHex 2023-06-22 19:04:26 +00:00
parent 235ab1869f
commit f1aabff16b

@ -33,37 +33,57 @@ import { TornadoRouter } from "../v2/TornadoRouter.sol";
contract InfrastructureUpgradeProposal { contract InfrastructureUpgradeProposal {
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ADDRESSES ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ADDRESSES ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* @dev The address of the current FeeManager proxy, future FeeOracleManager */ /**
* @notice The address of the current FeeManager proxy, future FeeOracleManager
*/
address payable public constant feeManagerProxyAddress = 0x5f6c97C6AD7bdd0AE7E0Dd4ca33A4ED3fDabD4D7; address payable public constant feeManagerProxyAddress = 0x5f6c97C6AD7bdd0AE7E0Dd4ca33A4ED3fDabD4D7;
/* @dev The address of the current InstanceRegistry proxy, this will be upgraded */ /**
* @notice The address of the current InstanceRegistry proxy, this will be upgraded
*/
address payable public constant instanceRegistryProxyAddress = 0xB20c66C4DE72433F3cE747b58B86830c459CA911; address payable public constant instanceRegistryProxyAddress = 0xB20c66C4DE72433F3cE747b58B86830c459CA911;
/* @dev The address of the current RelayerRegistry proxy, this will be upgraded */ /**
* @notice The address of the current RelayerRegistry proxy, this will be upgraded
*/
address payable public constant relayerRegistryProxyAddress = 0x58E8dCC13BE9780fC42E8723D8EaD4CF46943dF2; address payable public constant relayerRegistryProxyAddress = 0x58E8dCC13BE9780fC42E8723D8EaD4CF46943dF2;
/* @dev The address of the current TornadoStakingRewards proxy, this will be upgraded */ /**
* @notice The address of the current TornadoStakingRewards proxy, this will be upgraded
*/
address payable public constant stakingProxyAddress = 0x5B3f656C80E8ddb9ec01Dd9018815576E9238c29; address payable public constant stakingProxyAddress = 0x5B3f656C80E8ddb9ec01Dd9018815576E9238c29;
/* @dev This is the Uniswap Oracle which we will use for all of our traditional instances, but it will /**
also help the CurveFeeOracle, the former must have been deployed witht the address of this */ * @notice The implementation address of the RelayerRegistry upgrade contract
address public immutable deployedUniswapFeeOracleAddress; */
/* @dev The implementation address of the RelayerRegistry upgrade contract */
address public immutable deployedRelayerRegistryImplementationAddress; address public immutable deployedRelayerRegistryImplementationAddress;
/* @dev The implementation address of the TornadoStakingRewards upgrade contract */ /**
* @notice The implementation address of the TornadoStakingRewards upgrade contract
*/
address public immutable deployedStakingRewardsImplementationAddress; address public immutable deployedStakingRewardsImplementationAddress;
/* @dev The implementation address of the FeeManager upgrade contract */ /**
* @notice The implementation address of the FeeOracleManager upgrade contract
*/
address public immutable deployedFeeOracleManagerImplementationAddress; address public immutable deployedFeeOracleManagerImplementationAddress;
/* @dev The implementation address of the InstanceRegistry upgrade contract */ /**
* @notice The implementation address of the InstanceRegistry upgrade contract
*/
address public immutable deployedInstanceRegistryImplementationAddress; address public immutable deployedInstanceRegistryImplementationAddress;
/* @dev The address of the new, cleaner, better TornadoRouter */ /**
* @notice The address of the new, cleaner, better TornadoRouter
*/
address public immutable deployedTornadoRouterAddress; address public immutable deployedTornadoRouterAddress;
/**
* @notice This is the Uniswap Oracle which we will use for all of our traditional instances, but it will
* also help the CurveFeeOracle, the former must have been deployed witht the address of this
*/
address public immutable deployedUniswapFeeOracleAddress;
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ LOGIC ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ LOGIC ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
constructor( constructor(