Skip to main content

IOsTokenVaultEscrow

Git Source

Inherits: IMulticall

Author: StakeWise

Interface for OsTokenVaultEscrow contract

Functions

liqThresholdPercent

The liquidation threshold percent

function liqThresholdPercent() external view returns (uint64);

Returns

NameTypeDescription
<none>uint64The liquidation threshold percent starting from which the osToken shares can be liquidated

liqBonusPercent

The liquidation bonus percent

function liqBonusPercent() external view returns (uint256);

Returns

NameTypeDescription
<none>uint256The liquidation bonus percent paid for liquidating the osToken shares

authenticator

The address of the authenticator

function authenticator() external view returns (address);

Returns

NameTypeDescription
<none>addressThe address of the authenticator contract

getPosition

Get the position details

function getPosition(address vault, uint256 positionTicket) external view returns (address, uint256, uint256);

Parameters

NameTypeDescription
vaultaddressThe address of the vault
positionTicketuint256The exit position ticket

Returns

NameTypeDescription
<none>addressowner The address of the assets owner
<none>uint256exitedAssets The amount of assets exited and ready to be claimed
<none>uint256osTokenShares The amount of osToken shares

register

Registers the new escrow position

function register(address owner, uint256 exitPositionTicket, uint256 osTokenShares, uint256 cumulativeFeePerShare)
external;

Parameters

NameTypeDescription
owneraddressThe address of the exited assets owner
exitPositionTicketuint256The exit position ticket
osTokenSharesuint256The amount of osToken shares
cumulativeFeePerShareuint256The cumulative fee per share used to calculate the osToken fee

processExitedAssets

Claims exited assets from the vault to the escrow

function processExitedAssets(address vault, uint256 exitPositionTicket, uint256 timestamp, uint256 exitQueueIndex)
external;

Parameters

NameTypeDescription
vaultaddressThe address of the vault
exitPositionTicketuint256The exit position ticket
timestampuint256The timestamp of the exit
exitQueueIndexuint256The index of the exit in the queue

claimExitedAssets

Claims the exited assets from the escrow to the owner. Can only be called by the position owner.

function claimExitedAssets(address vault, uint256 exitPositionTicket, uint256 osTokenShares)
external
returns (uint256 claimedAssets);

Parameters

NameTypeDescription
vaultaddressThe address of the vault
exitPositionTicketuint256The exit position ticket
osTokenSharesuint256The amount of osToken shares to burn

Returns

NameTypeDescription
claimedAssetsuint256The amount of assets claimed

liquidateOsToken

Liquidates the osToken shares

function liquidateOsToken(address vault, uint256 exitPositionTicket, uint256 osTokenShares, address receiver)
external;

Parameters

NameTypeDescription
vaultaddressThe address of the vault
exitPositionTicketuint256The exit position ticket
osTokenSharesuint256The amount of osToken shares to liquidate
receiveraddressThe address of the receiver of the liquidated assets

redeemOsToken

Redeems the osToken shares. Can only be called by the osToken redeemer.

function redeemOsToken(address vault, uint256 exitPositionTicket, uint256 osTokenShares, address receiver) external;

Parameters

NameTypeDescription
vaultaddressThe address of the vault
exitPositionTicketuint256The exit position ticket
osTokenSharesuint256The amount of osToken shares to redeem
receiveraddressThe address of the receiver of the redeemed assets

setAuthenticator

Updates the authenticator. Can only be called by the owner.

function setAuthenticator(address newAuthenticator) external;

Parameters

NameTypeDescription
newAuthenticatoraddressThe address of the new authenticator

updateLiqConfig

Updates the liquidation configuration. Can only be called by the owner.

function updateLiqConfig(uint64 _liqThresholdPercent, uint256 _liqBonusPercent) external;

Parameters

NameTypeDescription
_liqThresholdPercentuint64The liquidation threshold percent
_liqBonusPercentuint256The liquidation bonus percent

Events

PositionCreated

Event emitted on position creation

event PositionCreated(
address indexed vault,
uint256 indexed exitPositionTicket,
address owner,
uint256 osTokenShares,
uint256 cumulativeFeePerShare
);

Parameters

NameTypeDescription
vaultaddressThe address of the vault
exitPositionTicketuint256The exit position ticket
owneraddressThe address of the assets owner
osTokenSharesuint256The amount of osToken shares
cumulativeFeePerShareuint256The cumulative fee per share used to calculate the osToken fee

ExitedAssetsProcessed

Event emitted on assets exit processing

event ExitedAssetsProcessed(
address indexed vault, address indexed caller, uint256 indexed exitPositionTicket, uint256 exitedAssets
);

Parameters

NameTypeDescription
vaultaddressThe address of the vault
calleraddressThe address of the caller
exitPositionTicketuint256The exit position ticket
exitedAssetsuint256The amount of exited assets claimed

OsTokenLiquidated

Event emitted on osToken liquidation

event OsTokenLiquidated(
address indexed caller,
address indexed vault,
uint256 indexed exitPositionTicket,
address receiver,
uint256 osTokenShares,
uint256 receivedAssets
);

Parameters

NameTypeDescription
calleraddressThe address of the function caller
vaultaddressThe address of the vault
exitPositionTicketuint256The exit position ticket
receiveraddressThe address of the receiver of the liquidated assets
osTokenSharesuint256The amount of osToken shares to liquidate
receivedAssetsuint256The amount of assets received

OsTokenRedeemed

Event emitted on osToken redemption

event OsTokenRedeemed(
address indexed caller,
address indexed vault,
uint256 indexed exitPositionTicket,
address receiver,
uint256 osTokenShares,
uint256 receivedAssets
);

Parameters

NameTypeDescription
calleraddressThe address of the function caller
vaultaddressThe address of the vault
exitPositionTicketuint256The exit position ticket
receiveraddressThe address of the receiver of the redeemed assets
osTokenSharesuint256The amount of osToken shares to redeem
receivedAssetsuint256The amount of assets received

ExitedAssetsClaimed

Event emitted on exited assets claim

event ExitedAssetsClaimed(
address indexed receiver,
address indexed vault,
uint256 indexed exitPositionTicket,
uint256 osTokenShares,
uint256 assets
);

Parameters

NameTypeDescription
receiveraddressThe address of the receiver of the exited assets
vaultaddressThe address of the vault
exitPositionTicketuint256The exit position ticket
osTokenSharesuint256The amount of osToken shares burned
assetsuint256The amount of assets claimed

LiqConfigUpdated

Event emitted on liquidation configuration update

event LiqConfigUpdated(uint64 liqThresholdPercent, uint256 liqBonusPercent);

Parameters

NameTypeDescription
liqThresholdPercentuint64The liquidation threshold percent
liqBonusPercentuint256The liquidation bonus percent

AuthenticatorUpdated

Event emitted on authenticator update

event AuthenticatorUpdated(address newAuthenticator);

Parameters

NameTypeDescription
newAuthenticatoraddressThe address of the new authenticator

Structs

Position

Struct to store the escrow position details

struct Position {
address owner;
uint96 exitedAssets;
uint128 osTokenShares;
uint128 cumulativeFeePerShare;
}

Properties

NameTypeDescription
owneraddressThe address of the assets owner
exitedAssetsuint96The amount of assets exited and ready to be claimed
osTokenSharesuint128The amount of osToken shares
cumulativeFeePerShareuint128The cumulative fee per share used to calculate the osToken fee