Skip to main content

IOsTokenConfig

Git Source

Author: StakeWise

Defines the interface for the OsTokenConfig contract

Functions

redeemer

The address of the OsToken redeemer

function redeemer() external view returns (address);

Returns

NameTypeDescription
<none>addressThe address of the redeemer

getConfig

Returns the OsToken minting and liquidating configuration values for the vault

function getConfig(address vault) external view returns (Config memory config);

Parameters

NameTypeDescription
vaultaddressThe address of the vault to get the config for

Returns

NameTypeDescription
configConfigThe OsToken config for the vault

setRedeemer

Sets the OsToken redeemer address. Can only be called by the owner.

function setRedeemer(address newRedeemer) external;

Parameters

NameTypeDescription
newRedeemeraddressThe address of the new redeemer

updateConfig

Updates the OsToken minting and liquidating configuration values. Can only be called by the owner.

function updateConfig(address vault, Config memory config) external;

Parameters

NameTypeDescription
vaultaddressThe address of the vault. Set to zero address to update the default config.
configConfigThe new OsToken configuration

Events

OsTokenConfigUpdated

Emitted when OsToken minting and liquidating configuration values are updated

event OsTokenConfigUpdated(address vault, uint128 liqBonusPercent, uint64 liqThresholdPercent, uint64 ltvPercent);

Parameters

NameTypeDescription
vaultaddressThe address of the vault to update the config for. Will be zero address if it is a default config.
liqBonusPercentuint128The new liquidation bonus percent value
liqThresholdPercentuint64The new liquidation threshold percent value
ltvPercentuint64The new loan-to-value (LTV) percent value

RedeemerUpdated

Emitted when the OsToken redeemer address is updated

event RedeemerUpdated(address newRedeemer);

Parameters

NameTypeDescription
newRedeemeraddressThe address of the new redeemer

Structs

Config

The OsToken minting and liquidating configuration values

struct Config {
uint128 liqBonusPercent;
uint64 liqThresholdPercent;
uint64 ltvPercent;
}

Properties

NameTypeDescription
liqBonusPercentuint128The minimal bonus percent that liquidator earns on OsToken position liquidation
liqThresholdPercentuint64The liquidation threshold percent used to calculate health factor for OsToken position
ltvPercentuint64The percent used to calculate how much user can mint OsToken shares