File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
packages/contracts/contracts/rewards Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -54,16 +54,23 @@ contract SubgraphAvailabilityManager is Governed {
54
54
55
55
/**
56
56
* @dev Emitted when an oracle is set
57
+ * @param index Index of the oracle
58
+ * @param oracle Address of the oracle
57
59
*/
58
60
event OracleSet (uint256 indexed index , address indexed oracle );
59
61
60
62
/**
61
63
* @dev Emitted when the vote time limit is set
64
+ * @param voteTimeLimit Vote time limit in seconds
62
65
*/
63
66
event VoteTimeLimitSet (uint256 voteTimeLimit );
64
67
65
68
/**
66
69
* @dev Emitted when an oracle votes to deny or allow a subgraph
70
+ * @param subgraphDeploymentID Subgraph deployment ID
71
+ * @param deny True to deny, false to allow
72
+ * @param oracleIndex Index of the oracle voting
73
+ * @param timestamp Timestamp of the vote
67
74
*/
68
75
event OracleVote (
69
76
bytes32 indexed subgraphDeploymentID ,
You can’t perform that action at this time.
0 commit comments