Contracts Errors
This document consolidates all known errors from the CryptoLegacy contracts and libraries, as well as any relevant supporting contracts and libraries.
Table of Contents
BeneficiaryRegistry (BR1)
No errors in this contract/library.
BuildManagerOwnable (BMO1)
No errors in this contract/library.
Create3Factory (C3F1)
No errors in this contract/library.
CryptoLegacy (CL1)
No errors in this contract/library.
CryptoLegacyBuildManager (CLBM1)
No errors in this contract/library.
CryptoLegacyDiamondBase (CLDB1)
No errors in this contract/library.
CryptoLegacyExternalLens (CLEXL1)
No errors in this contract/library.
CryptoLegacyFactory (CLF1)
No errors in this contract/library.
CryptoLegacyOwnable (CLO1)
No errors in this contract/library.
FeeRegistry (FR1)
No errors in this contract/library.
LegacyMessenger (LM1)
No errors in this contract/library.
LifetimeNft (LN1)
No errors in this contract/library.
LockChainGate (LCG1)
No errors in this contract/library.
MultiPermit (MP1)
No errors in this contract/library.
PluginsRegistry (PR1)
No errors in this contract/library.
ProxyBuilder (PB1)
AdminAlreadyCreated (PB1)
Parameters: None
Description: Raised when trying to create a ProxyBuilderAdmin contract if one already exists under the same environment.
Error Signature: AdminAlreadyCreated()
Raised by: None
Notes / Edge cases: None
AddressMismatch (PB1)
Parameters: None
Description: Raised when a computed deployment address does not match the expected address.
Error Signature: AddressMismatch()
Raised by:
Notes / Edge cases: None
ProxyBuilderAdmin (PBA1)
No errors in this contract/library.
SignatureRoleTimelock (SRT1)
No errors in this contract/library.
ArbSys (AS1)
No errors in this contract/library.
Flags (FLG1)
No errors in this contract/library.
IAaveV3Pool (IAV3P1)
No errors in this contract/library.
IAaveV3PoolDataProvider (IAV3PDP1)
No errors in this contract/library.
WethUnwrap (WU1)
CallbackCallFailed (WU1)
Parameters: None
Description: Raised when WethUnwrap.unwrap_weth() successfully unwraps WETH but the callback back into msg.sender returns false.
Error Signature: CallbackCallFailed()
Raised by:
Notes / Edge cases: Guards the final low-level callback only; upstream WETH transfer/withdraw failures bubble directly from the WETH implementation instead of using this custom error.
IBeneficiaryRegistry (IBR1)
No errors in this contract/library.
IBuildManagerOwnable (IBMO1)
NotTheOwnerOfCryptoLegacy (IBMO1)
Parameters: None
Description: Raised when a check determines that the caller is not the actual owner of the referenced CryptoLegacy contract.
Error Signature: NotTheOwnerOfCryptoLegacy()
Raised by:
Notes / Edge cases: None
CryptoLegacyNotRegistered (IBMO1)
Parameters: None
Description: Raised when a CryptoLegacy contract has not been registered by a valid build manager or is otherwise unknown.
Error Signature: CryptoLegacyNotRegistered()
Raised by:
Notes / Edge cases: None
BuildManagerNotAdded (IBMO1)
Parameters: None
Description: Raised when an operation requires a build manager that is not recognized in the added build managers list.
Error Signature: BuildManagerNotAdded()
Raised by:
Notes / Edge cases: None
ICallProxy (ICP1)
No errors in this contract/library.
ICryptoLegacy (ICL1)
BeneficiarySwitchTimelock (ICL1)
Parameters: None
Description: Raised when attempting to switch a beneficiary before the switch timelock expires.
Error Signature: BeneficiarySwitchTimelock()
Raised by:
Notes / Edge cases: None
ArrayLengthMismatch (ICL1)
Parameters: None
Description: Raised when related arrays are expected to be the same length but are not.
Error Signature: ArrayLengthMismatch()
Raised by:
Notes / Edge cases: None
DisabledFunc (ICL1)
Parameters: None
Description: Raised when a function call is disabled by the contract's internal configuration.
Error Signature: DisabledFunc()
Raised by:
Notes / Edge cases: None
NotTheOwner (ICL1)
Parameters: None
Description: Raised when the caller attempts an owner-only action but is not recognized as the contract owner.
Error Signature: NotTheOwner()
Raised by:
Notes / Edge cases: None
NotTheBeneficiary (ICL1)
Parameters: None
Description: Raised when an address that is not a valid beneficiary tries to perform a beneficiary-only action.
Error Signature: NotTheBeneficiary()
Raised by:
Notes / Edge cases: None
BeneficiaryNotExist (ICL1)
Parameters: None
Description: Raised when a beneficiary hash is not present or has no configuration in storage.
Error Signature: BeneficiaryNotExist()
Raised by:
Notes / Edge cases: None
TooEarly (ICL1)
Parameters: None
Description: Raised when an unlocking or transfer is attempted before the lock period has elapsed.
Error Signature: TooEarly()
Raised by:
Notes / Edge cases: None
IncorrectRefShare (ICL1)
Parameters: None
Description: Raised when a referrer or beneficiary share is invalid or outside allowed bounds.
Error Signature: IncorrectRefShare()
Raised by:
Notes / Edge cases: None
NoValueAllowed (ICL1)
Parameters: None
Description: Raised when a function that requires zero msg.value is called with a nonzero value.
Error Signature: NoValueAllowed()
Raised by:
Notes / Edge cases: None
TooLongArray (ICL1)
Parameters:
maxLength (uint256): Maximum allowed length for the array.
Description: Raised when an array exceeds the maximum allowed length.
Error Signature: TooLongArray(uint256 maxLength)
Raised by:
Notes / Edge cases: None
IncorrectFee (ICL1)
Parameters:
requiredFee (uint256): Exact fee amount required by the operation.
Description: Raised if the fee passed into a function is less than the required amount or otherwise mismatched.
Error Signature: IncorrectFee(uint256 requiredFee)
Raised by:
Notes / Edge cases: None
ZeroAddress (ICL1)
Parameters: None
Description: Raised when a provided address argument is the zero address (i.e., 0x0000000000000000000000000000000000000000).
Error Signature: ZeroAddress()
Raised by:
Notes / Edge cases: None
ZeroTokens (ICL1)
Parameters: None
Description: Raised when an operation that expects one or more tokens is called with zero tokens or an empty list.
Error Signature: ZeroTokens()
Raised by:
Notes / Edge cases: None
InitialFeeNotPaid (ICL1)
Parameters: None
Description: Raised when certain actions require that the initial deployment fee has already been paid, but it has not.
Error Signature: InitialFeeNotPaid()
Raised by:
Notes / Edge cases: None
InitialFeeAlreadyPaid (ICL1)
Parameters: None
Description: Raised if an attempt is made to pay the initial fee again after it has already been settled.
Error Signature: InitialFeeAlreadyPaid()
Raised by:
Notes / Edge cases: None
NotBuildManager (ICL1)
Parameters: None
Description: Raised when a restricted action is attempted by an entity that is not recognized as the Build Manager.
Error Signature: NotBuildManager()
Raised by:
Notes / Edge cases: None
LengthMismatch (ICL1)
Parameters: None
Description: Raised when two or more arrays passed to a function have mismatched lengths, preventing proper correlation of elements.
Error Signature: LengthMismatch()
Raised by:
Notes / Edge cases: None
ShareSumDoesntMatchBase (ICL1)
Parameters: None
Description: Raised when beneficiary share percentages do not sum to the required base (e.g., 10000 basis points).
Error Signature: ShareSumDoesntMatchBase()
Raised by:
Notes / Edge cases: None
OriginalHashDuplicate (ICL1)
Parameters: None
Description: Raised when an original beneficiary hash is already linked and cannot be duplicated.
Error Signature: OriginalHashDuplicate()
Raised by:
Notes / Edge cases: None
DistributionStarted (ICL1)
Parameters: None
Description: Raised when an operation that must occur before distribution cannot proceed because distribution has already begun.
Error Signature: DistributionStarted()
Raised by:
Notes / Edge cases: None
DistributionStartAlreadySet (ICL1)
Parameters: None
Description: Raised if distributionStartAt was already set, yet an attempt is made to set or re-initiate it again.
Error Signature: DistributionStartAlreadySet()
Raised by:
Notes / Edge cases: None
DistributionDelay (ICL1)
Parameters: None
Description: Raised if a beneficiary tries to claim an asset or operation before the required distribution delay.
Error Signature: DistributionDelay()
Raised by:
Notes / Edge cases: None
ChallengePeriodStarted (ICL1)
Parameters: None
Description: Raised when an action that must occur before the challenge period is attempted after it has started.
Error Signature: ChallengePeriodStarted()
Raised by:
Notes / Edge cases: None
AlreadySet (ICL1)
Parameters: None
Description: Raised when a switch or assignment is made but the target was already assigned or set to the same value.
Error Signature: AlreadySet()
Raised by:
Notes / Edge cases: None
BeneficiaryNotSet (ICL1)
Parameters: None
Description: Raised when a beneficiary is assumed to exist but none is configured.
Error Signature: BeneficiaryNotSet()
Raised by:
Notes / Edge cases: None
Pause (ICL1)
Parameters: None
Description: Raised if a call is attempted while the contract is in a paused state, blocking the requested action.
Error Signature: Pause()
Raised by:
Notes / Edge cases: None
IncorrectFacetCutAction (ICL1)
Parameters: None
Description: Raised if the diamond cut (facet management) action is not recognized (not Add, Replace, or Remove).
Error Signature: IncorrectFacetCutAction()
Raised by: None
Notes / Edge cases: None
NotContractOwner (ICL1)
Parameters: None
Description: Raised if a diamond operation expects the diamond's internal owner but is called by someone else.
Error Signature: NotContractOwner()
Raised by: None
Notes / Edge cases: None
FacetNotFound (ICL1)
Parameters: None
Description: Raised when an attempt is made to manage or reference a facet address that cannot be located in storage.
Error Signature: FacetNotFound()
Raised by:
Notes / Edge cases: None
FacetHasNoCode (ICL1)
Parameters: None
Description: Raised if a facet address is found to contain no contract code upon an Add or Replace operation.
Error Signature: FacetHasNoCode()
Raised by: None
Notes / Edge cases: None
NoSelectorsInFacetToCut (ICL1)
Parameters: None
Description: Raised if a facet cut is requested with zero function selectors.
Error Signature: NoSelectorsInFacetToCut()
Raised by: None
Notes / Edge cases: None
FacetCantBeZero (ICL1)
Parameters: None
Description: Raised if an Add, Replace, or Remove action references a zero address for the facet.
Error Signature: FacetCantBeZero()
Raised by:
Notes / Edge cases: None
CantRemoveImmutableFunctions (ICL1)
Parameters: None
Description: Raised if a removal is attempted on a function that is immutable (defined directly in the diamond).
Error Signature: CantRemoveImmutableFunctions()
Raised by:
Notes / Edge cases: None
CantAddFunctionThatAlreadyExists (ICL1)
Parameters: None
Description: Raised if a new facet or plugin tries to add a function selector that already exists in the contract.
Error Signature: CantAddFunctionThatAlreadyExists()
Raised by:
Notes / Edge cases: None
CantReplaceFunctionWithSameFunction (ICL1)
Parameters: None
Description: Raised if a Replace operation attempts to replace a function selector with a facet that already provides it.
Error Signature: CantReplaceFunctionWithSameFunction()
Raised by: None
Notes / Edge cases: None
InitFunctionReverted (ICL1)
Parameters: None
Description: Raised if the init function (delegatecall) reverts during a diamond cut.
Error Signature: InitFunctionReverted()
Raised by: None
Notes / Edge cases: None
InitAddressZeroButCalldataIsNot (ICL1)
Parameters: None
Description: Raised if an address is zero but non-empty calldata was provided for the init function, leading to a mismatch.
Error Signature: InitAddressZeroButCalldataIsNot()
Raised by: None
Notes / Edge cases: None
InitCalldataZeroButAddressIsNot (ICL1)
Parameters: None
Description: Raised if an init address is non-zero but the calldata is empty, which is invalid for a diamond cut initialization.
Error Signature: InitCalldataZeroButAddressIsNot()
Raised by: None
Notes / Edge cases: None
PluginNotRegistered (ICL1)
Parameters: None
Description: Raised if a plugin is used that is not recognized in the plugins registry.
Error Signature: PluginNotRegistered()
Raised by:
Notes / Edge cases: None
TransferFeeFailed (ICL1)
Parameters:
response (bytes): Raw response bytes from the failed fee transfer.
Description: Raised when transferring or refunding a fee fails and returns error data.
Error Signature: TransferFeeFailed(bytes response)
Raised by:
Notes / Edge cases: None
TooBigMultiplier (ICL1)
Parameters:
maxMultiplier (uint8): Maximum permitted gas limit multiplier.
Description: Raised when a gas limit multiplier exceeds the permitted maximum.
Error Signature: TooBigMultiplier(uint8 maxMultiplier)
Raised by:
Notes / Edge cases: None
ICryptoLegacyBuildManager (ICLBM1)
AlreadyLifetime (ICLBM1)
Parameters: None
Description: Raised if an operation tries to pay a lifetime fee or set a lifetime NFT, but the user already has lifetime status.
Error Signature: AlreadyLifetime()
Raised by: None
Notes / Edge cases: None
WithdrawFeeFailed (ICLBM1)
Parameters:
reason (bytes): Raw revert data returned by the failed withdrawal.
Description: Raised when a fee withdrawal fails and returns revert data.
Error Signature: WithdrawFeeFailed(bytes reason)
Raised by:
Notes / Edge cases: None
NotValidTimeout (ICLBM1)
Parameters: None
Description: Raised if the provided interval or timeout is not valid for the expected usage (e.g., not matching required durations).
Error Signature: NotValidTimeout()
Raised by:
Notes / Edge cases: None
IncorrectFee (ICLBM1)
Parameters:
feeToTake (uint256): Fee amount the build manager expected to collect.
Description: Raised if the fee passed into a function is less than the required amount or otherwise mismatched.
Error Signature: IncorrectFee(uint256 feeToTake)
Raised by:
Notes / Edge cases: None
BelowMinimumSupply (ICLBM1)
Parameters:
supplyLimit (uint256): Minimum supply threshold required for the operation.
Description: Raised when an operation requires a minimum supply but the current supply is below the configured limit.
Error Signature: BelowMinimumSupply(uint256 supplyLimit)
Raised by:
Notes / Edge cases: None
NotRegisteredCryptoLegacy (ICLBM1)
Parameters: None
Description: Raised when a CryptoLegacy contract is not registered in the build manager.
Error Signature: NotRegisteredCryptoLegacy()
Raised by:
Notes / Edge cases: None
NotOwnerOfCryptoLegacy (ICLBM1)
Parameters: None
Description: Raised when the caller is not the owner of the specified CryptoLegacy contract.
Error Signature: NotOwnerOfCryptoLegacy()
Raised by:
Notes / Edge cases: None
TransferFeeFailed (ICLBM1)
Parameters:
response (bytes): Raw response bytes from the failed fee transfer.
Description: Raised when transferring or refunding a fee fails and returns error data.
Error Signature: TransferFeeFailed(bytes response)
Raised by:
Notes / Edge cases: None
ICryptoLegacyDiamondBase (ICLDB1)
FunctionNotExists (ICLDB1)
Parameters:
selector (bytes4): Function selector that was not found.
Description: Raised when a function call does not match any available facet or plugin, indicating that the function does not exist.
Error Signature: FunctionNotExists(bytes4 selector)
Raised by:
Notes / Edge cases: None
NotSelfCall (ICLDB1)
Parameters: None
Description: Raised when a static call checker detects that a call is not made from the contract to itself (self-call is required).
Error Signature: NotSelfCall()
Raised by:
Notes / Edge cases: None
ICryptoLegacyFactory (ICLF1)
NotBuildOperator (ICLF1)
Parameters: None
Description: Raised when an action is attempted by an address that is not registered as an allowed build operator.
Error Signature: NotBuildOperator()
Raised by:
Notes / Edge cases: None
ICryptoLegacyLens (ICLL1)
No errors in this contract/library.
ICryptoLegacyOwnable (ICLO1)
OwnableUnauthorizedAccount (ICLO1)
Parameters:
account (address): Account that failed an authorization check.
Description: Raised when an account that is not the owner attempts an owner-restricted action.
Error Signature: OwnableUnauthorizedAccount(address account)
Raised by:
Notes / Edge cases: None
ICryptoLegacyPlugin (ICLP1)
No errors in this contract/library.
ICryptoLegacyUpdaterPlugin (ICLUP1)
NotTheUpdater (ICLUP1)
Parameters: None
Description: Raised when a function that only an approved updater may call is attempted by an address that is not recognized as an updater.
Error Signature: NotTheUpdater()
Raised by:
Notes / Edge cases: None
IDeBridgeGate (IDBG1)
No errors in this contract/library.
IDiamondCut (IDC1)
No errors in this contract/library.
IDiamondLoupe (IDL1)
No errors in this contract/library.
IFeeRegistry (IFR1)
WithdrawAccumulatedFeeFailed (IFR1)
Parameters:
reason (bytes): Raw revert data returned by the failed withdrawal.
Description: Raised when withdrawing accumulated fees fails and returns revert data.
Error Signature: WithdrawAccumulatedFeeFailed(bytes reason)
Raised by:
Notes / Edge cases: None
PctSumDoesntMatchBase (IFR1)
Parameters: None
Description: Raised when fee beneficiary shares do not sum to the required base (10000).
Error Signature: PctSumDoesntMatchBase()
Raised by:
Notes / Edge cases: None
TooBigPct (IFR1)
Parameters: None
Description: Raised when a discount or share percentage is greater than the permissible maximum (10000 bps).
Error Signature: TooBigPct()
Raised by:
Notes / Edge cases: None
RefAlreadyCreated (IFR1)
Parameters: None
Description: Raised if a referral code is being created but it already exists in the registry.
Error Signature: RefAlreadyCreated()
Raised by:
Notes / Edge cases: None
ZeroCode (IFR1)
Parameters: None
Description: Raised if an attempt is made to create or use a referral code that is bytes8(0), which is disallowed.
Error Signature: ZeroCode()
Raised by:
Notes / Edge cases: None
NotOperator (IFR1)
Parameters: None
Description: Raised if a function limited to code operators is called by an address not in that set.
Error Signature: NotOperator()
Raised by:
Notes / Edge cases: None
NotReferrer (IFR1)
Parameters: None
Description: Raised if a call referencing a referral code is made by someone other than the recognized code owner (referrer).
Error Signature: NotReferrer()
Raised by:
Notes / Edge cases: None
AlreadyReferrer (IFR1)
Parameters: None
Description: Raised if a new owner address is designated for a referral code but already has a code assigned.
Error Signature: AlreadyReferrer()
Raised by:
Notes / Edge cases: None
CodeNotCreated (IFR1)
Parameters: None
Description: Raised if an update or cross-chain referral action references a code that does not exist in storage.
Error Signature: CodeNotCreated()
Raised by:
Notes / Edge cases: None
ILockChainGate (ILCG1)
ArrayLengthMismatch (ILCG1)
Parameters: None
Description: Raised when related arrays are expected to be the same length but are not.
Error Signature: ArrayLengthMismatch()
Raised by:
Notes / Edge cases: None
AlreadyLocked (ILCG1)
Parameters: None
Description: Raised when an NFT is already locked for a holder and a new lock attempt is made without unlocking first.
Error Signature: AlreadyLocked()
Raised by:
Notes / Edge cases: None
LockedToChains (ILCG1)
Parameters: None
Description: Raised when an action (e.g., unlocking) is attempted but the NFT is still locked to multiple chains.
Error Signature: LockedToChains()
Raised by:
Notes / Edge cases: None
CrossChainLock (ILCG1)
Parameters: None
Description: Raised when an action cannot proceed because the NFT is currently locked under a cross-chain process.
Error Signature: CrossChainLock()
Raised by:
Notes / Edge cases: None
TooEarly (ILCG1)
Parameters: None
Description: Raised when an unlocking or transfer is attempted before the lock period has elapsed.
Error Signature: TooEarly()
Raised by:
Notes / Edge cases: None
DestinationChainNotSpecified (ILCG1)
Parameters: None
Description: Raised when a cross-chain locking action references a chain ID for which no destination contract is specified.
Error Signature: DestinationChainNotSpecified()
Raised by:
Notes / Edge cases: None
TokenNotLocked (ILCG1)
Parameters: None
Description: Raised when an NFT-based action is attempted for a token that is not currently locked.
Error Signature: TokenNotLocked()
Raised by:
Notes / Edge cases: None
TokenIdMismatch (ILCG1)
Parameters:
checkTokenId (uint256): Token ID that was expected for the operation.
Description: Raised when the token ID being updated or transferred does not match the token ID that was locked or recognized for the operation.
Error Signature: TokenIdMismatch(uint256 checkTokenId)
Raised by:
Notes / Edge cases: None
AlreadyLockedToChain (ILCG1)
Parameters: None
Description: Raised when attempting to lock an NFT to a chain to which it is already locked.
Error Signature: AlreadyLockedToChain()
Raised by:
Notes / Edge cases: None
SourceNotSpecified (ILCG1)
Parameters: None
Description: Raised if a cross-chain message originates from a chain ID for which no source contract is set in the gate configuration.
Error Signature: SourceNotSpecified()
Raised by:
Notes / Edge cases: None
NotLockedByChain (ILCG1)
Parameters: None
Description: Raised when an unlock-from-chain operation is attempted but the NFT is not locked by that chain.
Error Signature: NotLockedByChain()
Raised by:
Notes / Edge cases: None
DestinationNotSpecified (ILCG1)
Parameters: None
Description: Raised when no destination chain contract is configured for the specified chain.
Error Signature: DestinationNotSpecified()
Raised by: None
Notes / Edge cases: None
NotAvailable (ILCG1)
Parameters: None
Description: Raised when an operation on a locked NFT is not available to the caller or is blocked by conditions.
Error Signature: NotAvailable()
Raised by:
Notes / Edge cases: None
IncorrectFee (ILCG1)
Parameters:
requiredFee (uint256): Exact fee amount required by the operation.
Description: Raised if the fee passed into a function is less than the required amount or otherwise mismatched.
Error Signature: IncorrectFee(uint256 requiredFee)
Raised by:
Notes / Edge cases: None
SameAddress (ILCG1)
Parameters: None
Description: Raised when a transfer is requested, but the source and destination addresses are the same.
Error Signature: SameAddress()
Raised by:
Notes / Edge cases: None
RecipientLocked (ILCG1)
Parameters: None
Description: Raised when trying to transfer an NFT to a recipient who already has a locked NFT, and the system prohibits such a scenario.
Error Signature: RecipientLocked()
Raised by:
Notes / Edge cases: None
TransferLockTimeout (ILCG1)
Parameters: None
Description: Raised when a transfer or unlock is attempted after the transfer timeout has elapsed.
Error Signature: TransferLockTimeout()
Raised by:
Notes / Edge cases: None
NotCallProxy (ILCG1)
Parameters: None
Description: Raised when a cross-chain operation is not being relayed by the expected CallProxy contract.
Error Signature: NotCallProxy()
Raised by:
Notes / Edge cases: None
ChainIdMismatch (ILCG1)
Parameters: None
Description: Raised when a cross-chain message’s chain ID does not match the chain ID that the contract expects for the submission.
Error Signature: ChainIdMismatch()
Raised by:
Notes / Edge cases: None
NotValidSender (ILCG1)
Parameters: None
Description: Raised when a cross-chain message’s native sender does not match the recognized source contract.
Error Signature: NotValidSender()
Raised by:
Notes / Edge cases: None
NotAllowed (ILCG1)
Parameters: None
Description: Raised when an operation on a locked NFT is restricted to certain operators, but the caller is not allowed.
Error Signature: NotAllowed()
Raised by:
Notes / Edge cases: None
TransferFeeFailed (ILCG1)
Parameters:
response (bytes): Raw response bytes from the failed fee transfer.
Description: Raised when transferring or refunding a fee fails and returns error data.
Error Signature: TransferFeeFailed(bytes response)
Raised by:
Notes / Edge cases: None
ILegacyMessenger (ILM1)
No errors in this contract/library.
ILido (ILD1)
No errors in this contract/library.
ILidoWithdrawalQueue (ILWQ1)
No errors in this contract/library.
ILifetimeNft (ILN1)
NotTheMinter (ILN1)
Parameters: None
Description: Raised when an address attempts to mint a LifetimeNft but is not designated as an active minter operator.
Error Signature: NotTheMinter()
Raised by:
Notes / Edge cases: None
IPermit2 (IPM21)
No errors in this contract/library.
IPluginsRegistry (IPR1)
No errors in this contract/library.
ISafeMinimalMultisig (ISM1)
MultisigProposalNotPending (ISM1)
Parameters: None
Description: Raised when a proposal is expected to be pending but is not.
Error Signature: MultisigProposalNotPending()
Raised by:
Notes / Edge cases: None
MultisigNotConfirmed (ISM1)
Parameters: None
Description: Raised when a proposal lacks the required confirmations for execution.
Error Signature: MultisigNotConfirmed()
Raised by:
Notes / Edge cases: None
MultisigExecutionFailed (ISM1)
Parameters: None
Description: Raised if the low-level call (execution of a proposal) fails or reverts.
Error Signature: MultisigExecutionFailed()
Raised by:
Notes / Edge cases: None
MultisigMethodNotAllowed (ISM1)
Parameters: None
Description: Raised if a proposal references a function selector that is not permitted by the chosen multi-sig flow.
Error Signature: MultisigMethodNotAllowed()
Raised by:
Notes / Edge cases: None
MultisigVoterNotAllowed (ISM1)
Parameters: None
Description: Raised when an address that is not in the set of recognized voters attempts to create or confirm a proposal.
Error Signature: MultisigVoterNotAllowed()
Raised by:
Notes / Edge cases: None
MultisigOnlyExecutor (ISM1)
Parameters: None
Description: Raised if a proposal is executed by an entity other than the contract itself (where the design requires internal execution).
Error Signature: MultisigOnlyExecutor()
Raised by:
Notes / Edge cases: None
MultisigIncorrectRequiredConfirmations (ISM1)
Parameters: None
Description: Raised if an attempt is made to set or initialize a multi-sig with a required confirmation count that is zero or exceeds the number of voters.
Error Signature: MultisigIncorrectRequiredConfirmations()
Raised by:
Notes / Edge cases: None
MultisigNothingToWithdraw (ISM1)
Parameters: None
Description: Raised when a withdrawal is attempted but there is no held ETH to withdraw.
Error Signature: MultisigNothingToWithdraw()
Raised by:
Notes / Edge cases: None
TransferFeeFailed (ISM1)
Parameters:
response (bytes): Raw response bytes from the failed fee transfer.
Description: Raised when transferring or refunding a fee fails and returns error data.
Error Signature: TransferFeeFailed(bytes response)
Raised by:
Notes / Edge cases: None
ISignatureRoleTimelock (ISRT1)
DisabledFunction (ISRT1)
Parameters: None
Description: Raised when a function or signature is disabled in the timelock configuration.
Error Signature: DisabledFunction()
Raised by:
Notes / Edge cases: None
AlreadyHaveRole (ISRT1)
Parameters: None
Description: Raised when adding a role to an account that already holds it.
Error Signature: AlreadyHaveRole()
Raised by:
Notes / Edge cases: None
DoesntHaveRole (ISRT1)
Parameters: None
Description: Raised when removing or modifying a role for an account that does not hold the role.
Error Signature: DoesntHaveRole()
Raised by:
Notes / Edge cases: None
RoleDontExist (ISRT1)
Parameters: None
Description: Raised when assigning a signature role to a role identifier that does not exist.
Error Signature: RoleDontExist()
Raised by:
Notes / Edge cases: None
CallerNotCurrentAddress (ISRT1)
Parameters: None
Description: Raised when a function marked for internal use is called by an external address instead of the contract itself.
Error Signature: CallerNotCurrentAddress()
Raised by:
Notes / Edge cases: None
IncorrectSignatureIndex (ISRT1)
Parameters: None
Description: Raised when an index for a signature array is incorrect or out-of-bounds during a removal or update action.
Error Signature: IncorrectSignatureIndex()
Raised by:
Notes / Edge cases: None
IncorrectRoleIndex (ISRT1)
Parameters: None
Description: Raised when an index for a role array is incorrect or out-of-bounds during role management.
Error Signature: IncorrectRoleIndex()
Raised by:
Notes / Edge cases: None
CallFailed (ISRT1)
Parameters:
errorMessage (bytes): Raw revert data returned by the failed call.
Description: Raised when an external call made by the timelock fails.
Error Signature: CallFailed(bytes errorMessage)
Raised by:
Notes / Edge cases: None
CallNotScheduled (ISRT1)
Parameters: None
Description: Raised when attempting to execute or cancel a call that is not in the pending schedule.
Error Signature: CallNotScheduled()
Raised by:
Notes / Edge cases: None
NotPending (ISRT1)
Parameters: None
Description: Raised when a scheduled call has already been executed or canceled, so it is no longer pending.
Error Signature: NotPending()
Raised by:
Notes / Edge cases: None
TimelockActive (ISRT1)
Parameters: None
Description: Raised when execution is attempted before the timelock period has elapsed.
Error Signature: TimelockActive()
Raised by:
Notes / Edge cases: None
TimelockExpired (ISRT1)
Parameters: None
Description: Raised when execution is attempted after the timelock’s valid execution window.
Error Signature: TimelockExpired()
Raised by:
Notes / Edge cases: None
CallerHaveNoRequiredRole (ISRT1)
Parameters:
requiredRole (bytes32): Role identifier the caller must have.
Description: Raised when a caller tries to schedule or execute an action requiring a role they do not possess.
Error Signature: CallerHaveNoRequiredRole(bytes32 requiredRole)
Raised by:
Notes / Edge cases: None
CallAlreadyScheduled (ISRT1)
Parameters: None
Description: Raised when a call is scheduled more than once with the same combination of target, data, and execution time.
Error Signature: CallAlreadyScheduled()
Raised by:
Notes / Edge cases: None
SignatureAlreadyExists (ISRT1)
Parameters: None
Description: Raised when an attempt is made to add a signature role that already exists for a given target/function.
Error Signature: SignatureAlreadyExists()
Raised by:
Notes / Edge cases: None
SignatureTimeLockNotSet (ISRT1)
Parameters:
signature (bytes4): Function selector whose timelock is missing.
Description: Raised if a signature-based action is processed but no timelock parameter is set.
Error Signature: SignatureTimeLockNotSet(bytes4 signature)
Raised by:
Notes / Edge cases: None
OutOfTimelockBounds (ISRT1)
Parameters:
maxTimelock (uint256): Maximum allowed timelock duration.
Description: Raised when a proposed timelock duration exceeds the allowed maximum limit.
Error Signature: OutOfTimelockBounds(uint256 maxTimelock)
Raised by:
Notes / Edge cases: None
OutOfMaxExecutionPeriodBounds (ISRT1)
Parameters:
minPeriod (uint256): Minimum execution window length allowed.maxPeriod (uint256): Maximum execution window length allowed.
Description: Raised if a proposed max execution period for scheduled calls is out of the contract’s acceptable range.
Error Signature: OutOfMaxExecutionPeriodBounds(uint256 minPeriod, uint256 maxPeriod)
Raised by:
Notes / Edge cases: None
IStataToken (ISTA1)
No errors in this contract/library.
IStataTokenFactory (ISTF1)
No errors in this contract/library.
ITrustedGuardiansPlugin (ITGP1)
NotGuardian (ITGP1)
Parameters: None
Description: Raised if a function restricted to guardians is attempted by an address that is not in the guardian set.
Error Signature: NotGuardian()
Raised by:
Notes / Edge cases: None
ZeroGuardian (ITGP1)
Parameters: None
Description: Raised when a guardian identifier is zero or empty.
Error Signature: ZeroGuardian()
Raised by:
Notes / Edge cases: None
ThresholdDontMet (ITGP1)
Parameters: None
Description: Raised if an operation expects a certain guardian threshold to be met but it has not been reached.
Error Signature: ThresholdDontMet()
Raised by: None
Notes / Edge cases: None
ThresholdTooBig (ITGP1)
Parameters: None
Description: Raised when the guardians threshold exceeds the maximum allowed value.
Error Signature: ThresholdTooBig()
Raised by:
Notes / Edge cases: None
GuardianAlreadyVoted (ITGP1)
Parameters: None
Description: Raised if a guardian tries to vote or re-vote when their vote is already recorded.
Error Signature: GuardianAlreadyVoted()
Raised by:
Notes / Edge cases: None
GuardiansTimeoutCantBeZero (ITGP1)
Parameters: None
Description: Raised when the guardians challenge timeout is set to zero.
Error Signature: GuardiansTimeoutCantBeZero()
Raised by:
Notes / Edge cases: None
MaxGuardiansTimeout (ITGP1)
Parameters:
guardiansThreshold (uint64): Guardians threshold value that exceeds the allowed maximum.
Description: Raised if a proposed guardians challenge timeout exceeds the permitted maximum (e.g., 30 days).
Error Signature: MaxGuardiansTimeout(uint64 guardiansThreshold)
Raised by:
Notes / Edge cases: None
DiamondLoupeFacet (DLF1)
No errors in this contract/library.
IUniversalRouter (IUR1)
No errors in this contract/library.
IWETH (IWETH1)
No errors in this contract/library.
IWstETH (IWSTETH1)
No errors in this contract/library.
WethUnwrapIWETH (WUI1)
No errors in this contract/library.
LibCLUtils (LCLU1)
ApprovalFailed (LCLU1)
Parameters: None
Description: Raised when LibCLUtils.approveToken() performs the low-level ERC-20 approval call and the call either reverts or returns an explicit false.
Error Signature: ApprovalFailed()
Raised by:
Notes / Edge cases: Covers both non-standard ERC-20 approve reverts and tokens that return a boolean false instead of reverting.
LibClaimMigrationCore (LCMC1)
MigrationInvalidDelta (LCMC1)
Parameters:
outBalanceBefore (uint256): Source-token balance snapshot before the conversion.amountOut (uint256): Amount of source token that left the contract.amountIn (uint256): Amount of destination token that arrived.
Description: Raised when the conversion delta used for claim migration is invalid because one of the required balances/deltas is zero.
Error Signature: MigrationInvalidDelta(uint256 outBalanceBefore, uint256 amountOut, uint256 amountIn)
Raised by:
Notes / Edge cases: start() raises this error directly when the source-token delta is zero before any ratio can be computed. The same error also surfaces transitively through migrate() and complete() when they delegate into calculateFractionAndRatio() or _applyPendingMigration().
MigrationAmountTooSmall (LCMC1)
Parameters:
outBalanceBefore (uint256): Source-token balance snapshot before the conversion.amountOut (uint256): Amount of source token that left the contract.amountIn (uint256): Amount of destination token that arrived.fraction (uint256): Computed migration fraction that rounded to zero.ratio (uint256): Computed exchange ratio that rounded to zero.
Description: Raised when the conversion is so small relative to the tracked balances that the scaled migration fraction or ratio rounds to zero.
Error Signature: MigrationAmountTooSmall(uint256 outBalanceBefore, uint256 amountOut, uint256 amountIn, uint256 fraction, uint256 ratio)
Raised by:
Notes / Edge cases: This error is raised directly by calculateFractionAndRatio() and then bubbles through migrate(), complete(), and _applyPendingMigration() when the computed fraction or ratio rounds to zero.
LibOneStepClaimMigration (LOSCM1)
No errors in this contract/library.
LibTwoStepClaimMigration (LTSCM1)
NoPendingMigration (LTSCM1)
Parameters: None
Description: Raised when a two-step migration operation expects an active pending migration but none exists.
Error Signature: NoPendingMigration()
Raised by:
Notes / Edge cases: Protects both the completion path and the emergency-abandon path from running against cleared or never-initialized migration state.
PendingMigrationAlreadyExists (LTSCM1)
Parameters:
tokenOut (address): Source token associated with the already active pending migration.
Description: Raised when LibTwoStepClaimMigration.start() is called while another pending migration is still active.
Error Signature: PendingMigrationAlreadyExists(address tokenOut)
Raised by:
Notes / Edge cases: Enforces the library invariant that only one delayed migration may be active at a time.
TokenAlreadyLocked (LTSCM1)
Parameters:
token (address): Token whose beneficiary claim slots are already locked.
Description: Raised when start() encounters a beneficiary claim slot already set to the migration lock sentinel.
Error Signature: TokenAlreadyLocked(address token)
Raised by:
Notes / Edge cases: Prevents overlapping delayed migrations that would otherwise reuse claim slots already locked by another in-flight migration.
LibCreate3 (LC31)
ErrorCreatingProxy (LC31)
Parameters: None
Description: Raised when the CREATE3 proxy deployment fails.
Error Signature: ErrorCreatingProxy()
Raised by:
Notes / Edge cases: None
ErrorCreatingContract (LC31)
Parameters: None
Description: Raised when CREATE3 proxy deployment succeeds but the final contract creation fails.
Error Signature: ErrorCreatingContract()
Raised by:
Notes / Edge cases: None
TargetAlreadyExists (LC31)
Parameters: None
Description: Raised when the target deployment address already has code.
Error Signature: TargetAlreadyExists()
Raised by:
Notes / Edge cases: None
LibCryptoLegacy (LCL1)
No errors in this contract/library.
LibCryptoLegacyDeploy (LCLD1)
BytecodeEmpty (LCLD1)
Parameters: None
Description: Raised when a CREATE2 deployment is requested but the supplied bytecode is empty.
Error Signature: BytecodeEmpty()
Raised by:
Notes / Edge cases: None
AddressMismatch (LCLD1)
Parameters: None
Description: Raised when a computed deployment address does not match the expected address.
Error Signature: AddressMismatch()
Raised by:
Notes / Edge cases: None
Create3Failed (LCLD1)
Parameters: None
Description: Raised when a CREATE3 deployment fails to produce a contract address.
Error Signature: Create3Failed()
Raised by: None
Notes / Edge cases: None
LibCryptoLegacyPlugins (LCLP1)
No errors in this contract/library.
LibDiamond (LD1)
InitializationFunctionReverted (LD1)
Parameters:
_initializationContractAddress (address): Initialization target that received the delegatecall during the diamond cut._calldata (bytes): Initialization calldata forwarded to the delegatecall.
Description: Raised when the post-cut initialization delegatecall fails without bubbling a concrete revert reason.
Error Signature: InitializationFunctionReverted(address _initializationContractAddress, bytes _calldata)
Raised by:
Notes / Edge cases: Surfaced only when the low-level delegatecall returns success == false without a decodable custom error or string reason.
LibSafeMinimalBeneficiaryMultisig (LSMB1)
No errors in this contract/library.
LibSafeMinimalMultisig (LSM1)
No errors in this contract/library.
LibTrustedGuardiansPlugin (LTGP1)
No errors in this contract/library.
BeneficiaryAaveV3SupplyPlugin (BALP1)
ZeroAmount (BALP1)
Parameters: None
Description: Raised when an Aave beneficiary-plugin action receives a zero input amount or zero share amount.
Error Signature: ZeroAmount()
Raised by:
Notes / Edge cases: None
ATokenNotFound (BALP1)
Parameters: None
Description: Raised when the configured PoolDataProvider returns the zero address instead of a valid aToken for the requested reserve asset.
Error Signature: ATokenNotFound()
Raised by:
Notes / Edge cases: The error is raised directly inside _getAToken(asset) and then bubbles into baavesSupply(), baavesWithdraw(), baavesWrapATokenToStataToken(), and baavesUnwrapStataTokenToAToken().
StataTokenNotFound (BALP1)
Parameters: None
Description: Raised when the configured StataTokenFactory returns the zero address instead of a wrapper for the requested reserve asset.
Error Signature: StataTokenNotFound()
Raised by:
Notes / Edge cases: The error is raised directly inside _getStataToken(asset) and then bubbles into baavesWrapATokenToStataToken(), baavesUnwrapStataTokenToAToken(), baavesDepositToStataToken(), and baavesRedeemFromStataToken().
BeneficiaryLidoStakingPlugin (BLSP1)
ZeroStEthAmount (BLSP1)
Parameters: None
Description: Raised when a stETH wrapping request is submitted with a zero stETH amount.
Error Signature: ZeroStEthAmount()
Raised by:
Notes / Edge cases: None
ZeroWethAmount (BLSP1)
Parameters: None
Description: Raised when a WETH-based Lido action is requested with a zero WETH amount.
Error Signature: ZeroWethAmount()
Raised by:
Notes / Edge cases: None
ZeroWstEthAmount (BLSP1)
Parameters: None
Description: Raised when an unwrap request is submitted with a zero wstETH amount.
Error Signature: ZeroWstEthAmount()
Raised by:
Notes / Edge cases: None
InsufficientStEth (BLSP1)
Parameters: None
Description: Raised when the plugin is asked to wrap more stETH than it currently holds.
Error Signature: InsufficientStEth()
Raised by:
Notes / Edge cases: None
InsufficientWstEth (BLSP1)
Parameters: None
Description: Raised when the plugin is asked to unwrap more wstETH than it currently holds.
Error Signature: InsufficientWstEth()
Raised by:
Notes / Edge cases: None
LidoRequestIdsEmpty (BLSP1)
Parameters: None
Description: Raised when the Lido plugin has no pending request IDs to claim or when the request list being stored is unexpectedly empty.
Error Signature: LidoRequestIdsEmpty()
Raised by:
Notes / Edge cases: blsLidoClaimWithdrawals() and blsLidoUnsafeClaimWithdrawals() raise this error directly when no cached request IDs exist. The two request functions surface the same error transitively via _storeLidoRequestIds(requestIds) when the withdrawal queue unexpectedly returns an empty list. blsLidoAbandonMigration() does not raise this error.
WethUnwrapAmountMismatch (BLSP1)
Parameters: None
Description: Raised when the ETH balance delta after WethUnwrap.unwrap_weth() does not equal the requested WETH amount.
Error Signature: WethUnwrapAmountMismatch()
Raised by:
Notes / Edge cases: None
WstEthWrapFailed (BLSP1)
Parameters: None
Description: Raised when the low-level call that wraps ETH into wstETH returns false.
Error Signature: WstEthWrapFailed()
Raised by:
Notes / Edge cases: None
EmptyWithdrawalAmounts (BLSP1)
Parameters: None
Description: Raised when a withdrawal-request action is submitted with an empty amounts array.
Error Signature: EmptyWithdrawalAmounts()
Raised by:
Notes / Edge cases: None
PendingMigrationActive (BLSP1)
Parameters: None
Description: Raised when the emergency unsafe-claim path is attempted while the fair two-step migration is still active.
Error Signature: PendingMigrationActive()
Raised by:
Notes / Edge cases: None
BeneficiarySwitchGuardAlreadyActive (BLSP1)
Parameters: None
Description: Raised when the plugin tries to activate the beneficiary-switch guard while it is already active.
Error Signature: BeneficiarySwitchGuardAlreadyActive()
Raised by:
Notes / Edge cases: The error is raised directly by _activateBeneficiarySwitchGuard(cls) and bubbles into blsLidoRequestStEthWithdrawal() and blsLidoRequestWstEthWithdrawal().
BeneficiaryPluginAddRights (BPAR1)
No errors in this contract/library.
BeneficiaryUniswapV4SwapPlugin (BU4SP1)
ZeroAmount (BU4SP1)
Parameters: None
Description: Raised when a Uniswap V4 swap request is submitted with a zero input amount.
Error Signature: ZeroAmount()
Raised by:
Notes / Edge cases: None
EmptyPath (BU4SP1)
Parameters: None
Description: Raised when the multi-hop exact-input swap is called with an empty route.
Error Signature: EmptyPath()
Raised by:
Notes / Edge cases: None
CryptoLegacyBasePlugin (CLBP1)
No errors in this contract/library.
LegacyRecoveryPlugin (LRP1)
No errors in this contract/library.
LensPlugin (LP1)
No errors in this contract/library.
NftLegacyPlugin (NLP1)
No errors in this contract/library.
ReceiveEthPlugin (REP1)
NoEthToWrap (REP1)
Parameters: None
Description: Raised when wrapEthToWeth() is called while the plugin holds no ETH balance to convert into WETH.
Error Signature: NoEthToWrap()
Raised by:
Notes / Edge cases: Triggered before any WETH deposit or distribution-state update is attempted.
TrustedGuardiansPlugin (TGP1)
No errors in this contract/library.
UpdateRolePlugin (URP1)
No errors in this contract/library.
Parameter Types
address
EOA or contract address
bytes
Dynamic byte array
bytes4
4-byte selector
bytes32
Fixed-length 32-byte value
uint8
Unsigned 8-bit integer
uint64
Unsigned 64-bit integer
uint256
Unsigned 256-bit integer
Last updated

