Skip to content

Commit ba6024a

Browse files
committed
fix: direct bugs to new security contact email address.
1 parent d52be6d commit ba6024a

File tree

7 files changed

+14
-7
lines changed

7 files changed

+14
-7
lines changed

packages/horizon/contracts/payments/GraphPayments.sol

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ import { GraphDirectory } from "../utilities/GraphDirectory.sol";
1616
* @notice This contract is part of the Graph Horizon payments protocol. It's designed
1717
* to pull funds (GRT) from the {PaymentsEscrow} and distribute them according to a
1818
* set of pre established rules.
19-
* @custom:security-contact Bug bounty program: https://immunefi.com/bug-bounty/thegraph/information/
19+
* @custom:security-contact Please email [email protected] if you find any
20+
* bugs. We may have an active bug bounty program.
2021
*/
2122
contract GraphPayments is Initializable, MulticallUpgradeable, GraphDirectory, IGraphPayments {
2223
using TokenUtils for IGraphToken;

packages/horizon/contracts/payments/PaymentsEscrow.sol

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ import { GraphDirectory } from "../utilities/GraphDirectory.sol";
1717
* @notice This contract is part of the Graph Horizon payments protocol. It holds the funds (GRT)
1818
* for payments made through the payments protocol for services provided
1919
* via a Graph Horizon data service.
20-
* @custom:security-contact Bug bounty program: https://immunefi.com/bug-bounty/thegraph/information/
20+
* @custom:security-contact Please email [email protected] if you find any
21+
* bugs. We may have an active bug bounty program.
2122
*/
2223
contract PaymentsEscrow is Initializable, MulticallUpgradeable, GraphDirectory, IPaymentsEscrow {
2324
using TokenUtils for IGraphToken;

packages/horizon/contracts/payments/collectors/TAPCollector.sol

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ import { ECDSA } from "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
1717
* @dev Note that the contract expects the RAV aggregate value to be monotonically increasing, each successive RAV for the same
1818
* (data service-payer-receiver) tuple should have a value greater than the previous one. The contract will keep track of the tokens
1919
* already collected and calculate the difference to collect.
20-
* @custom:security-contact Bug bounty program: https://immunefi.com/bug-bounty/thegraph/information/
20+
* @custom:security-contact Please email [email protected] if you find any
21+
* bugs. We may have an active bug bounty program.
2122
*/
2223
contract TAPCollector is EIP712, GraphDirectory, ITAPCollector {
2324
using PPMMath for uint256;

packages/horizon/contracts/staking/HorizonStaking.sol

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ import { HorizonStakingBase } from "./HorizonStakingBase.sol";
2424
* This is due to the contract size limit on Arbitrum (24kB). The extension contract implements functionality to support
2525
* the legacy staking functions and the transfer tools. Both can be eventually removed without affecting the main
2626
* staking contract.
27-
* @custom:security-contact Bug bounty program: https://immunefi.com/bug-bounty/thegraph/information/
27+
* @custom:security-contact Please email [email protected] if you find any
28+
* bugs. We may have an active bug bounty program.
2829
*/
2930
contract HorizonStaking is HorizonStakingBase, IHorizonStakingMain {
3031
using TokenUtils for IGraphToken;

packages/horizon/contracts/staking/HorizonStakingExtension.sol

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ import { HorizonStakingBase } from "./HorizonStakingBase.sol";
2424
* without losing rewards or having service interruptions.
2525
* @dev TODO: Once the transition period and the transfer tools are deemed not necessary this contract
2626
* can be removed. It's expected the transition period to last for a full allocation cycle (28 epochs).
27-
* @custom:security-contact Bug bounty program: https://immunefi.com/bug-bounty/thegraph/information/
27+
* @custom:security-contact Please email [email protected] if you find any
28+
* bugs. We may have an active bug bounty program.
2829
*/
2930
contract HorizonStakingExtension is HorizonStakingBase, IL2StakingBase, IHorizonStakingExtension {
3031
using TokenUtils for IGraphToken;

packages/subgraph-service/contracts/DisputeManager.sol

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ import { AttestationManager } from "./utilities/AttestationManager.sol";
4040
* Arbitration:
4141
* Disputes can only be accepted, rejected or drawn by the arbitrator role that can be delegated
4242
* to a EOA or DAO.
43-
* @custom:security-contact Bug bounty program: https://immunefi.com/bug-bounty/thegraph/information/
43+
* @custom:security-contact Please email [email protected] if you find any
44+
* bugs. We may have an active bug bounty program.
4445
*/
4546
contract DisputeManager is
4647
Initializable,

packages/subgraph-service/contracts/SubgraphService.sol

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ import { LegacyAllocation } from "./libraries/LegacyAllocation.sol";
2323

2424
/**
2525
* @title SubgraphService contract
26-
* @custom:security-contact Bug bounty program: https://immunefi.com/bug-bounty/thegraph/information/
26+
* @custom:security-contact Please email [email protected] if you find any
27+
* bugs. We may have an active bug bounty program.
2728
*/
2829
contract SubgraphService is
2930
Initializable,

0 commit comments

Comments
 (0)