Skip to content
Open
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
2 changes: 2 additions & 0 deletions contracts/src/core/AlignedLayerServiceManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@ contract AlignedLayerServiceManager is

function setDisabledVerifiers(uint256 bitmap) external onlyOwner {
disabledVerifiers = bitmap;
emit DisabledVerifiersUpdated(bitmap);
}

function verifyBatchInclusion(
Expand Down Expand Up @@ -324,6 +325,7 @@ contract AlignedLayerServiceManager is


function setAggregator(address _alignedAggregator) public onlyOwner {
emit AggregatorUpdated(alignedAggregator, _alignedAggregator);
alignedAggregator = _alignedAggregator;
}

Expand Down
5 changes: 5 additions & 0 deletions contracts/src/core/IAlignedLayerServiceManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ interface IAlignedLayerServiceManager {
event BatcherBalanceUpdated(address indexed batcher, uint256 newBalance);
event VerifierDisabled(uint8 indexed verifierIdx);
event VerifierEnabled(uint8 indexed verifierIdx);
event AggregatorUpdated(
address indexed previousAggregator,
address indexed newAggregator
);
event DisabledVerifiersUpdated(uint256 bitmap);

// ERRORS
error BatchAlreadySubmitted(bytes32 batchIdentifierHash); // 3102f10c
Expand Down