DelegationManager
Verified contract
Implementation
Active on
Ethereum with 2 txns
Storage
Map
Table
Raw
Constants and immutables
23
Slot
XX
32
30
28
26
24
22
20
18
16
14
12
10
8
6
4
2
0
-
variable spans 49 additional slots
-
variable spans 48 additional slots
-
variable spans 47 additional slots
-
variable spans 38 additional slots
-
variable spans 48 additional slots
Balances ($0.00)
No balances found for "DelegationManager"
Transactions
Txn hash | Method | Block | Age | From | To | Value (ETH) | Fee (ETH) |
---|---|---|---|---|---|---|---|
| 19871398 | 6 months ago | | | 0 | 0.00013048170 | |
| 19846128 | 6 months ago | | | 0 | 0.00057057543 |
ABI
ABI objects
Getter at block 20791829
DELEGATION_APPROVAL_TYPEHASH() view returns (bytes32)
0x14bde674c9f64b2ad00eaaee4a8bed1fabef35c7507e3c5b9cfc9436909a2dad
DOMAIN_TYPEHASH() view returns (bytes32)
0x8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866
MAX_STAKER_OPT_OUT_WINDOW_BLOCKS() view returns (uint256)
1296000
MAX_WITHDRAWAL_DELAY_BLOCKS() view returns (uint256)
216000
STAKER_DELEGATION_TYPEHASH() view returns (bytes32)
0x39111bc4a4d688e1f685123d7497d4615370152a8ee4a0593e647bd06ad8bb0b
beaconChainETHStrategy() view returns (address)
0xbeac0eeeeeeeeeeeeeeeeeeeeeeeeeeeeeebeac0
domainSeparator() view returns (bytes32)
0x0000000000000000000000000000000000000000000000000000000000000000
eigenPodManager() view returns (address)
0x91e677b07f7af907ec9a428aafa9fc14a0d3a338
minWithdrawalDelayBlocks() view returns (uint256)
0
owner() view returns (address)
0x0000000000000000000000000000000000000000
paused() view returns (uint256)
0
pauserRegistry() view returns (address)
0x0000000000000000000000000000000000000000
slasher() view returns (address)
0xd92145c07f8ed1d392c1b88017934e301cc1c3cd
strategyManager() view returns (address)
0x858646372cc42e1a627fce94aa7a7033e7cf075a
Read-only
calculateCurrentStakerDelegationDigestHash(address staker, address operator, uint256 expiry) view returns (bytes32)
calculateDelegationApprovalDigestHash(address staker, address operator, address _delegationApprover, bytes32 approverSalt, uint256 expiry) view returns (bytes32)
calculateStakerDelegationDigestHash(address staker, uint256 _stakerNonce, address operator, uint256 expiry) view returns (bytes32)
calculateWithdrawalRoot(struct IDelegationManagerWithdrawal withdrawal) pure returns (bytes32)
cumulativeWithdrawalsQueued(address) view returns (uint256)
delegatedTo(address) view returns (address)
delegationApprover(address operator) view returns (address)
delegationApproverSaltIsSpent(address, bytes32) view returns (bool)
earningsReceiver(address operator) view returns (address)
getDelegatableShares(address staker) view returns (address[], uint256[])
getOperatorShares(address operator, address[] strategies) view returns (uint256[])
getWithdrawalDelay(address[] strategies) view returns (uint256)
isDelegated(address staker) view returns (bool)
isOperator(address operator) view returns (bool)
operatorDetails(address operator) view returns (struct IDelegationManagerOperatorDetails)
operatorShares(address, address) view returns (uint256)
paused(uint8 index) view returns (bool)
pendingWithdrawals(bytes32) view returns (bool)
stakerNonce(address) view returns (uint256)
stakerOptOutWindowBlocks(address operator) view returns (uint256)
strategyWithdrawalDelayBlocks(address) view returns (uint256)
State-modifying
Events completeQueuedWithdrawal(struct IDelegationManagerWithdrawal withdrawal, address[] tokens, uint256 middlewareTimesIndex, bool receiveAsTokens)
completeQueuedWithdrawals(struct IDelegationManagerWithdrawal[] withdrawals, address[][] tokens, uint256[] middlewareTimesIndexes, bool[] receiveAsTokens)
decreaseDelegatedShares(address staker, address strategy, uint256 shares)
delegateTo(address operator, struct ISignatureUtilsSignatureWithExpiry approverSignatureAndExpiry, bytes32 approverSalt)
delegateToBySignature(address staker, address operator, struct ISignatureUtilsSignatureWithExpiry stakerSignatureAndExpiry, struct ISignatureUtilsSignatureWithExpiry approverSignatureAndExpiry, bytes32 approverSalt)
increaseDelegatedShares(address staker, address strategy, uint256 shares)
initialize(address initialOwner, address _pauserRegistry, uint256 initialPausedStatus, uint256 _minWithdrawalDelayBlocks, address[] _strategies, uint256[] _withdrawalDelayBlocks)
migrateQueuedWithdrawals(struct IStrategyManagerDeprecatedStruct_QueuedWithdrawal[] withdrawalsToMigrate)
modifyOperatorDetails(struct IDelegationManagerOperatorDetails newOperatorDetails)
pause(uint256 newPausedStatus)
pauseAll()
queueWithdrawals(struct IDelegationManagerQueuedWithdrawalParams[] queuedWithdrawalParams) returns (bytes32[])
registerAsOperator(struct IDelegationManagerOperatorDetails registeringOperatorDetails, string metadataURI)
renounceOwnership()
setMinWithdrawalDelayBlocks(uint256 newMinWithdrawalDelayBlocks)
setPauserRegistry(address newPauserRegistry)
setStrategyWithdrawalDelayBlocks(address[] strategies, uint256[] withdrawalDelayBlocks)
transferOwnership(address newOwner)
undelegate(address staker) returns (bytes32[] withdrawalRoots)
unpause(uint256 newPausedStatus)
updateOperatorMetadataURI(string metadataURI)
Initialized(uint8 version)
MinWithdrawalDelayBlocksSet(uint256 previousValue, uint256 newValue)
OperatorDetailsModified(address indexed operator, struct IDelegationManagerOperatorDetails newOperatorDetails)
OperatorMetadataURIUpdated(address indexed operator, string metadataURI)
OperatorRegistered(address indexed operator, struct IDelegationManagerOperatorDetails operatorDetails)
OperatorSharesDecreased(address indexed operator, address staker, address strategy, uint256 shares)
OperatorSharesIncreased(address indexed operator, address staker, address strategy, uint256 shares)
OwnershipTransferred(address indexed previousOwner, address indexed newOwner)
Paused(address indexed account, uint256 newPausedStatus)
PauserRegistrySet(address pauserRegistry, address newPauserRegistry)
StakerDelegated(address indexed staker, address indexed operator)
StakerForceUndelegated(address indexed staker, address indexed operator)
StakerUndelegated(address indexed staker, address indexed operator)
StrategyWithdrawalDelayBlocksSet(address strategy, uint256 previousValue, uint256 newValue)
Unpaused(address indexed account, uint256 newPausedStatus)
WithdrawalCompleted(bytes32 withdrawalRoot)
WithdrawalMigrated(bytes32 oldWithdrawalRoot, bytes32 newWithdrawalRoot)
WithdrawalQueued(bytes32 withdrawalRoot, struct IDelegationManagerWithdrawal withdrawal)
constructor(address _strategyManager, address _slasher, address _eigenPodManager)
This contract contains no fallback and receive objects.
This contract contains no error objects.