@@ -110,7 +110,8 @@ contract Staking is StakingV1Storage, GraphUpgradeable, IStaking, Governed {
110
110
uint256 tokens ,
111
111
address channelID ,
112
112
bytes channelPubKey ,
113
- uint256 price
113
+ uint256 price ,
114
+ address proxy
114
115
);
115
116
116
117
/**
@@ -140,7 +141,8 @@ contract Staking is StakingV1Storage, GraphUpgradeable, IStaking, Governed {
140
141
uint256 epoch ,
141
142
uint256 tokens ,
142
143
address channelID ,
143
- uint256 effectiveAllocation
144
+ uint256 effectiveAllocation ,
145
+ address sender
144
146
);
145
147
146
148
/**
@@ -152,6 +154,7 @@ contract Staking is StakingV1Storage, GraphUpgradeable, IStaking, Governed {
152
154
event RebateClaimed (
153
155
address indexed indexer ,
154
156
bytes32 indexed subgraphDeploymentID ,
157
+ address channelID ,
155
158
uint256 epoch ,
156
159
uint256 forEpoch ,
157
160
uint256 tokens ,
@@ -795,7 +798,8 @@ contract Staking is StakingV1Storage, GraphUpgradeable, IStaking, Governed {
795
798
alloc.settledAtEpoch,
796
799
alloc.tokens,
797
800
_channelID,
798
- alloc.effectiveAllocation
801
+ alloc.effectiveAllocation,
802
+ msg .sender
799
803
);
800
804
}
801
805
@@ -889,6 +893,7 @@ contract Staking is StakingV1Storage, GraphUpgradeable, IStaking, Governed {
889
893
emit RebateClaimed (
890
894
alloc.indexer,
891
895
alloc.subgraphDeploymentID,
896
+ _channelID,
892
897
epochManager.currentEpoch (),
893
898
settledAtEpoch,
894
899
tokensToClaim,
@@ -989,7 +994,8 @@ contract Staking is StakingV1Storage, GraphUpgradeable, IStaking, Governed {
989
994
allocations[channelID].tokens,
990
995
channelID,
991
996
_channelPubKey,
992
- _price
997
+ _price,
998
+ _channelProxy
993
999
);
994
1000
}
995
1001
0 commit comments