-
Notifications
You must be signed in to change notification settings - Fork 355
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9e11c7f
commit 3e00834
Showing
4 changed files
with
66 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity ^0.8.21; | ||
|
||
error AccessToFallbackDenied(address target, address invoker); | ||
error AccessToFunctionDenied(address target, bytes4 selector, address invoker); | ||
error OnlySelfAllowed(); | ||
error RestrictionWasNotPresent(address restriction); | ||
error RestrictionWasAlreadyPresent(address restriction); | ||
error NoCallsProvided(); | ||
error CallNotAllowed(bytes call); | ||
error ChainZeroAddress(); | ||
error NotAHyperchain(address chainAddress); | ||
error NotAnAdmin(address expected, address actual); | ||
error RemovingPermanentRestriction(); | ||
error UnallowedImplementatioN(bytes32 imlementationHash); | ||
Check warning on line 15 in l1-contracts/contracts/common/L1ContractErrors.sol GitHub Actions / typos
|
||
error ZeroAddress(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters