Error & Revert Reference

Error & Revert Reference

When a GenLayer protocol contract rejects a call, it reverts with a custom error rather than a plain string. Tooling that does not have the contract ABI shows you only the raw revert data — a 4-byte selector such as 0x632be5a1, sometimes followed by ABI-encoded arguments. This page lets you translate that selector back into a named error, understand what it means, and see the most common cause or fix.

How to Look Up a Selector

The first four bytes of a revert payload identify the error. For example, a revert that begins 0x632be5a1 corresponds to FeeValueMustBeNonZero(uint256) — a required fee field was left at zero.

  • If you have the full revert data, take the first four bytes (the leading 0x plus eight hex characters) and find it in the tables below.
  • The selector is derived as the first four bytes of keccak256("ErrorName(type1,type2,...)"), using the argument types only — no parameter names, no spaces. Any tool that computes function/error selectors (for instance, cast 4byte-decode or cast sig) uses the same rule.
  • Errors that carry arguments (for example BatchSizeExceeded(uint256,uint256)) encode those values immediately after the selector; the parenthesized note in the Meaning column tells you what each argument is.

Selectors are computed from the exact error signature. FeeValueMustBeNonZero(uint256) and a hypothetical FeeValueMustBeNonZero() are different selectors. When computing a selector yourself, always use the canonical, type-only signature and omit parameter names — hashing a signature that still contains parameter names produces a wrong selector.

Common Encoding Pitfalls

Some reverts you hit while integrating are not protocol errors at all, but encoding mistakes in the request you sent. A few recurring ones:

  • Write-transaction calldata must be wrapped. The data for a write (state-changing) transaction is not the raw contract calldata. It must be rlp.encode([calldata, leader_only]) — the calldata together with the leader-only flag. Passing the raw calldata directly typically surfaces as an RLP decoding error like RLP string ends with superfluous bytes. If you see that message, wrap your calldata as an RLP list rather than sending it bare.
  • Selector present but arguments missing or misaligned. If a selector matches an error that takes arguments but the payload is only four bytes long (or the wrong length), the sending code likely built the error data by hand. Decode the arguments against the signature shown in the tables.
  • Wrong signature when decoding. If a selector does not appear in these tables, double-check that you are hashing the type-only signature. A mismatch between your assumed signature and the real one yields a selector that will never resolve here.

How This Catalog Was Generated

The complete index on this page is generated from the consensus repository's canonical list (scripts/utils/errorSelectors.ts on the v0.6-dev line), at source revision 2f78febfc06866e59e7f12db848664e95ce99e8e. Each 4-byte selector is computed from the type-only signature with keccak256. The checked-in v0.6 snapshot contains 363 unique signatures and 363 unique selectors. CI validates those counts, the known anchor FeeValueMustBeNonZero(uint256) = 0x632be5a1, and the absence of collisions. The shorter tables add explanations for common integration errors.

⚠️

This reference reflects a development snapshot of the consensus contracts and is intended for orientation, not as a compatibility guarantee. Error names, selectors, and especially the exact conditions that trigger them can change between protocol versions. For a definitive decode, always match against the ABI of the specific deployed contract you are calling. Entries noted as "(test mock)" originate from test-only contracts and should not be expected on a production network.

Common Error Tables

These curated tables are grouped by protocol area. They explain the errors most useful during application, validator, and tooling development. Use the complete selector index for exhaustive lookup.

Fees

ErrorSelectorMeaningCommon cause / fix
AllocationCommitmentMissing()0xbe77b500Expected fee-allocation commitment is not presentInclude the commitment
AllocationDuplicateKey()0xbb598087Two sibling allocations share (messageType, recipient, callKey)Deduplicate allocation keys
AllocationLifecycleBudgetInsufficient()0x00583b33Budget below minPrimary times (appealRounds+1) for on-acceptanceRaise on-acceptance budget
AllocationRestrictedTxCannotAcceptMessageFees()0x35ebdf50A restricted-allocation tx illegally accepted message feesDo not accept message fees here
AllocationSubtreeHashMismatch()0xdda17044Provided subtree hash differs from committed hashProvide the committed subtree
AllocationSubtreeRequired()0x47db53f3Leader must carry subtree under HashCommitments but did notInclude required subtree
AllocationTreeBudgetInconsistent()0x328bfb08Allocation-tree node budgets do not sum consistentlyFix tree budget sums
AllocationTreeMalformed()0x7fecd5b1Fee allocation tree is structurally invalidRebuild a valid tree
AllocationTreeTooDeep()0x48668d66Allocation tree exceeds maximum depthFlatten/reduce tree depth
AlreadyClaimed()0x646cf558Fee or reward already claimedNo double claim
AlreadySettled()0x560ff900Fees or transaction already settledNo re-settlement
BudgetTooLow()0x305e533cProvided budget is below the minimum requiredIncrease the budget
ExecutionBudgetExceeded(uint256,uint256)0x57df8523Execution gas consumption exceeded the tx budget (attempted, budget)Raise execution budget
ExternalBudgetInvalid()0x8b434eeaExternal message budget is invalidEnsure budget >= gasLimit*price
ExternalGasLimitBelowMinimum()0xf5963b64External message gas limit below minimumRaise external gas limit
ExternalGasLimitOrPriceZero()0xbf35c24eExternal message gas limit or price is zeroProvide non-zero limit and price
ExternalMessageFreezeExceeded(bytes32,uint256,uint256)0x05684868External message froze more value than allowed (txId, declaredValue, availableLimit)Reduce declared value
ExternalOnAcceptanceNotSupported()0xa54ce0b6On-acceptance semantics not supported for external messagesDo not use on-acceptance externally
FailedFeeTransfer()0x24a8ac13Fee ETH transfer failedCheck recipient/balance
FeeSettlementNotCompleted()0x1432a761Operation requires fee settlement to complete firstSettle fees before proceeding
FeeValueMustBeNonZero(uint256)0x632be5a1A required fee field was zero (field index)Provide a non-zero fee value
InsufficientFees()0x8d53e553Total fees provided do not cover the operationProvide more fees
InsufficientFeesForRound()0x0c35bf69Fees insufficient to fund a specific consensus roundIncrease per-round fees
InsufficientGasForInternalMessageCreation(uint256,uint256,uint256,address)0xb2c9bc63Outer tx lacks gas to forward per-child floor under EIP-150 (floor, required, available, recipient)Raise outer gas limit
InsufficientValue()0x11011294msg.value is less than fees owedSend more value
MaxPriceExceeded(uint256,uint256)0xb4132db3A current fee-unit price exceeds the caller's ceiling (globalPrice, userMax)Re-estimate; raise the ceiling only if the user accepts it
MessageAllocationBudgetInsufficient()0x67d6a6b3Allocation's budget is too low for the messageIncrease allocation budget
MessageAllocationsNotEqualBudget()0x9659e275Sum of message allocations does not equal declared budgetMake allocations sum to budget
MessageBudgetExceeded(uint256,uint256)0xd67553bdInternal message consumed more than its budget (attempted, budget)Raise message budget
MessageDeclaredBudgetInsufficient()0x7f295162Declared message budget is below requiredIncrease declared budget
MessageEmissionPhaseMismatch()0x5ca1f1d8message.onAcceptance differs from allocation.onAcceptanceAlign emission phase flags
MessageFeeParamsMismatch()0x67b02b3bMessage fee parameters do not match allocation/commitmentAlign fee params
MessageFeesReportMismatch()0x86515990Reported per-message fees differ from expectedCorrect the fee report
MessageFeesTotalMustBeNonZero()0xf79991cbSum of message fees is zero when it must be positiveProvide non-zero message fees
MessageNoMatchingAllocation()0x4e4b3c38An emitted message has no matching fee allocationAdd a matching allocation
OnlyConsensusCanCall()0x6c6fe28aFee-management function callable only by consensusOnly consensus may call
OnlyFeeManager()0x8f1dbd6cCaller is not the fee managerOnly fee manager may call
RollupBudgetBelowFloor()0xa70732eeRollup/L1 gas budget is below the enforced floorIncrease rollup budget
TooManyMessages()0x1ec0b2f7Number of messages exceeds the allowed maximumEmit fewer messages

