WithdrawalManager (Queue)
Last updated
Last updated
\
addShares
Add shares to the withdrawal manager.
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
\
asset
Returns the address of the underlying pool asset.
\
factory
The address of the proxy factory.
\
globals
Returns the address of the globals contract.
\
governor
Return the address of the governor.
\
implementation
The address of the implementation contract being proxied.
\
isInExitWindow
Returns if a user is able to withdraw. Required for compatibility with pool managers. NOTE: Always returns true to fulfil interface requirements.
\
isManualWithdrawal
Checks if an account is set to perform withdrawals manually.
\
lockedLiquidity
Gets the total amount of funds that need to be locked to fulfill exits. NOTE: Always zero for this implementation.
\
lockedShares
Gets the amount of locked shares for an account.
\
manualSharesAvailable
Returns the amount of shares available for manual withdrawal.
\
migrate
Modifies the proxy's storage by delegate-calling a migrator contract with some arguments. Access control logic critical since caller can force a selfdestruct via a malicious `migrator_` which is delegatecalled.
\
pool
Returns the address of the pool contract.
\
poolDelegate
Returns the address of the pool delegate.
\
poolManager
Returns the address of the pool manager contract.
\
previewRedeem
Returns the amount of shares that can be redeemed. NOTE: The `shares` value is ignored.
\
previewWithdraw
Gets the amount of shares that can be withdrawn. NOTE: Values just passed through as withdraw is not implemented.
\
processExit
Processes a withdrawal request. Uses the current exchange rate to calculate the amount of assets withdrawn.
\
processRedemptions
Processes pending redemption requests. Requests are processed in the order they were submitted. Automatic withdrawal requests will be fulfilled atomically.
\
queue
Returns the first and last withdrawal requests pending redemption.
\
removeRequest
Removes a withdrawal request from the queue. Can only be called by the pool delegate.
\
removeShares
Removes shares from the withdrawal manager.
\
requestIds
Returns the request identifier of an account. Returns zero if the account does not have a withdrawal request.
\
requests
Returns the owner and amount of shares associated with a withdrawal request.
\
securityAdmin
Returns the address of the security admin.
\
setImplementation
Modifies the proxy's implementation address.
\
setManualWithdrawal
Defines if an account will withdraw shares manually or automatically.
\
totalShares
Returns the total amount of shares pending redemption.
\
upgrade
Upgrades a contract implementation to a specific version. Access control logic critical since caller can force a selfdestruct via a malicious `migrator_` which is delegatecalled.
\
ManualSharesDecreased
Emitted when a manual redemption takes place.
\
ManualSharesIncreased
Emitted when a manual redemption is processed.
\
ManualWithdrawalSet
Emitted when the withdrawal type of an account is updated.
\
RequestCreated
Emitted when a withdrawal request is created.
\
RequestDecreased
Emitted when a withdrawal request is updated.
\
RequestProcessed
Emitted when a withdrawal request is processed.
\
RequestRemoved
Emitted when a withdrawal request is removed.
\
Upgraded
The instance was upgraded.
\
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
Index | Name | Type | Internal Type | Description |
---|---|---|---|---|
0
shares_
uint256
uint256
1
owner_
address
address
0
asset_
address
address
0
factory_
address
address
0
globals_
address
address
0
governor_
address
address
0
implementation_
address
address
0
owner_
address
address
The account to check if it's in withdraw window.
0
isInExitWindow_
bool
bool
True if the account is in the withdraw window.
0
``
address
address
0
bool
bool
0
lockedLiquidity_
uint256
uint256
The amount of locked liquidity.
0
owner_
address
address
The address to check the exit for.
0
lockedShares_
uint256
uint256
The amount of manual shares available.
0
``
address
address
0
uint256
uint256
0
migrator_
address
address
The address of a migrator contract.
1
arguments_
bytes
bytes
Some encoded arguments to use for the migration.
0
address
address
0
poolDelegate_
address
address
0
address
address
0
owner_
address
address
1
shares_
uint256
uint256
0
redeemableShares_
uint256
uint256
1
resultingAssets_
uint256
uint256
0
owner_
address
address
The address to check the withdrawal for.
1
assets_
uint256
uint256
The amount of requested shares to withdraw.
0
redeemableAssets_
uint256
uint256
The amount of assets that can be withdrawn.
1
resultingShares_
uint256
uint256
The amount of shares that will be burned.
0
shares_
uint256
uint256
1
owner_
address
address
0
redeemableShares_
uint256
uint256
1
resultingAssets_
uint256
uint256
0
maxSharesToProcess_
uint256
uint256
0
nextRequestId
uint128
uint128
Identifier of the next withdrawal request that will be processed.
1
lastRequestId
uint128
uint128
Identifier of the last created withdrawal request.
0
owner_
address
address
0
shares_
uint256
uint256
1
owner_
address
address
0
sharesReturned_
uint256
uint256
0
``
address
address
0
uint128
uint128
0
requestId_
uint128
uint128
0
owner_
address
address
1
shares_
uint256
uint256
0
securityAdmin_
address
address
0
implementation_
address
address
0
owner_
address
address
1
isManual_
bool
bool
0
uint256
uint256
0
version_
uint256
uint256
1
arguments_
bytes
bytes
Some encoded arguments to use for the upgrade.
0
owner
address
address
Address of the account.
1
sharesDecreased
uint256
uint256
Amount of shares redeemed.
0
owner
address
address
Address of the account.
1
sharesAdded
uint256
uint256
Amount of shares added to the redeemable amount.
0
owner
address
address
Address of the account.
1
isManual
bool
bool
`true` if the withdrawal is manual, `false` if it is automatic.
0
requestId
uint128
uint128
Identifier of the withdrawal request.
1
owner
address
address
Address of the owner of the shares.
2
shares
uint256
uint256
Amount of shares requested for redemption.
0
requestId
uint128
uint128
Identifier of the withdrawal request.
1
shares
uint256
uint256
Amount of shares reduced during a redemption request.
0
requestId
uint128
uint128
Identifier of the withdrawal request.
1
owner
address
address
The owner of the shares.
2
shares
uint256
uint256
Amount of redeemable shares.
3
assets
uint256
uint256
Amount of withdrawable assets.
0
requestId
uint128
uint128
Identifier of the withdrawal request.
0
toVersion_
uint256
uint256
The new version of the loan.
1
arguments_
bytes
bytes
The upgrade arguments, if any.