File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments