Skip to content

Commit 9ea269b

Browse files
committed
Remove file
1 parent 100ab26 commit 9ea269b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

contracts/src/core/IAlignedProofAggregationService.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ interface IAlignedProofAggregationService {
1313
/// @notice Event emitted when the SP1 aggregator program VK hash is updated
1414
event SP1AggregatorProgramVKHashUpdated(bytes32 indexed newVKHash);
1515

16+
/// @notice event that gets emitted after a successful aggregated proof verification
17+
event AggregatedProofVerified(bytes32 indexed merkleRoot, bytes32 blobVersionedHash);
18+
1619
/// @notice Method to verify an aggregated proof from aligned
1720
/// @dev This function is called by the aligned proof aggregator after collecting the proofs and aggregating them
1821
/// to be verified on-chain. We expect the blobTransactionHash to be called before
@@ -41,8 +44,5 @@ interface IAlignedProofAggregationService {
4144
/// @param _sp1AggregatorProgramVKHash The new vk hash for the sp1 aggregator program
4245
function setSP1AggregatorProgramVKHash(bytes32 _sp1AggregatorProgramVKHash) external;
4346

44-
/// @notice event that gets emitted after a successful aggregated proof verification
45-
event AggregatedProofVerified(bytes32 indexed merkleRoot, bytes32 blobVersionedHash);
46-
4747
error OnlyAlignedAggregator(address sender);
4848
}

0 commit comments

Comments
 (0)