Skip to content

Commit

Permalink
refactor: add back pause constants
Browse files Browse the repository at this point in the history
  • Loading branch information
0xClandestine committed Nov 22, 2024
1 parent 5bfc144 commit 7f72449
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/test/integration/IntegrationDeployer.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,20 @@ import "src/test/integration/users/User_M1.t.sol";

import "script/utils/ExistingDeploymentParser.sol";

// DelegationManager
uint8 constant PAUSED_NEW_DELEGATION = 0;
uint8 constant PAUSED_ENTER_WITHDRAWAL_QUEUE = 1;
uint8 constant PAUSED_EXIT_WITHDRAWAL_QUEUE = 2;
// StrategyManager
uint8 constant PAUSED_DEPOSITS = 0;
// EigenpodManager
uint8 constant PAUSED_NEW_EIGENPODS = 0;
uint8 constant PAUSED_WITHDRAW_RESTAKED_ETH = 1;
uint8 constant PAUSED_EIGENPODS_VERIFY_CREDENTIALS = 2;
uint8 constant PAUSED_EIGENPODS_VERIFY_BALANCE_UPDATE = 3;
uint8 constant PAUSED_EIGENPODS_VERIFY_WITHDRAWAL = 4;
uint8 constant PAUSED_NON_PROOF_WITHDRAWALS = 5;

abstract contract IntegrationDeployer is ExistingDeploymentParser, Logger {
using StdStyle for *;

Expand Down

0 comments on commit 7f72449

Please sign in to comment.