@@ -110,7 +110,8 @@ contract Staking is StakingV1Storage, GraphUpgradeable, IStaking, Governed {
110110 uint256 tokens ,
111111 address channelID ,
112112 bytes channelPubKey ,
113- uint256 price
113+ uint256 price ,
114+ address proxy
114115 );
115116
116117 /**
@@ -140,7 +141,8 @@ contract Staking is StakingV1Storage, GraphUpgradeable, IStaking, Governed {
140141 uint256 epoch ,
141142 uint256 tokens ,
142143 address channelID ,
143- uint256 effectiveAllocation
144+ uint256 effectiveAllocation ,
145+ address sender
144146 );
145147
146148 /**
@@ -152,6 +154,7 @@ contract Staking is StakingV1Storage, GraphUpgradeable, IStaking, Governed {
152154 event RebateClaimed (
153155 address indexed indexer ,
154156 bytes32 indexed subgraphDeploymentID ,
157+ address channelID ,
155158 uint256 epoch ,
156159 uint256 forEpoch ,
157160 uint256 tokens ,
@@ -795,7 +798,8 @@ contract Staking is StakingV1Storage, GraphUpgradeable, IStaking, Governed {
795798 alloc.settledAtEpoch,
796799 alloc.tokens,
797800 _channelID,
798- alloc.effectiveAllocation
801+ alloc.effectiveAllocation,
802+ msg .sender
799803 );
800804 }
801805
@@ -889,6 +893,7 @@ contract Staking is StakingV1Storage, GraphUpgradeable, IStaking, Governed {
889893 emit RebateClaimed (
890894 alloc.indexer,
891895 alloc.subgraphDeploymentID,
896+ _channelID,
892897 epochManager.currentEpoch (),
893898 settledAtEpoch,
894899 tokensToClaim,
@@ -989,7 +994,8 @@ contract Staking is StakingV1Storage, GraphUpgradeable, IStaking, Governed {
989994 allocations[channelID].tokens,
990995 channelID,
991996 _channelPubKey,
992- _price
997+ _price,
998+ _channelProxy
993999 );
9941000 }
9951001
0 commit comments