EthOsTokenVaultEscrow
Inherits: ReentrancyGuard, OsTokenVaultEscrow
Author: StakeWise
Used for initiating assets exits from the vault without burning osToken on Ethereum
Functions
constructor
Constructor
constructor(
address osTokenVaultController,
address osTokenConfig,
address initialOwner,
address _authenticator,
uint64 _liqThresholdPercent,
uint256 _liqBonusPercent
)
ReentrancyGuard()
OsTokenVaultEscrow(
osTokenVaultController,
osTokenConfig,
initialOwner,
_authenticator,
_liqThresholdPercent,
_liqBonusPercent
);
Parameters
Name | Type | Description |
---|---|---|
osTokenVaultController | address | The address of the OsTokenVaultController contract |
osTokenConfig | address | The address of the OsTokenConfig contract |
initialOwner | address | The address of the contract owner |
_authenticator | address | The address of the OsTokenVaultEscrowAuth contract |
_liqThresholdPercent | uint64 | The liquidation threshold percent |
_liqBonusPercent | uint256 | The liquidation bonus percent |
receive
Function for receiving assets from the vault
receive() external payable;
_transferAssets
Internal function for transferring assets from the Vault to the receiver
function _transferAssets(address receiver, uint256 assets) internal override nonReentrant;
Parameters
Name | Type | Description |
---|---|---|
receiver | address | The address that will receive the assets |
assets | uint256 | The number of assets to transfer |
Events
AssetsReceived
Event emitted on assets received by the escrow
event AssetsReceived(address indexed sender, uint256 value);
Parameters
Name | Type | Description |
---|---|---|
sender | address | The address of the sender |
value | uint256 | The amount of assets received |