From dcd946754e454ba065b693321c756107b8c783c4 Mon Sep 17 00:00:00 2001 From: AlienTornadosaurusHex <> Date: Sat, 27 May 2023 15:12:47 +0000 Subject: [PATCH] update variable comments Signed-off-by: AlienTornadosaurusHex <> --- contracts/v4-patch/PatchProposal.sol | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/contracts/v4-patch/PatchProposal.sol b/contracts/v4-patch/PatchProposal.sol index 74302df..3575526 100644 --- a/contracts/v4-patch/PatchProposal.sol +++ b/contracts/v4-patch/PatchProposal.sol @@ -16,7 +16,7 @@ import { RelayerRegistry } from "./RelayerRegistry.sol"; * @notice Proposal which should patch governance against the metamorphic contract replacement vulnerability. */ contract PatchProposal { - // Address of the staking proxy + // Address of the old staking proxy address public constant oldStakingProxyAddress = 0x2FC93484614a34f26F7970CBB94615bA109BB4bf; // Address of the registry proxy @@ -25,7 +25,7 @@ contract PatchProposal { // Address of the gas compensation vault address public constant gasCompensationVaultAddress = 0xFA4C1f3f7D5dd7c12a9Adb82Cd7dDA542E3d59ef; - // Address of the user vault (not replaced) + // Address of the user vault address public constant userVaultAddress = 0x2F50508a8a3D323B91336FA3eA6ae50E55f32185; // Address of the governance proxy @@ -34,8 +34,10 @@ contract PatchProposal { // Torn token IERC20 public constant TORN = IERC20(0x77777FeDdddFfC19Ff86DB637967013e6C6A116C); - // These are the contracts we deployed + // The staking proxy (pointing to a new implementation (with same code)) that we've deployed address public immutable deployedStakingProxyContractAddress; + + // The registry implementation (with same code) that we've deployed address public immutable deployedRelayerRegistryImplementationAddress; constructor(