Skip to content

Commit

Permalink
Add security contact (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
garyghayrat authored Nov 4, 2024
1 parent c7c0218 commit 4d9f2c9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion contracts/CompoundGovernor.sol
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {Address} from "@openzeppelin/contracts/utils/Address.sol";
/// @title CompoundGovernor
/// @author [ScopeLift](https://scopelift.co)
/// @notice A governance contract for the Compound DAO.
/// @custom:security-contact TODO: Add security contact
/// @custom:security-contact security@compound.finance
contract CompoundGovernor is
Initializable,
GovernorVotesCompUpgradeable,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {GovernorUpgradeable} from "contracts/extensions/GovernorUpgradeable.sol"
/// @notice Extension for Governor contract that assigns sequential proposal IDs.
/// @notice This abstract contract modifies GovernorStorageUpgradeable and extends GovernorUpgradeable to provide
/// sequential proposal IDs while preserving standard proposal addressability.
/// @custom:security-contact TODO: Add security contact.
/// @custom:security-contact security@compound.finance
abstract contract GovernorSequentialProposalIdUpgradeable is GovernorUpgradeable {
error ProposalIdAlreadySet();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {Checkpoints} from "@openzeppelin/contracts/utils/structs/Checkpoints.sol
/// @title GovernorSettableFixedQuorumUpdateable
/// @author [ScopeLift](https://scopelift.co)
/// @notice An abstract extension to the Governor which implements a fixed quorum which can be updated by governance.
/// @custom:security-contact TODO: Add security contact
/// @custom:security-contact security@compound.finance
abstract contract GovernorSettableFixedQuorumUpgradeable is Initializable, GovernorUpgradeable {
using Checkpoints for Checkpoints.Trace208;

Expand Down
2 changes: 1 addition & 1 deletion contracts/extensions/GovernorVotesCompUpgradeable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {IComp} from "contracts/interfaces/IComp.sol";
/// @title GovernorVotesCompUpgradeable
/// @author [ScopeLift](https://scopelift.co)
/// @notice Modified GovernorVotes contract that supports Compound's COMP token.
/// @custom:security-contact TODO: Add security contact
/// @custom:security-contact security@compound.finance
abstract contract GovernorVotesCompUpgradeable is Initializable, GovernorUpgradeable {
/// @custom:storage-location IComp:storage.GovernorVotesComp
struct GovernorVotesCompStorage {
Expand Down

0 comments on commit 4d9f2c9

Please sign in to comment.