From afa1db7ca5436beb9407985c3b7c8bb892d32e04 Mon Sep 17 00:00:00 2001 From: Ed Mazurek Date: Fri, 19 Jul 2024 09:47:58 -0400 Subject: [PATCH] increase INITIAL_VOTING_DELAY (#25) --- script/DeployInput.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/DeployInput.sol b/script/DeployInput.sol index 4e4b3fb..389ecb3 100644 --- a/script/DeployInput.sol +++ b/script/DeployInput.sol @@ -2,7 +2,7 @@ pragma solidity ^0.8.20; contract DeployInput { - uint256 constant INITIAL_VOTING_DELAY = 3600; // 12 hours + uint256 constant INITIAL_VOTING_DELAY = 7200; // in blocks; 5 blocks/min * 60 * 24 = 1 day uint256 constant INITIAL_VOTING_PERIOD = 17_280; // matches existing config uint256 constant INITIAL_PROPOSAL_THRESHOLD = 1_000_000e18; // matches existing config