WithdrawHelper
Inherits: IWithdrawHelper
Functions
withdraw
Withdraws the funds from the vault at any ratio.
function withdraw(
address safe_,
address vault_,
uint256 amount0_,
uint256 amount1_,
address payable receiver_
) external override;
Parameters
Name | Type | Description |
---|---|---|
safe_ | address | The address of the safe that owns the vault. |
vault_ | address | The address of the vault to withdraw the funds from. |
amount0_ | uint256 | The amount of token0 to withdraw. |
amount1_ | uint256 | The amount of token1 to withdraw. |
receiver_ | address payable | The address that will receive the funds. |