Skip to main content

IVaultEnterExit

Git Source

Inherits: IVaultState

Author: StakeWise

Defines the interface for the VaultEnterExit contract

Functions

enterExitQueue

Locks shares to the exit queue. The shares continue earning rewards until they will be burned by the Vault.

function enterExitQueue(uint256 shares, address receiver) external returns (uint256 positionTicket);

Parameters

NameTypeDescription
sharesuint256The number of shares to lock
receiveraddressThe address that will receive assets upon withdrawal

Returns

NameTypeDescription
positionTicketuint256The position ticket of the exit queue. Returns uint256 max if no ticket created.

getExitQueueIndex

Get the exit queue index to claim exited assets from

function getExitQueueIndex(uint256 positionTicket) external view returns (int256);

Parameters

NameTypeDescription
positionTicketuint256The exit queue position ticket to get the index for

Returns

NameTypeDescription
<none>int256The exit queue index that should be used to claim exited assets. Returns -1 in case such index does not exist.

calculateExitedAssets

Calculates the number of shares and assets that can be claimed from the exit queue.

function calculateExitedAssets(address receiver, uint256 positionTicket, uint256 timestamp, uint256 exitQueueIndex)
external
view
returns (uint256 leftTickets, uint256 exitedTickets, uint256 exitedAssets);

Parameters

NameTypeDescription
receiveraddressThe address that will receive assets upon withdrawal
positionTicketuint256The exit queue ticket received after the enterExitQueue call
timestampuint256The timestamp when the shares entered the exit queue
exitQueueIndexuint256The exit queue index at which the shares were burned. It can be looked up by calling getExitQueueIndex.

Returns

NameTypeDescription
leftTicketsuint256The number of tickets left in the queue
exitedTicketsuint256The number of tickets that have already exited
exitedAssetsuint256The number of assets that can be claimed

claimExitedAssets

Claims assets that were withdrawn by the Vault. It can be called only after the enterExitQueue call by the receiver.

function claimExitedAssets(uint256 positionTicket, uint256 timestamp, uint256 exitQueueIndex) external;

Parameters

NameTypeDescription
positionTicketuint256The exit queue ticket received after the enterExitQueue call
timestampuint256The timestamp when the assets entered the exit queue
exitQueueIndexuint256The exit queue index at which the shares were burned. It can be looked up by calling getExitQueueIndex.

Events

Deposited

Event emitted on deposit

event Deposited(address indexed caller, address indexed receiver, uint256 assets, uint256 shares, address referrer);

Parameters

NameTypeDescription
calleraddressThe address that called the deposit function
receiveraddressThe address that received the shares
assetsuint256The number of assets deposited by the caller
sharesuint256The number of shares received
referreraddressThe address of the referrer

Redeemed

Event emitted on redeem

event Redeemed(address indexed owner, address indexed receiver, uint256 assets, uint256 shares);

Parameters

NameTypeDescription
owneraddressThe address that owns the shares
receiveraddressThe address that received withdrawn assets
assetsuint256The total number of withdrawn assets
sharesuint256The total number of withdrawn shares

ExitQueueEntered

Event emitted on shares added to the exit queue

event ExitQueueEntered(address indexed owner, address indexed receiver, uint256 positionTicket, uint256 shares);

Parameters

NameTypeDescription
owneraddressThe address that owns the shares
receiveraddressThe address that will receive withdrawn assets
positionTicketuint256The exit queue ticket that was assigned to the position
sharesuint256The number of shares that queued for the exit

V2ExitQueueEntered

Event emitted on shares added to the V2 exit queue (deprecated)

event V2ExitQueueEntered(
address indexed owner, address indexed receiver, uint256 positionTicket, uint256 shares, uint256 assets
);

Parameters

NameTypeDescription
owneraddressThe address that owns the shares
receiveraddressThe address that will receive withdrawn assets
positionTicketuint256The exit queue ticket that was assigned to the position
sharesuint256The number of shares that queued for the exit
assetsuint256The number of assets that queued for the exit

ExitedAssetsClaimed

Event emitted on claim of the exited assets

event ExitedAssetsClaimed(
address indexed receiver, uint256 prevPositionTicket, uint256 newPositionTicket, uint256 withdrawnAssets
);

Parameters

NameTypeDescription
receiveraddressThe address that has received withdrawn assets
prevPositionTicketuint256The exit queue ticket received after the enterExitQueue call
newPositionTicketuint256The new exit queue ticket in case not all the shares were withdrawn. Otherwise 0.
withdrawnAssetsuint256The total number of assets withdrawn