Skip to content

Commit 02eeb8e

Browse files
committed
Re order params
1 parent 477e24f commit 02eeb8e

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

contracts/scripts/anvil/state/alignedlayer-deployed-anvil-state.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

contracts/src/core/IAlignedProofAggregationService.sol

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
pragma solidity ^0.8.12;
22

33
interface IAlignedProofAggregationService {
4+
5+
/// @notice event that gets emitted after a successful aggregated proof verification
6+
event AggregatedProofVerified(bytes32 indexed merkleRoot, bytes32 blobVersionedHash);
7+
48
/// @notice Event emitted when the Risc0 verifier address is updated
59
event Risc0VerifierAddressUpdated(address indexed newAddress);
610

@@ -13,9 +17,6 @@ interface IAlignedProofAggregationService {
1317
/// @notice Event emitted when the SP1 aggregator program VK hash is updated
1418
event SP1AggregatorProgramVKHashUpdated(bytes32 indexed newVKHash);
1519

16-
/// @notice event that gets emitted after a successful aggregated proof verification
17-
event AggregatedProofVerified(bytes32 indexed merkleRoot, bytes32 blobVersionedHash);
18-
1920
/// @notice Method to verify an aggregated proof from aligned
2021
/// @dev This function is called by the aligned proof aggregator after collecting the proofs and aggregating them
2122
/// to be verified on-chain. We expect the blobTransactionHash to be called before

0 commit comments

Comments
 (0)