Skip to main content

ExitQueue

Git Source

Author: StakeWise

ExitQueue represent checkpoints of burned shares and exited assets

Functions

getLatestTotalTickets

Get the latest checkpoint total tickets

function getLatestTotalTickets(History storage self) internal view returns (uint256);

Parameters

NameTypeDescription
selfHistoryAn array containing checkpoints

Returns

NameTypeDescription
<none>uint256The current total tickets or zero if there are no checkpoints

getCheckpointIndex

Get checkpoint index for the burned shares

function getCheckpointIndex(History storage self, uint256 positionTicket) internal view returns (uint256);

Parameters

NameTypeDescription
selfHistoryAn array containing checkpoints
positionTicketuint256The position ticket to search the closest checkpoint for

Returns

NameTypeDescription
<none>uint256The checkpoint index or the length of checkpoints array in case there is no such

calculateExitedAssets

Calculates burned shares and exited assets

function calculateExitedAssets(
History storage self,
uint256 checkpointIdx,
uint256 positionTicket,
uint256 positionShares
) internal view returns (uint256 burnedShares, uint256 exitedAssets);

Parameters

NameTypeDescription
selfHistoryAn array containing checkpoints
checkpointIdxuint256The index of the checkpoint to start calculating from
positionTicketuint256The position ticket to start calculating exited assets from
positionSharesuint256The number of shares to calculate assets for

Returns

NameTypeDescription
burnedSharesuint256The number of shares burned
exitedAssetsuint256The number of assets exited

push

Pushes a new checkpoint onto a History

function push(History storage self, uint256 shares, uint256 assets) internal;

Parameters

NameTypeDescription
selfHistoryAn array containing checkpoints
sharesuint256The number of shares to add to the latest checkpoint
assetsuint256The number of assets that were exited for this checkpoint

_unsafeAccess

function _unsafeAccess(Checkpoint[] storage self, uint256 pos) private pure returns (Checkpoint storage result);

Structs

Checkpoint

A struct containing checkpoint data

struct Checkpoint {
uint160 totalTickets;
uint96 exitedAssets;
}

Properties

NameTypeDescription
totalTicketsuint160The cumulative number of tickets (shares) exited
exitedAssetsuint96The number of assets that exited in this checkpoint

History

A struct containing the history of checkpoints data

struct History {
Checkpoint[] checkpoints;
}

Properties

NameTypeDescription
checkpointsCheckpoint[]An array of checkpoints