Staking

ErrorSelectorMeaningCommon cause / fix
AccountsArrayEmpty()0xb1d0b181GEN distribution accounts array is emptyProvide at least one account
AllValidatorsConsumed()0x54055ab9All validators have been consumed (test mock)Wait for next selection
AlreadyRevoked()0x905e7107Vesting already revokedNo re-revocation
AlreadyUnlocked()0x5090d6c6Vesting tokens already unlockedNo re-unlock
AmountMustBeGreaterThan0()0x35f61689Amount must be greater than zeroSend a positive amount
BurnTransferFailed()0xaac1169bBurn transfer failedCheck burn path/balance
CanOnlyTriggerInflationMaxEpochsInFuture()0xdfaaa5b2Inflation trigger is too far in the futureTrigger within the allowed horizon
CanOnlyTriggerInflationMaxTenEpochsInFuture()0xa9f9ed6cInflation trigger limited to at most ten epochs aheadTrigger within ten epochs
DeepthoughtCallFailed()0xbd5ac82fCall to the Deepthought contract failedCheck Deepthought address/target
DelegatorBelowMinimumStake()0x944516fcDelegator stake is below the minimumIncrease delegation
DelegatorExitExceedsShares()0x64d3ea58Exit amount exceeds the delegator's sharesExit at most held shares
DelegatorExitWouldBeBelowMinimum()0x5f9ff6b2Partial exit would drop stake below minimumExit fully or less
DelegatorMayNotExitWithZeroShares()0x161fa299Cannot exit with zero sharesHold shares before exiting
DelegatorMayNotJoinTwoValidatorsSimultaneously()0x48a6b5baDelegator may back only one validator at a timeExit current validator first
DelegatorMayNotJoinWithZeroValue()0xba5cb6d8Delegation requires non-zero valueSend a non-zero amount
DelegatorMustExitAllWhenBelowMinimum()0x44d4da44Must fully exit when below minimum stakePerform a full exit
DeveloperAlreadyHasNFT()0xa74b28d1Developer already holds a reward NFTOne NFT per developer
DeveloperCannotBeZeroAddress()0x7e3f46bdDeveloper address is the zero addressProvide a valid developer
DeveloperHasNoNFT()0x70849322Developer holds no reward NFTMint/assign an NFT first
DeveloperHasNoRewards()0xdf6b47b0Developer has no claimable rewardsNothing to claim
EpochAdvanceNotReady()0xe7295fedConditions to advance the epoch are not metWait until advance conditions hold
EpochAlreadyFinalized()0x3366263cEpoch is already finalizedNo re-finalization
EpochNotFinalized()0x8cf75707Epoch is not finalizedFinalize the epoch first
EpochNotFinished()0xec766557Epoch has not finished yetWait for epoch end
FailedTransfer(address)0x3f32e1ddToken/ETH transfer to a validator failed (validator)Check recipient/balance
FailedTransferCall()0x3825f587Reward/transfer call failedCheck recipient/balance
FunctionNotFound(bytes4)0x5416eb98No diamond facet implements this selectorAdd/register the facet
FundingMismatch()0xb84a1afbFunding amount does not match expectedFund the exact expected amount
GhostAlreadyHasNFT()0x36bd0868Ghost contract already has an NFTOne NFT per ghost
GhostCannotBeZeroAddress()0x4d8d14c5Ghost contract address is zeroProvide a valid ghost address
IncentivePercentageTooHigh()0xaf188845Incentive percentage exceeds the allowed capLower the incentive percentage
InflationAlreadyInitialized()0x9ded3b15Inflation already initializedInitialize once only
InflationAlreadyReceived()0x719a0d39Inflation for this period already receivedNo double receipt
InflationInitialized()0x067f34cfInflation-initialized guard trippedOperation not allowed post-init
InflationInvalidAmount()0x3c1f1f16Inflation amount is invalidProvide a valid amount
InflationNotReadyToBeRealized()0x7d8fa225Inflation is not ready to be realizedWait until realizable
InflationRequestFailed()0xced05c45Cross-layer inflation request failedCheck bridge/L2 path
InitialMintAlreadyCalled()0xacf9028dGEN initial mint already executedMint once only
InsufficientBondCustody()0xebab1869Bond custody balance is insufficientEnsure sufficient bond custody
InsufficientContractBalance()0x786e0a99Vesting contract lacks sufficient balanceFund the contract
InsufficientInflationFunds()0x58d77d2aNot enough funds to pay inflationFund inflation reserve
InvalidAtEpoch()0x90dce792Operation is invalid at the current epochRetry at an allowed epoch
InvalidBanPeriod()0xa2fc7bbdBan period parameter is invalidProvide a valid ban period
InvalidCliffUnlockBps()0x7f2d8c3dVesting cliff unlock basis points invalidUse bps within 0..10000
InvalidInflationThresholds()0x4774d828Inflation threshold config is invalidFix inflation thresholds
InvalidL2GasParams()0x21e1b5c9L2 gas parameters are invalidProvide valid L2 gas params
InvalidNumberOfEpochsToClaim()0xb9a8ce44NFT reward epoch-count to claim is invalidUse a valid epoch count
InvalidOperatorAddress()0xeb32d3bfOperator address is invalid or zeroProvide a valid operator
InvalidPeriodDuration()0x9e11b5e6Vesting period duration is invalidProvide a valid duration
InvalidRecipient()0x9c8d2cd2Reward/transfer recipient is invalidProvide a valid recipient
InvalidSlashPercentage()0x37814740Slash percentage is invalidUse a valid slash percentage
L2BaseGasCostQueryFailed()0x7dc9c5e2Failed to query L2 base gas costCheck L2 gas oracle/bridge
L2MessageAlreadyInvoked()0x21d83750L2 message already invoked (replay guard)Do not re-invoke
L2MessageProvenFailed()0xfd0ae327L2 message proof verification failedProvide a valid proof
L2TransactionRequestFailed()0x1efae811L2 transaction request failedCheck L2 bridge/params
ManualUnlockNotRequired()0x90173285Manual unlock is not required hereUse standard vesting flow
MaxNumberOfValidatorsReached()0x9ce3911dValidator set is at capacityCannot add more validators
MaxValidatorsCannotBeZero()0x83c27a2dmaxValidators config cannot be zeroSet a positive maxValidators
NFTMinterCallFailed()0x64c31e4bCall to the NFT minter failedCheck NFT minter address/target
NFTMinterNotConfigured()0xa0c98f30NFT minter address is not configuredConfigure the NFT minter
NoBurning()0x96191d45Burning is not enabled or not applicableBurning disabled in this config
NoPendingOperator()0x9c2af11fNo pending operator transfer to finalizeInitiate a transfer first
NoPreviousEpoch()0x9fa56a5bNo previous epoch exists (test mock)Only valid after epoch 0
NotBeneficiary()0x644d871fCaller is not the vesting beneficiaryCall from the beneficiary address
NotCreator()0x93687c0bCaller is not the vesting schedule creatorCall from the creator address
NotEnoughValidators()0xae575a88Not enough validators available (test mock)Register more validators
NotNFTOwner()0x4088c61cCaller does not own the NFTCall from the NFT owner
NotRevocable()0x9414820dVesting schedule is not revocableCannot revoke this schedule
NotRevoked()0x73f7ab1eVesting is not revoked but operation requires revoked stateRevoke first
NotRevoker()0x2ad3d44fCaller is not the vesting revokerCall from the revoker address
NoValidatorsAvailable()0xc4e41c46No validators are available (test mock)Register/activate validators
NumberOfValidatorsExceedsAvailable()0x9c637db9Requested count exceeds available validatorsRequest no more than available
OnlyGEN()0x6a10007bCallable only by the GEN token contractOnly GEN may call
OnlyIdleness()0xf2c0764cCallable only by the idleness moduleOnly idleness may call
OnlyIdlenessOrTribunal()0xfcde63e9Callable only by idleness or tribunalRestricted to idleness/tribunal
OnlyStakingContract()0xd807afceCallable only by the staking contractOnly staking may call
OnlyTransactions()0x516257a3Callable only by the transactions moduleOnly transactions may call
OnlyTransactionsOrTribunal()0x6c4db06bCallable only by transactions or tribunalRestricted to transactions/tribunal
OnlyTribunal()0x811befe9Callable only by the tribunalOnly tribunal may call
OperatorAlreadyAssigned()0x5acd21baOperator address already assigned to a validatorUse a free operator address
OperatorTransferNotReady()0xde4e791aOperator transfer timelock not yet elapsedWait for the transfer window
PendingTribunals(uint256)0x773c68a6Epoch has unresolved tribunals blocking finalization (epoch)Resolve tribunals first
PreviousEpochNotFinalizable()0x93b7eb86Previous epoch cannot be finalized yetFinalize prior epoch prerequisites
ReductionFactorCannotBeZero()0x2e980407Burn/inflation reduction factor is zeroSet a non-zero factor
SlashGovernanceDelayPassed()0x06de1175Governance slash delay window has passedAct within the slash window
SlashPercentageTooHigh()0x0edf5154Slash percentage exceeds the capLower the slash percentage
SlashRevokedToRemoveTooHigh(uint256,uint256)0x217f3b2eAmount to remove exceeds revoked stake (revoked, toRemove)Remove at most revoked amount
TotalDistributionMustBe100()0x16904932GEN distribution percentages must sum to 100Fix distribution to total 100
TransferFailed()0x90b8ec18Token or ETH transfer failedCheck recipient/balance
UnauthorizedDelegatorClaim()0xdcc541d1Caller not authorized to claim delegator rewardsClaim from the entitled address
UnauthorizedInflationRequest()0x7d8f3b9eCaller not authorized to request inflationOnly authorized caller may request
UnknownGenAction()0xe43351e0Unknown GEN cross-layer action codeUse a recognized action code
ValidatorAlreadyInTree()0x45be71b6Validator is already in the selection treeDo not re-insert
ValidatorAlreadyJoined()0x71d16bc6Validator has already joinedNo re-join
ValidatorBelowMinimumStake()0x0b294dc3Validator stake is below the minimumTop up validator stake
ValidatorDoesNotExist()0xe51315d2No such validatorReference an existing validator
ValidatorExitExceedsShares()0xfddb7740Exit amount exceeds the validator's sharesExit at most held shares
ValidatorMayNotBeDelegator()0x359b3ac0A validator may not also be a delegatorSeparate the roles
ValidatorMayNotDepositZeroValue()0xffb117c5Validator deposit requires non-zero valueDeposit a positive amount
ValidatorMayNotJoinWithZeroValue()0xd25ef26fValidator join requires non-zero stakeJoin with a positive stake
ValidatorMustNotBeDelegator()0x85d35a02An address cannot be both validator and delegatorSeparate the roles
ValidatorNotActive()0xa6ce15f6Validator exists but is not active this epochWait until validator is active
ValidatorNotInTree()0x8ee72f3fValidator is not in the selection treeInsert validator first
ValidatorNotJoined()0xffc673e8Validator has not joinedJoin before this action
ValidatorsConsumed()0xeae94a56All validators for this round already consumedWait for next round/selection
ValidatorsUnavailable()0xd0b5c3bbValidators are temporarily unavailableRetry when validators are available
ValidatorWithdrawalExceedsStake()0xfb7f2a7fWithdrawal exceeds the staked amountWithdraw at most staked
VestingAlreadyExists()0xe7075d2aA vesting schedule already exists for the targetDo not recreate the schedule
VestingAlreadyStopped()0xd731022dVesting is already stoppedNo re-stop
VestingDeploymentFailed()0x0f5cc9deVesting contract deployment failedCheck beacon/factory params
VestingNotStopped()0x6e32bb06Vesting is not stopped but operation requires stopped stateStop vesting first
WithdrawExceedsVested()0x8b6a4865Withdrawal exceeds the vested amountWithdraw at most vested
ZeroAmount()0x1f2a2005Amount is zeroProvide a non-zero amount

Consensus

ErrorSelectorMeaningCommon cause / fix
AddingTransactionToUndeterminedQueueFailed()0x5bd3cd8cFailed to add tx to the undetermined queueInternal queue operation failed
AllValidatorsCommitted()0xb467acd8All validators have committed (none left)No further commits expected
AppealBondTooLow()0xb44cda7bAppeal bond is below the required amountIncrease appeal bond
AppealNotActive()0x6565b6bfNo appeal is currently activeOnly valid during an active appeal
AppealNotAllowed()0xb94e4c42Appeal not permitted in the current stateTx/round not appealable now
AppealRoundAlreadyExists()0x93a19b27An appeal round already existsDo not re-create the round
AppealRoundNotPermitted()0x6ecc8d59The next appeal round is not currently scheduled/fundedUse the public SDK/CLI appeal path, which calls topUpAndSubmitAppeal
BeaconAlreadyDeployed()0xa1900dfeBeacon proxy already deployedDo not redeploy the beacon
BeaconNotDeployed()0x261438caBeacon proxy not deployed yetDeploy the beacon first
CallerNotActivator()0xb56aa94eCaller is not the activatorCall from the activator
CallerNotConsensus()0x47820187Caller is not the consensus contractOnly consensus may call
CallerNotGenConsensus()0xf8beed7dCaller is not GenConsensusOnly GenConsensus may call
CallerNotLeader(address,address)0x3558c9daCaller is not the round leader (leader, caller)Only the current leader may call
CallerNotMessages()0x7e3d1f98Caller is not the messages moduleOnly messages module may call
CallerNotSender()0xf5963d65Caller is not the original tx senderOnly the sender may call
CallerNotTransactions()0xae49b478Caller is not the transactions moduleOnly transactions module may call
CanNotAppeal()0xb39cdfbeThe transaction/state cannot be appealedNot eligible for appeal
EmptyTransaction()0x260c9d62Transaction payload is emptyProvide a non-empty tx
FinalizationNotAllowed()0xe1b3b3b7Finalization is not allowed at this timeWait until finalization is permitted
FinalizationWindowForRevealingNotOpened()0xabc07e66Reveal finalization window is not openWait for the reveal window
FinalizedCountExceedsIssued()0x34bffaeeFinalized count exceeds issued countInternal accounting invariant broke
IdlenessError()0xc35cc440Generic idleness-module error
InsufficientActiveValidators(uint256,uint256)0xb5e5b936Not enough active validators for the request (numValidators, availableValidators)Wait for more active validators
InvalidAppealBond()0xc59a6168Appeal bond value is invalidProvide a valid bond
InvalidAppealRounds()0x2b4f0027Configured appeal-rounds value is invalidSet a valid rounds value
InvalidCommitHash()0x173d238eCommit hash is invalidProvide a valid commit hash
InvalidCommittedValidators()0xcbf18bceCommitted-validators set is invalidCorrect committed validators
InvalidDeploymentWithSalt()0xaceab4a1CREATE2 deployment-with-salt is invalidFix salt/init params
InvalidGhostContract()0x1d41354dGhost contract is invalidTarget a valid ghost contract
InvalidIdleReplacementIndex(address,uint256,uint256)0x4424217aIdle-replacement index mismatch (validator, expected, provided)Provide the expected index
InvalidNumOfValidators()0xc4be27c5Validator count is invalidProvide a valid count
InvalidPhaseTimeoutBounds()0x7cee0061Phase timeout bounds are invalidFix min/max bounds
InvalidProcessingBlock()0xd1ba0787Processing block is invalidUse a valid processing block
InvalidRevealData()0xbc03c4b4Reveal payload is invalidProvide valid reveal data
InvalidRevealLeaderData()0x92c313eeLeader reveal payload is invalidProvide valid leader reveal data
InvalidSender()0xddb5de5eSender is invalidProvide a valid sender
InvalidTimestampType()0x099d113dTimestamp type is invalidProvide a valid timestamp type
InvalidTransactionStatus()0xf8062102Tx status is invalid for this operationAct only in the required status
InvalidTribunalAppealStatus()0x37c1c7d4Tribunal appeal status invalid for this actionAct only in the required status
InvalidTxExecutionHash()0x22a529c0Tx execution hash is invalidProvide the correct execution hash
InvalidValidator()0x682a6e7cValidator is invalidProvide a valid validator
InvalidValidatorsLength()0x5d67a037Validators array length is invalidProvide correct array length
InvalidVote()0xd5dd0c66Vote value is invalidProvide a valid vote
InvalidVoteType()0x8eed55d1Vote type is invalidProvide a valid vote type
LeaderResultHashAlreadySet()0x584764aeLeader result hash has already been setSet the leader result once
MaxNumOfIterationsInPendingQueueReached()0x357bf18bPending-queue iteration cap reachedRetry/continue processing later
MaxNumOfMessagesExceeded(uint256,uint256)0x3838b192Message count exceeds allocation (numOfMessages, maxAllocatedMessages)Emit fewer messages
MockZkSyncBridgeCallFailedToL2()0x9a245636Mock zkSync L2 bridge call failed (test)Test/mock harness failure
NoIdleValidator()0xede1b7ceNo idle validator is availableWait for an idle validator
NonGenVMContract()0xc1ba7c94Target is not a GenVM (ghost) contractTarget a GenVM contract
NoPendingRefund()0xfb093898No pending refund to processNothing to refund
NoRotationsLeft()0xe0bf2581No leader rotations remainingRotation budget exhausted
NoSenderForTransaction()0xa0b18673Transaction has no senderProvide a valid sender
NotConsensus()0x70f64de5Caller is not the consensus contractOnly consensus may call
NotConsensusOrIdleness()0xa82180beCaller is not consensus or idleness moduleRestricted to consensus/idleness
NotConsensusOrIdlenessOrTransactions()0x1e3f968fCaller is not consensus, idleness, or transactions moduleRestricted to those three modules
NotConsensusOrTransactions()0xe6533a27Caller is not consensus or transactions moduleRestricted to consensus/transactions
NotGenConsensus()0xfd9abcdcCaller is not GenConsensusOnly GenConsensus may call
NotIdleness()0x878f6816Caller is not the idleness moduleOnly idleness may call
NoValidatorsFound()0x9b7fa1e5No validators were foundEnsure validators exist
NumOfMessagesIssuedTooHigh()0x5013bc2aNumber of issued messages is too highReduce issued messages
OutOfGas()0x77ebef4dOut-of-gas surfaced as a typed revertIncrease gas limit
PendingQueueFull(address,uint256)0xd48a82a3Recipient's pending message queue is full (recipient, max)Drain queue or wait
PhaseTimeoutOutOfBounds(uint256,uint256,uint256)0xdb0c8dfePhase timeout is outside allowed bounds (value, minBound, maxBound)Use a timeout within bounds
QueueHeadExceedsTail()0x698f39adQueue head index exceeds tail (corruption guard)Internal queue invariant broke
RandomSeedAlreadySet()0x7d6b9724Random seed has already been setSet the seed once only
RecoverRangeBeyondIssued()0x82eacf35recoverRecipient range is past the issued countUse a range within issued
RecoverRangeInvalid()0xd1402d7erecoverRecipient range is invalidProvide a valid range
RemovingTransactionFromPendingQueueFailed()0x866b818fFailed to remove tx from the pending queueInternal queue operation failed
TransactionAlreadyAccepted()0x7bdaa2b4Transaction has already been acceptedNo re-acceptance
TransactionCanNotBeAddedToAcceptedQueue()0xcdcfa366Tx cannot be added to the accepted queueState disallows enqueue
TransactionCanNotBeAddedToPendingQueue()0x406a3bbbTx cannot be added to the pending queueState disallows enqueue
TransactionCanNotBeAddedToUndeterminedQueue()0x69842b0aTx cannot be added to the undetermined queueState disallows enqueue
TransactionCanNotBeFinalized()0xd9be37caTransaction is not eligible for finalizationNot in a finalizable state
TransactionInRecomputation()0x00ebaa7cTransaction is currently under recomputationWait for recomputation to finish
TransactionNotAcceptedNorUndetermined()0x90cb8b61Transaction is neither accepted nor undeterminedOnly valid in those states
TransactionNotAtAcceptedQueueHead()0x3e714edfTx is not at the head of the accepted queueProcess the head tx first
TransactionNotAtPendingQueueHead()0x0844056aTx is not at the head of the pending queueProcess the head tx first
TransactionNotAtUndeterminedQueueHead()0x3d40531fTx is not at the head of the undetermined queueProcess the head tx first
TransactionNotFinalized()0xe4e81f79Transaction is not finalizedFinalize the tx first
TransactionNotFound()0x31fb878fTransaction not foundReference a valid tx
TransactionNotInPendingQueue()0x7b9ea34fTx is not in the pending queueOnly valid for queued txs
TransactionNotTerminal()0x1d3a409aTransaction is not in a terminal stateOnly valid for terminal txs
TransactionStillValid()0xc4afd8faTransaction is still valid (cannot treat as expired)Wait until it is no longer valid
TribunalAlreadyFinalized()0x6cb27c0fTribunal has already been finalizedNo re-finalization
TribunalNotFound()0x609bbfa8Referenced tribunal does not existReference a valid tribunal
UnfinishedTransactions()0xf082b82dUnfinished transactions block the operationFinish pending txs first
UnfinishedTxCounterUnderflow()0x8894ba94Unfinished-transaction counter underflowedInternal accounting invariant broke
ValidatorAlreadyCommitted()0xf8961aeeValidator has already committedCommit once per round
ValidatorAlreadyRevealed()0x00d6a91bValidator has already revealedReveal once per round
ValidatorAlreadyVoted()0x6e271ebeValidator has already votedVote once per round
ValidatorSelectionFailed()0x1f90236dValidator selection algorithm failedCheck validator set/seed
ValidatorWalletAlreadyDeployed()0xb9ceb484Validator wallet already deployedDo not redeploy the wallet
ValidValidatorNotFound()0x1c177f6cNo valid validator was foundEnsure eligible validators exist
VoteAlreadyCommitted()0xcf1c5b9cVote has already been committedCommit vote once
VoteAlreadyRevealed()0x3246ac36Vote has already been revealedReveal vote once
WalletDeploymentFailed()0x6e09c9ebValidator wallet deployment failedCheck factory/CREATE2 params
WrongRecomputationTransaction()0x4d1fe80eRecomputation targeted the wrong transactionTarget the correct tx

