mirror of
https://github.com/Instadapp/dsa-governance.git
synced 2024-07-29 22:27:52 +00:00
Updated params on GovernorBravoDelegate.sol
This commit is contained in:
parent
72ef69c4a2
commit
76f189dcc5
|
@ -14,10 +14,10 @@ contract InstaGovernorBravoDelegate is GovernorBravoDelegateStorageV1, GovernorB
|
||||||
string public constant name = "DSL Governor Bravo";
|
string public constant name = "DSL Governor Bravo";
|
||||||
|
|
||||||
/// @notice The minimum setable proposal threshold
|
/// @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
|
/// @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
|
/// @notice The minimum setable voting period
|
||||||
uint public constant MIN_VOTING_PERIOD = 5760; // About 24 hours
|
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
|
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
|
/// @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
|
/// @notice The maximum number of actions that can be included in a proposal
|
||||||
uint public constant proposalMaxOperations = 10; // 10 actions
|
uint public constant proposalMaxOperations = 10; // 10 actions
|
||||||
|
|
Loading…
Reference in New Issue
Block a user