Skip to main content

IVaultState

Git Source

Inherits: IVaultFee

Author: StakeWise

Defines the interface for the VaultState contract

Functions

totalAssets

Total assets in the Vault

function totalAssets() external view returns (uint256);

Returns

NameTypeDescription
<none>uint256The total amount of the underlying asset that is "managed" by Vault

totalShares

Function for retrieving total shares

function totalShares() external view returns (uint256);

Returns

NameTypeDescription
<none>uint256The amount of shares in existence

capacity

The Vault's capacity

function capacity() external view returns (uint256);

Returns

NameTypeDescription
<none>uint256The amount after which the Vault stops accepting deposits

withdrawableAssets

Total assets available in the Vault. They can be staked or withdrawn.

function withdrawableAssets() external view returns (uint256);

Returns

NameTypeDescription
<none>uint256The total amount of withdrawable assets

queuedShares

Queued Shares

function queuedShares() external view returns (uint128);

Returns

NameTypeDescription
<none>uint128The total number of shares queued for exit

totalExitingAssets

Total Exiting Assets (deprecated)

function totalExitingAssets() external view returns (uint128);

Returns

NameTypeDescription
<none>uint128The total number of assets queued for exit

getShares

Returns the number of shares held by an account

function getShares(address account) external view returns (uint256);

Parameters

NameTypeDescription
accountaddressThe account for which to look up the number of shares it has, i.e. its balance

Returns

NameTypeDescription
<none>uint256The number of shares held by the account

convertToShares

Converts assets to shares

function convertToShares(uint256 assets) external view returns (uint256 shares);

Parameters

NameTypeDescription
assetsuint256The amount of assets to convert to shares

Returns

NameTypeDescription
sharesuint256The amount of shares that the Vault would exchange for the amount of assets provided

convertToAssets

Converts shares to assets

function convertToAssets(uint256 shares) external view returns (uint256 assets);

Parameters

NameTypeDescription
sharesuint256The amount of shares to convert to assets

Returns

NameTypeDescription
assetsuint256The amount of assets that the Vault would exchange for the amount of shares provided

isStateUpdateRequired

Check whether state update is required

function isStateUpdateRequired() external view returns (bool);

Returns

NameTypeDescription
<none>booltrue if state update is required, false otherwise

updateState

Updates the total amount of assets in the Vault and its exit queue

function updateState(IKeeperRewards.HarvestParams calldata harvestParams) external;

Parameters

NameTypeDescription
harvestParamsIKeeperRewards.HarvestParamsThe parameters for harvesting Keeper rewards

Events

CheckpointCreated

Event emitted on checkpoint creation

event CheckpointCreated(uint256 shares, uint256 assets);

Parameters

NameTypeDescription
sharesuint256The number of burned shares
assetsuint256The amount of exited assets

FeeSharesMinted

Event emitted on minting fee recipient shares

event FeeSharesMinted(address receiver, uint256 shares, uint256 assets);

Parameters

NameTypeDescription
receiveraddressThe address of the fee recipient
sharesuint256The number of minted shares
assetsuint256The amount of minted assets

ExitingAssetsPenalized

Event emitted when exiting assets are penalized

event ExitingAssetsPenalized(uint256 penalty);

Parameters

NameTypeDescription
penaltyuint256The total penalty amount