Governance

ErrorSelectorMeaningCommon cause / fix
CallerNotGovernance()0xf2be30fbCaller is not the governance contractRoute via governance
GovernanceInsufficientValue(uint256,uint256)0xf498db0cmsg.value insufficient for the operation (provided, required)Send the required value
GovernanceInvalidDelay()0xd1132ebcConfigured timelock delay is invalidSet a valid delay
GovernanceOperationExpired(address,bytes4,bytes,uint256,uint256)0x11515806Queued operation expired past its window (target, selector, args, value, expiry)Re-queue the operation
GovernanceOperationNotFound(address,bytes4,bytes,uint256)0x8ff7bbe1Operation not found in the queue (target, selector, args, value)Queue it first
GovernanceOperationPending(address,bytes4,bytes,uint256)0xc7eef27fOperation is already queued/pending (target, selector, args, value)Do not re-queue
GovernanceTargetIsNotAContract(address)0x83e02672Governance target address has no code (target)Target a deployed contract
GovernanceTimelockPending(address,bytes4,bytes,uint256,uint256)0x2189e680Timelock not yet elapsed (target, selector, args, value, eta)Wait until ETA
ZeroValue()0x7c946ed7Value or parameter is zeroProvide a non-zero value

Access

ErrorSelectorMeaningCommon cause / fix
CallerNotAuthorized()0xc183bcefCaller is not authorized for this actionUse an authorized address
CallerNotOwner()0x5cd83192Caller is not the ownerCall from the owner
NotAppealsContract()0xa5a4297bCaller is not the appeals contractOnly the appeals contract may call
NotOperator()0x7c214f04Caller is not an operatorCall from an operator address
NotStaking()0x890fec52Caller is not the staking contractOnly staking may call
Unauthorized()0x82b42900Generic unauthorized callerUse an authorized caller
ZeroAddress(string)0xeac0d389A named address is the zero address (key)Provide a non-zero address

Other

ErrorSelectorMeaningCommon cause / fix
ArrayLengthMismatch()0xa24a13a6Two input arrays have different lengthsMatch array lengths
BatchSizeExceeded(uint256,uint256)0xf80a4845Batch size exceeds the allowed maximum (provided, maximum)Reduce batch size
IndexOutOfBounds()0x4e23d035Array index is out of boundsUse a valid index
InvalidAddress()0xe6c4247bAddress parameter is invalid or zeroProvide a valid address
InvalidNonce()0x756688feNonce is invalid or out of orderUse the correct nonce
InvalidNumber(uint256)0xc5d83cdeGeneric numeric-validation failure (number)Provide a value in range
InvalidOffset()0x01da1572Pagination offset is invalidUse a valid offset
InvalidPageSize()0xe5b7db2ePagination page size is invalidUse a valid page size
InvalidVersion()0xa9146eebVersion mismatchMatch the expected version
PercentageOutOfRange(uint256)0xafd5d0b0Percentage value is out of the allowed range (value)Provide a valid percentage
ZeroTotalWeight()0x098404deTotal weight is zero (test mock)Ensure non-zero total weight

Complete v0.6 Selector Index

This is the exhaustive selector snapshot for the audited Consensus v0.6 release line. It intentionally includes overloads such as TransactionNotFound() and TransactionNotFound(bytes32), because their selectors are different.

