From e9a304ba9f516ca07aaf8ebf3e7c6af05f6c105c Mon Sep 17 00:00:00 2001 From: Thrilok kumar Date: Mon, 5 Feb 2024 00:30:26 +0530 Subject: [PATCH] changed name and made 30 actions --- contracts/GovernorBravoDelegate.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/GovernorBravoDelegate.sol b/contracts/GovernorBravoDelegate.sol index 4e8ca22..f51b427 100644 --- a/contracts/GovernorBravoDelegate.sol +++ b/contracts/GovernorBravoDelegate.sol @@ -11,7 +11,7 @@ import { SafeMath } from "./SafeMath.sol"; contract InstaGovernorBravoDelegate is GovernorBravoDelegateStorageV1, GovernorBravoEvents { /// @notice The name of this contract - string public constant name = "DSL Governor Bravo"; + string public constant name = "INST Governor Bravo"; /// @notice The minimum setable proposal threshold uint public constant MIN_PROPOSAL_THRESHOLD = 500000e18; // 500,000 @@ -35,7 +35,7 @@ contract InstaGovernorBravoDelegate is GovernorBravoDelegateStorageV1, GovernorB 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 + uint public constant proposalMaxOperations = 30; // 30 actions /// @notice The EIP-712 typehash for the contract's domain bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");