You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sorry if this is not the right place, but trying to find an answer to this.
The IDelegationManager contract defines queueWithdrawals as below, with bytes32[] array as return value.
function queueWithdrawals(QueuedWithdrawalParams[] calldataqueuedWithdrawalParams)
externalreturns (bytes32[] memory);
To complete the withdrawal, I "Complete Withdrawal as Tokens: invoke DelegationManager.completeQueuedWithdrawal() to complete the withdrawal and return assets to the withdrawer's wallet."
How do I create the params need for the completeQueuedWithdrawal function?
function completeQueuedWithdrawal(
Withdrawal calldatawithdrawal,
IERC20[] calldatatokens,
uint256middlewareTimesIndex,
boolreceiveAsTokens
) external;
Sorry if this is not the right place, but trying to find an answer to this.
The IDelegationManager contract defines
queueWithdrawals
as below, withbytes32[]
array as return value.To complete the withdrawal, I "Complete Withdrawal as Tokens: invoke DelegationManager.completeQueuedWithdrawal() to complete the withdrawal and return assets to the withdrawer's wallet."
How do I create the params need for the
completeQueuedWithdrawal
function?https://github.com/Layr-Labs/eigenlayer-contracts/blob/master/docs/core/DelegationManager.md#undelegating-and-withdrawing
The text was updated successfully, but these errors were encountered: