diff --git a/contracts/GovernorBravoDelegate.sol b/contracts/GovernorBravoDelegate.sol index e1b7fdb..4e8ca22 100644 --- a/contracts/GovernorBravoDelegate.sol +++ b/contracts/GovernorBravoDelegate.sol @@ -14,10 +14,10 @@ contract InstaGovernorBravoDelegate is GovernorBravoDelegateStorageV1, GovernorB string public constant name = "DSL Governor Bravo"; /// @notice The minimum setable proposal threshold - uint public constant MIN_PROPOSAL_THRESHOLD = 50000e18; // TODO - Update this + uint public constant MIN_PROPOSAL_THRESHOLD = 500000e18; // 500,000 /// @notice The maximum setable proposal threshold - uint public constant MAX_PROPOSAL_THRESHOLD = 100000e18; // TODO - Update this + uint public constant MAX_PROPOSAL_THRESHOLD = 50000000e18; // 5,000,000 /// @notice The minimum setable voting period uint public constant MIN_VOTING_PERIOD = 5760; // About 24 hours @@ -32,7 +32,7 @@ contract InstaGovernorBravoDelegate is GovernorBravoDelegateStorageV1, GovernorB uint public constant MAX_VOTING_DELAY = 40320; // About 1 week /// @notice The number of votes in support of a proposal required in order for a quorum to be reached and for a vote to succeed - uint public constant quorumVotes = 400000e18; // TODO - Update this + uint public constant quorumVotes = 4000000e18; // 4,000,000 /// @notice The maximum number of actions that can be included in a proposal uint public constant proposalMaxOperations = 10; // 10 actions