Error signatureSelector
NotAppealsContract()0xa5a4297b
NotAValidatorWallet()0xc1952ed0
NotBeneficiary()0x644d871f
NotConsensus()0x70f64de5
NotConsensusOrIdleness()0xa82180be
NotConsensusOrIdlenessOrTransactions()0x1e3f968f
NotConsensusOrTransactions()0xe6533a27
NotCreator()0x93687c0b
NotDaoContract()0xe6a497af
NotEnoughValidators()0xae575a88
NotFunded()0xd5ef09ba
NotGenConsensus()0xfd9abcdc
NotIdleness()0x878f6816
NotOperator()0x7c214f04
NotRevocable()0x9414820d
NotRevoked()0x73f7ab1e
NotRevoker()0x2ad3d44f
NotStaking()0x890fec52
AppealBondTooLow()0xb44cda7b
AppealNotActive()0x6565b6bf
AppealNotAllowed()0xb94e4c42
AppealRoundAlreadyExists()0x93a19b27
AppealRoundNotPermitted()0x6ecc8d59
IndexOutOfBounds()0x4e23d035
BatchSizeExceeded(uint256,uint256)0xf80a4845
BeaconAlreadyDeployed()0xa1900dfe
BeaconNotDeployed()0x261438ca
OperatorTransferNotReady()0xde4e791a
TransferFailed()0x90b8ec18
WalletDeploymentFailed()0x6e09c9eb
NoBurning()0x96191d45
ReductionFactorCannotBeZero()0x2e980407
CallerNotActivator()0xb56aa94e
CallerNotAuthorized()0xc183bcef
CallerNotConsensus()0x47820187
CallerNotGenConsensus()0xf8beed7d
CallerNotGovernance()0xf2be30fb
CallerNotLeader(address,address)0x3558c9da
CallerNotMessages()0x7e3d1f98
CallerNotOwner()0x5cd83192
CallerNotSender()0xf5963d65
CallerNotTransactions()0xae49b478
CanNotAppeal()0xb39cdfbe
UnfinishedTxCounterUnderflow()0x8894ba94
DelegatorBelowMinimumStake()0x944516fc
DelegatorExitExceedsShares()0x64d3ea58
DelegatorExitUnrepresentableShares()0xac2489dc
DelegatorExitWouldBeBelowMinimum()0x5f9ff6b2
DelegatorMayNotExitWithZeroShares()0x161fa299
DelegatorMayNotJoinTwoValidatorsSimultaneously()0x48a6b5ba
DelegatorMayNotJoinWithZeroValue()0xba5cb6d8
DelegatorMustExitAllWhenBelowMinimum()0x44d4da44
EpochAdvanceNotReady()0xe7295fed
EpochAlreadyFinalized()0x3366263c
EpochDurationCannotBeZero()0xfd06e181
EpochDurationOverflow()0x270bd26d
EpochNotFinalized()0x8cf75707
EpochNotFinished()0xec766557
PendingTribunals(uint256)0x773c68a6
PreviousEpochNotFinalizable()0x93b7eb86
AllocationRestrictedTxCannotAcceptMessageFees()0x35ebdf50
FailedFeeTransfer()0x24a8ac13
FeeSettlementNotCompleted()0x1432a761
FeeValueMustBeNonZero(uint256)0x632be5a1
InsufficientFees()0x8d53e553
InsufficientFeesForRound()0x0c35bf69
MessageFeeParamsMismatch()0x67b02b3b
MessageFeesReportMismatch()0x86515990
MessageFeesTotalMustBeNonZero()0xf79991cb
OnlyFeeManager()0x8f1dbd6c
UseBalanceFeeReservationExceeded(bytes32,uint256,uint256)0xde234cf9
OnlyConsensusCanCall()0x6c6fe28a
AccountsArrayEmpty()0xb1d0b181
AmountMustBeGreaterThan0()0x35f61689
InitialMintAlreadyCalled()0xacf9028d
L2BaseGasCostQueryFailed()0x7dc9c5e2
L2MessageAlreadyInvoked()0x21d83750
L2MessageProvenFailed()0xfd0ae327
L2TransactionRequestFailed()0x1efae811
TotalDistributionMustBe100()0x16904932
InvalidAddress()0xe6c4247b
InvalidAmount()0x2c5211c6
InvalidAppealBond()0xc59a6168
InvalidAppealRounds()0x2b4f0027
InvalidAppealRoundState()0x1a5d319a
InvalidAtEpoch()0x90dce792
InvalidBanPeriod()0xa2fc7bbd
InvalidCliffUnlockBps()0x7f2d8c3d
InvalidCommitHash()0x173d238e
InvalidCommittedValidators()0xcbf18bce
InvalidDeploymentWithSalt()0xaceab4a1
InvalidGhostContract()0x1d41354d
InvalidIdleReplacementIndex(address,uint256,uint256)0x4424217a
InvalidInflationThresholds()0x4774d828
InvalidInternalMessageReference()0x46eee7e3
InvalidL2GasParams()0x21e1b5c9
InvalidNonce()0x756688fe
InvalidNumber(uint256)0xc5d83cde
InvalidNumberOfEpochsToClaim()0xb9a8ce44
InvalidNumOfValidators()0xc4be27c5
InvalidOffset()0x01da1572
InvalidOperatorAddress()0xeb32d3bf
InvalidPageSize()0xe5b7db2e
InvalidPeriodDuration()0x9e11b5e6
InvalidPhaseTimeoutBounds()0x7cee0061
InvalidPossessionProof()0xbabbd7de
InvalidPrimingSelfStakeBps()0xe481a6f8
InvalidProcessingBlock()0xd1ba0787
InvalidRecipient()0x9c8d2cd2
InvalidRevealData()0xbc03c4b4
InvalidRevealLeaderData()0x92c313ee
InvalidSender()0xddb5de5e
InvalidSlashDelay()0x9589cd8b
InvalidSlashPercentage()0x37814740
InvalidStakingAddress()0x7caa6460
InvalidStakingContract()0x3d8c6f98
InvalidStopTimestamp()0xde8f8fd4
InvalidTimestamp()0xb7d09497
InvalidTimestampType()0x099d113d
InvalidTransactionInitialization(bytes32)0x551b05e7
InvalidTransactionStatus()0xf8062102
InvalidTribunalAppealStatus()0x37c1c7d4
InvalidTxExecutionHash()0x22a529c0
InvalidValidator()0x682a6e7c
InvalidValidatorsLength()0x5d67a037
InvalidVersion()0xa9146eeb
InvalidVote()0xd5dd0c66
InvalidVoteType()0x8eed55d1
InvalidWeightParams()0xa17d9e68
IdlenessError()0xc35cc440
CanOnlyTriggerInflationMaxEpochsInFuture()0xdfaaa5b2
CanOnlyTriggerInflationMaxTenEpochsInFuture()0xa9f9ed6c
InflationAlreadyInitialized()0x9ded3b15
InflationAlreadyReceived()0x719a0d39
InflationInitialized()0x067f34cf
InflationInvalidAmount()0x3c1f1f16
InflationNotReadyToBeRealized()0x7d8fa225
InflationRequestFailed()0xced05c45
MaxNumberOfValidatorsReached()0x9ce3911d
MaxNumOfIterationsInPendingQueueReached()0x357bf18b
MaxNumOfMessagesExceeded(uint256,uint256)0x3838b192
AddingTransactionToUndeterminedQueueFailed()0x5bd3cd8c
DecisionQueueTimestampMismatch(bytes32,uint256,uint256)0x2c36b5ad
IllegalQueueMigration(bytes32,uint8,uint8)0xe788332f
NumOfMessagesIssuedTooHigh()0x5013bc2a
PendingQueueFull(address,uint256)0xd48a82a3
QueueHeadExceedsTail()0x698f39ad
RemovingTransactionFromPendingQueueFailed()0x866b818f
TransactionCanNotBeAddedToAcceptedQueue()0xcdcfa366
TransactionCanNotBeAddedToPendingQueue()0x406a3bbb
TransactionCanNotBeAddedToUndeterminedQueue()0x69842b0a
TransactionNotAtAcceptedQueueHead()0x3e714edf
TransactionNotAtPendingQueueHead()0x0844056a
TransactionNotAtUndeterminedQueueHead()0x3d40531f
TransactionNotInPendingQueue()0x7b9ea34f
MockZkSyncBridgeCallFailedToL2()0x9a245636
DeveloperAlreadyHasNFT()0xa74b28d1
DeveloperCannotBeZeroAddress()0x7e3f46bd
DeveloperHasNoNFT()0x70849322
DeveloperHasNoRewards()0xdf6b47b0
GhostAlreadyHasNFT()0x36bd0868
GhostCannotBeZeroAddress()0x4d8d14c5
NotNFTOwner()0x4088c61c
AccessControlUnauthorizedAccount(address,bytes32)0xe2517d3f
AllocationCommitmentMissing()0xbe77b500
AllocationDuplicateKey()0xbb598087
AllocationLifecycleBudgetInsufficient()0x00583b33
AllocationSubtreeHashMismatch()0xdda17044
AllocationSubtreeRequired()0x47db53f3
AllocationTreeBudgetInconsistent()0x328bfb08
AllocationTreeMalformed()0x7fecd5b1
AllocationTreeTooDeep()0x48668d66
AlreadyClaimed()0x646cf558
AlreadyFunded()0x5adf6387
AlreadyRevoked()0x905e7107
AlreadySettled()0x560ff900
AlreadyUnlocked()0x5090d6c6
ArrayLengthMismatch()0xa24a13a6
AttemptIdentityMismatch(bytes32,bytes32)0x6045a383
BudgetTooLow()0x305e533c
BurnTransferFailed()0xaac1169b
ContributionTooLarge(uint256,uint256)0x058baee9
DaoAlreadyRegistered()0x8fd0c2bc
DecisionBasisMismatch(bytes32,uint256,uint256)0x1b98edb6
DecisionEffectiveAtInFuture(bytes32,uint256,uint256)0xe56cb5fe
EqOutputsTooLarge(uint256,uint256)0x6f4a4557
ExecutionBudgetExceeded(uint256,uint256)0x57df8523
ExternalBudgetInvalid()0x8b434eea
ExternalGasLimitBelowMinimum()0xf5963b64
ExternalGasLimitOrPriceZero()0xbf35c24e
ExternalMessageFreezeExceeded(bytes32,uint256,uint256)0x05684868
ExternalOnAcceptanceNotSupported()0xa54ce0b6
FinalizedCountExceedsIssued()0x34bffaee
ForcedTransferFault()0xae656f8c
FunctionNotFound(bytes4)0x5416eb98
FundingMismatch()0xb84a1afb
GovernanceInsufficientValue(uint256,uint256)0xf498db0c
GovernanceInvalidDelay()0xd1132ebc
GovernanceOperationExpired(address,bytes4,bytes,uint256,uint256)0x11515806
GovernanceOperationNotFound(address,bytes4,bytes,uint256)0x8ff7bbe1
GovernanceOperationPending(address,bytes4,bytes,uint256)0xc7eef27f
GovernanceTargetIsNotAContract(address)0x83e02672
GovernanceTimelockPending(address,bytes4,bytes,uint256,uint256)0x2189e680
IllegalStatusTransition(bytes32,uint8,uint8)0xe1081528
IncentivePercentageTooHigh()0xaf188845
InsufficientActiveValidators(uint256,uint256)0xb5e5b936
InsufficientAppealFunding(uint256,uint256)0x96631b91
InsufficientAvailablePool(uint256,uint256)0xdaf0d2c0
InsufficientBalance()0xf4d678b8
InsufficientBondCustody()0xebab1869
InsufficientContractBalance()0x786e0a99
InsufficientGasForInternalMessageCreation(uint256,uint256,uint256,address)0xb2c9bc63
InsufficientInflationFunds()0x58d77d2a
InsufficientValue()0x11011294
InternalMessagePayloadUnavailable()0x69244346
InvariantViolation(uint256)0xa1a97e55
JudicialCapacityReservationActive(address)0x655891ba
JudicialCapacityReservationMissing(address)0x08f16b5f
JudicialQuarantineCauseActive(address)0x1e6f3cc1
LegacyProposeReceiptRetired()0xa4ec1c31
Locked()0x0f2e5b6c
ManualUnlockNotRequired()0x90173285
MaxPriceExceeded(uint256,uint256)0xb4132db3
MaxValidatorsCannotBeZero()0x83c27a2d
MaxValidatorsExceedsSafeLimit(uint256,uint256)0x5449cfab
MessageAllocationBudgetInsufficient()0x67d6a6b3
MessageAllocationsNotEqualBudget()0x9659e275
MessageBudgetExceeded(uint256,uint256)0xd67553bd
MessageDeclaredBudgetInsufficient()0x7f295162
MessageEffectCommitLengthMismatch(uint256,uint256)0x69d6a5d1
MessageEffectDescriptorMismatch(bytes32,bytes32,bytes32,bytes32)0x1d0de3df
MessageEmissionPhaseMismatch()0x5ca1f1d8
MessageGenerationSetMismatch(bytes32,uint256,bytes32,bytes32)0xd1d4bb02
MessageNoMatchingAllocation()0x4e4b3c38
MinimumStakeTransitionActive(uint64)0x06d6cbfc
MinimumStakeTransitionConfigLocked()0x478289fb
MinimumStakeTransitionCursorMismatch(uint24,uint24)0x8b610290
MinimumStakeTransitionIdentityMismatch(uint64,uint64,bytes32,bytes32)0xc2feee5c
MinimumStakeTransitionInvalidStatus(MinimumStakeTransitionStatus)0xfad9cebb
MinimumStakeTransitionNotActive()0x0db97f7e
MirrorFieldOverflow()0xab5f8856
NoPendingOperator()0x9c2af11f
NoPendingRefund()0xfb093898
NoPreviousEpoch()0x9fa56a5b
NoValidatorWallet()0x62b7e683
OperatorAlreadyAssigned()0x5acd21ba
OperatorAlreadyUsed()0x229d6af4
OutOfGas()0x77ebef4d
OwnableUnauthorizedAccount(address)0x118cdaa7
PendingIssuedSlotMismatch(address,uint256,uint256)0xe03bc2f5
PercentageOutOfRange(uint256)0xafd5d0b0
PermanentQuarantineNeedsOwnerPardon()0x7801306b
PhaseDeadlineNotInitialized(bytes32,uint8)0xbd2704b2
PhaseTimeoutOutOfBounds(uint256,uint256,uint256)0xdb0c8dfe
PubKeyIsZero()0x46e80dd3
PubKeyMismatch()0x203f11f1
PubKeyNotOnCurve()0x65858cdf
ReadFailure(uint256,bytes)0x7e5e2d9e
RecoverRangeBeyondIssued()0x82eacf35
RecoverRangeInvalid()0xd1402d7e
ReentrancyGuardReentrantCall()0x3ee5aeb5
RegistryFull()0xd1071567
RemedySelectionPlanMismatch(bytes32,bytes32)0xba21e405
RemedySelectionSourceDrift()0xa73be52b
ResolutionBasisMismatch()0x1e302f9f
ResolutionPlanMismatch(uint8,uint8)0x86edcb1d
RevealDeadlineElapsed(bytes32,uint256,uint256)0x78763ab2
RollupBudgetBelowFloor()0xa70732ee
RoundPlanMismatch(bytes32,bytes32)0xa0835b01
RoundSnapshotSealed(bytes32,uint256)0x2c586f2e
SelectionAuthorityPinned(uint256)0xc8fef2eb
SelectionMutationInProgress()0xf2539721
SpendFailed()0x5435f21a
StakingInvariantNotConfigured()0x6d31b9f3
SubmittedMessagesTooLarge(uint256,uint256)0xdc8b19e1
TooManyMessages()0x1ec0b2f7
TopUpCannotExtendSchedule()0x49449933
TransactionAlreadyAccepted()0x7bdaa2b4
TransactionAlreadyExists(bytes32)0x8ce457d6
TransactionInRecomputation()0x00ebaa7c
TransitionCallerEdgeNotAllowed(address,uint8,uint8)0x8d0b4cad
TransitionEndpointNotAllowed(uint8,uint8)0x78425d91
TribunalAlreadyFinalized()0x6cb27c0f
TribunalNotFound()0x609bbfa8
Unauthorized()0x82b42900
UnauthorizedDelegatorClaim()0xdcc541d1
UnauthorizedInflationRequest()0x7d8f3b9e
UnbanCapExceeded(uint256,uint256,uint256)0x1d49490f
UnfinishedTransactions()0xf082b82d
UnknownGenAction()0xe43351e0
UnknownStakingError()0x109ce524
ValidatorDoesNotExist()0xe51315d2
ValidatorMustNotBeDelegator()0x85d35a02
ValidatorWalletAlreadyDeployed()0xb9ceb484
ValueBackingMismatch(uint256,uint256)0xf23d468d
VestingAlreadyExists()0xe7075d2a
VestingAlreadyStopped()0xd731022d
VestingDeploymentFailed()0x0f5cc9de
VestingDoesNotExist()0x57fd8e07
VestingNotStopped()0x6e32bb06
WithdrawExceedsVested()0x8b6a4865
WrongRecomputationTransaction()0x4d1fe80e
ZeroAddress(string)0xeac0d389
ZeroAmount()0x1f2a2005
ZeroTotalWeight()0x098404de
ZeroValue()0x7c946ed7
RandomSeedAlreadySet()0x7d6b9724
SlashGovernanceDelayPassed()0x06de1175
SlashPercentageTooHigh()0x0edf5154
SlashRevokedToRemoveTooHigh(uint256,uint256)0x217f3b2e
OnlyGEN()0x6a10007b
OnlyIdleness()0xf2c0764c
OnlyIdlenessOrTribunal()0xfcde63e9
OnlyStakingContract()0xd807afce
OnlyStakingRouter()0x25cbc0a7
OnlyTransactions()0x516257a3
OnlyTransactionsOrTribunal()0x6c4db06b
OnlyTribunal()0x811befe9
EmptyTransaction()0x260c9d62
FailedTransferCall()0x3825f587
FinalizationNotAllowed()0xe1b3b3b7
FinalizationWindowForRevealingNotOpened()0xabc07e66
TransactionCanNotBeFinalized()0xd9be37ca
TransactionNotAcceptedNorUndetermined()0x90cb8b61
TransactionNotFinalized()0xe4e81f79
TransactionNotFound()0x31fb878f
TransactionNotFound(bytes32)0x925fea73
TransactionNotTerminal()0x1d3a409a
TransactionStillValid()0xc4afd8fa
DeepthoughtCallFailed()0xbd5ac82f
FailedTransfer(address)0x3f32e1dd
NFTMinterCallFailed()0x64c31e4b
NFTMinterNotConfigured()0xa0c98f30
NumberOfValidatorsExceedsAvailable()0x9c637db9
ValidatorsConsumed()0xeae94a56
ValidatorsUnavailable()0xd0b5c3bb
LeaderResultHashAlreadySet()0x584764ae
ValidatorAlreadyCommitted()0xf8961aee
ValidatorAlreadyInTree()0x45be71b6
ValidatorAlreadyJoined()0x71d16bc6
ValidatorAlreadyRevealed()0x00d6a91b
ValidatorAlreadyVoted()0x6e271ebe
VoteAlreadyCommitted()0xcf1c5b9c
VoteAlreadyRevealed()0x3246ac36
AllValidatorsCommitted()0xb467acd8
AllValidatorsConsumed()0x54055ab9
ValidatorSelectionFailed()0x1f90236d
ValidValidatorNotFound()0x1c177f6c
ValidatorBelowMinimumStake()0x0b294dc3
ValidatorExitExceedsShares()0xfddb7740
ValidatorMayNotBeDelegator()0x359b3ac0
ValidatorMayNotDepositZeroValue()0xffb117c5
ValidatorMayNotJoinWithZeroValue()0xd25ef26f
ValidatorNotActive()0xa6ce15f6
ValidatorNotInTree()0x8ee72f3f
ValidatorNotJoined()0xffc673e8
ValidatorWithdrawalExceedsStake()0xfb7f2a7f
NoIdleValidator()0xede1b7ce
NonGenVMContract()0xc1ba7c94
NoRotationsLeft()0xe0bf2581
NoSenderForTransaction()0xa0b18673
NoValidatorsAvailable()0xc4e41c46
NoValidatorsFound()0x9b7fa1e5