diff --git a/contracts/CompoundGovernor.sol b/contracts/CompoundGovernor.sol index f0e72da..ed7a9b2 100644 --- a/contracts/CompoundGovernor.sol +++ b/contracts/CompoundGovernor.sol @@ -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, diff --git a/contracts/extensions/GovernorSequentialProposalIdUpgradeable.sol b/contracts/extensions/GovernorSequentialProposalIdUpgradeable.sol index e62bf28..3b0c59b 100644 --- a/contracts/extensions/GovernorSequentialProposalIdUpgradeable.sol +++ b/contracts/extensions/GovernorSequentialProposalIdUpgradeable.sol @@ -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(); diff --git a/contracts/extensions/GovernorSettableFixedQuorumUpgradeable.sol b/contracts/extensions/GovernorSettableFixedQuorumUpgradeable.sol index 82e28cc..64359d7 100644 --- a/contracts/extensions/GovernorSettableFixedQuorumUpgradeable.sol +++ b/contracts/extensions/GovernorSettableFixedQuorumUpgradeable.sol @@ -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; diff --git a/contracts/extensions/GovernorVotesCompUpgradeable.sol b/contracts/extensions/GovernorVotesCompUpgradeable.sol index 928e374..3f9d0b4 100644 --- a/contracts/extensions/GovernorVotesCompUpgradeable.sol +++ b/contracts/extensions/GovernorVotesCompUpgradeable.sol @@ -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 {