Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

horizon: post audit solidity changes #1121

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -186,12 +186,14 @@ interface IHorizonStakingMain {
* @param verifier The address of the verifier
* @param delegator The address of the delegator
* @param tokens The amount of tokens undelegated
* @param tokens The amount of shares undelegated
*/
event TokensUndelegated(
address indexed serviceProvider,
address indexed verifier,
address indexed delegator,
uint256 tokens
uint256 tokens,
uint256 shares
);

/**
Expand Down
2 changes: 1 addition & 1 deletion packages/horizon/contracts/staking/HorizonStaking.sol
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,7 @@ contract HorizonStaking is HorizonStakingBase, IHorizonStakingMain {
pool.thawingNonce
);

emit TokensUndelegated(_serviceProvider, _verifier, msg.sender, tokens);
emit TokensUndelegated(_serviceProvider, _verifier, msg.sender, tokens, _shares);
return thawRequestId;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1010,7 +1010,7 @@ abstract contract HorizonStakingSharedTest is GraphBaseTest {
calcValues.thawRequestId
);
vm.expectEmit();
emit IHorizonStakingMain.TokensUndelegated(serviceProvider, verifier, delegator, calcValues.tokens);
emit IHorizonStakingMain.TokensUndelegated(serviceProvider, verifier, delegator, calcValues.tokens, shares);
if (legacy) {
staking.undelegate(serviceProvider, shares);
} else if (thawRequestType == IHorizonStakingTypes.ThawRequestType.Delegation) {
Expand Down
9 changes: 8 additions & 1 deletion packages/subgraph-service/contracts/SubgraphService.sol
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,14 @@ contract SubgraphService is
}
}

emit QueryFeesCollected(indexer, _signedRav.rav.payer, tokensCollected, tokensCurators);
emit QueryFeesCollected(
indexer,
_signedRav.rav.payer,
allocationId,
subgraphDeploymentId,
tokensCollected,
tokensCurators
);
return tokensCollected;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,19 @@ interface ISubgraphService is IDataServiceFees {
* @notice Emitted when a subgraph service collects query fees from Graph Payments
* @param serviceProvider The address of the service provider
* @param payer The address paying for the query fees
* @param allocationId The id of the allocation
* @param subgraphDeploymentId The id of the subgraph deployment
* @param tokensCollected The amount of tokens collected
* @param tokensCurators The amount of tokens curators receive
*/
event QueryFeesCollected(address indexed serviceProvider, address indexed payer, uint256 tokensCollected, uint256 tokensCurators);
event QueryFeesCollected(
address indexed serviceProvider,
address indexed payer,
address indexed allocationId,
bytes32 subgraphDeploymentId,
uint256 tokensCollected,
uint256 tokensCurators
);

/**
* @notice Emitted when the stake to fees ratio is set.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -278,9 +278,10 @@ contract SubgraphServiceTest is SubgraphServiceSharedTest {
bytes memory _data
) private returns (uint256 paymentCollected) {
IGraphTallyCollector.SignedRAV memory signedRav = abi.decode(_data, (IGraphTallyCollector.SignedRAV));
Allocation.State memory allocation = subgraphService.getAllocation(
address(uint160(uint256(signedRav.rav.collectionId)))
);
address allocationId = address(uint160(uint256(signedRav.rav.collectionId)));
Allocation.State memory allocation = subgraphService.getAllocation(allocationId);
bytes32 subgraphDeploymentId = allocation.subgraphDeploymentId;

address payer = graphTallyCollector.isAuthorized(signedRav.rav.payer, _recoverRAVSigner(signedRav))
? signedRav.rav.payer
: address(0);
Expand All @@ -298,7 +299,14 @@ contract SubgraphServiceTest is SubgraphServiceSharedTest {
uint256 tokensCurators = (paymentCollected - tokensProtocol).mulPPMRoundUp(queryFeeData.curationCut);

vm.expectEmit(address(subgraphService));
emit ISubgraphService.QueryFeesCollected(_indexer, payer, paymentCollected, tokensCurators);
emit ISubgraphService.QueryFeesCollected(
_indexer,
payer,
allocationId,
subgraphDeploymentId,
paymentCollected,
tokensCurators
);

return paymentCollected;
}
Expand Down
Loading