StakedToken

Inherits: IStakedToken, ERC20Permit, IncreAccessControl, Pausable, ReentrancyGuard

Author: webthethird

Based on Aave's StakedToken, but with reward management outsourced to the SafetyModule

State Variables

UNDERLYING_TOKEN

Address of the underlying token to stake

IERC20 internal immutable UNDERLYING_TOKEN;

COOLDOWN_SECONDS

Seconds that user must wait between calling cooldown and redeem

uint256 internal immutable COOLDOWN_SECONDS;

UNSTAKE_WINDOW

Seconds available to redeem once the cooldown period is fullfilled

uint256 internal immutable UNSTAKE_WINDOW;

safetyModule

Address of the SafetyModule contract

ISafetyModule public safetyModule;

isInPostSlashingState

Whether the StakedToken is in a post-slashing state

Post-slashing state disables staking and further slashing, and allows users to redeem their staked tokens without waiting for the cooldown period

bool public isInPostSlashingState;

maxStakeAmount

Max amount of staked tokens allowed per user

uint256 public maxStakeAmount;

exchangeRate

Exchange rate between the underlying token and the staked token, normalized to 1e18

Rate is the amount of underlying tokens held in this contract per staked token issued, so it should be 1e18 in normal conditions, when all staked tokens are backed 1:1 by underlying tokens, but it can be lower if users' stakes have been slashed for an auction by the SafetyModule

uint256 public exchangeRate;

_stakersCooldowns

Timestamp of the start of the current cooldown period for each user

mapping(address => uint256) internal _stakersCooldowns;

Functions

onlySafetyModule

Modifier for functions that can only be called by the SafetyModule contract

modifier onlySafetyModule();

constructor

StakedToken constructor

constructor(
    IERC20 _underlyingToken,
    ISafetyModule _safetyModule,
    uint256 _cooldownSeconds,
    uint256 _unstakeWindow,
    uint256 _maxStakeAmount,
    string memory _name,
    string memory _symbol
) payable ERC20(_name, _symbol) ERC20Permit(_name);

Parameters

NameTypeDescription

_underlyingToken

IERC20

The underlying token to stake

_safetyModule

ISafetyModule

The SafetyModule contract to use for reward management

_cooldownSeconds

uint256

The number of seconds that users must wait between calling cooldown and redeem

_unstakeWindow

uint256

The number of seconds available to redeem once the cooldown period is fullfilled

_maxStakeAmount

uint256

The maximum amount of staked tokens allowed per user

_name

string

The name of the token

_symbol

string

The symbol of the token

getUnderlyingToken

Returns the underlying ERC20 token

function getUnderlyingToken() external view returns (IERC20);

Returns

NameTypeDescription

<none>

IERC20

Underlying ERC20 token

getCooldownSeconds

Returns the length of the cooldown period

function getCooldownSeconds() external view returns (uint256);

Returns

NameTypeDescription

<none>

uint256

Number of seconds in the cooldown period

getUnstakeWindowSeconds

Returns the length of the unstake window

function getUnstakeWindowSeconds() external view returns (uint256);

Returns

NameTypeDescription

<none>

uint256

Number of seconds in the unstake window

getCooldownStartTime

Returns the start time of the latest cooldown period for a given user

function getCooldownStartTime(address user) external view returns (uint256);

Parameters

NameTypeDescription

user

address

Address of the user

Returns

NameTypeDescription

<none>

uint256

Timestamp when the user's latest cooldown period started

previewStake

Returns the amount of staked tokens one would receive for staking an amount of underlying tokens

function previewStake(uint256 amountToStake) public view returns (uint256);

Parameters

NameTypeDescription

amountToStake

uint256

Amount of underlying tokens to stake

Returns

NameTypeDescription

<none>

uint256

Amount of staked tokens that would be received at the current exchange rate

previewRedeem

Returns the amount of underlying tokens one would receive for redeeming an amount of staked tokens

function previewRedeem(uint256 amountToRedeem) public view returns (uint256);

Parameters

NameTypeDescription

amountToRedeem

uint256

Amount of staked tokens to redeem

Returns

NameTypeDescription

<none>

uint256

Amount of underlying tokens that would be received at the current exchange rate

stake

Stakes tokens from the sender and starts earning rewards

function stake(uint256 amount) external override;

Parameters

NameTypeDescription

amount

uint256

Amount of underlying tokens to stake

stakeOnBehalfOf

Stakes tokens on behalf of the given address, and starts earning rewards

Tokens are transferred from the transaction sender, not from the onBehalfOf address

function stakeOnBehalfOf(address onBehalfOf, uint256 amount) external override;

Parameters

NameTypeDescription

onBehalfOf

address

Address to stake on behalf of

amount

uint256

Amount of underlying tokens to stake

redeem

Redeems staked tokens, and stop earning rewards

function redeem(uint256 amount) external override;

Parameters

NameTypeDescription

amount

uint256

Amount of staked tokens to redeem for underlying tokens

redeemTo

Redeems staked tokens, and stop earning rewards

Staked tokens are redeemed from the sender, and underlying tokens are sent to the to address

function redeemTo(address to, uint256 amount) external override;

Parameters

NameTypeDescription

to

address

Address to redeem to

amount

uint256

Amount of staked tokens to redeem for underlying tokens

cooldown

Activates the cooldown period to unstake

Can't be called if the user is not staking

function cooldown() external override;

slash

Sends underlying tokens to the given address, lowers the exchange rate accordingly, and changes the contract's state to POST_SLASHING, which disables staking, cooldown period and further slashing until the state is returned to RUNNING

Only callable by the SafetyModule contract

function slash(address destination, uint256 amount) external onlySafetyModule returns (uint256);

Parameters

NameTypeDescription

destination

address

Address to send the slashed underlying tokens to

amount

uint256

Amount of staked tokens to slash

Returns

NameTypeDescription

<none>

uint256

Amount of underlying tokens slashed

returnFunds

Transfers underlying tokens from the given address to this contract and increases the exchange rate accordingly

Only callable by the SafetyModule contract

function returnFunds(address from, uint256 amount) external onlySafetyModule;

Parameters

NameTypeDescription

from

address

Address to transfer tokens from

amount

uint256

Amount of underlying tokens to transfer

settleSlashing

Sets isInPostSlashingState to false, which re-enables staking, slashing and cooldown period

Only callable by the SafetyModule contract

function settleSlashing() external onlySafetyModule;

getNextCooldownTimestamp

Calculates a new cooldown timestamp

*Calculation depends on the sender/receiver situation, as follows:

  • If the timestamp of the sender is "better" or the timestamp of the recipient is 0, we take the one of the recipient

  • Weighted average of from/to cooldown timestamps if:

    • The sender doesn't have the cooldown activated (timestamp 0).

    • The sender timestamp is expired

    • The sender has a "worse" timestamp

  • If the receiver's cooldown timestamp expired (too old), the next is 0*

function getNextCooldownTimestamp(
    uint256 fromCooldownTimestamp,
    uint256 amountToReceive,
    address toAddress,
    uint256 toBalance
) public view returns (uint256);

Parameters

NameTypeDescription

fromCooldownTimestamp

uint256

Cooldown timestamp of the sender

amountToReceive

uint256

Amount of staked tokens to receive

toAddress

address

Address of the recipient

toBalance

uint256

Current balance of the receiver

Returns

NameTypeDescription

<none>

uint256

The new cooldown timestamp

paused

Indicates whether staking and transferring are currently paused

Contract is paused if either this contract or the SafetyModule has been paused

function paused() public view override returns (bool);

Returns

NameTypeDescription

<none>

bool

True if paused, false otherwise

setSafetyModule

Changes the SafetyModule contract used for reward management

Only callable by governance

function setSafetyModule(address _newSafetyModule) external onlyRole(GOVERNANCE);

Parameters

NameTypeDescription

_newSafetyModule

address

Address of the new SafetyModule contract

setMaxStakeAmount

Sets the max amount of staked tokens allowed per user

Only callable by governance

function setMaxStakeAmount(uint256 _newMaxStakeAmount) external onlyRole(GOVERNANCE);

Parameters

NameTypeDescription

_newMaxStakeAmount

uint256

New max amount of staked tokens allowed per user

pause

Pauses staking and transferring of staked tokens

Only callable by governance

function pause() external onlyRole(GOVERNANCE);

unpause

Unpauses staking and transferring of staked tokens

Only callable by governance

function unpause() external onlyRole(GOVERNANCE);

_updateExchangeRate

Updates the exchange rate of the staked token, based on the current underlying token balance held by this contract and the total supply of the staked token

function _updateExchangeRate(uint256 totalAssets, uint256 totalShares) internal;

_transfer

Internal ERC20 _transfer of the tokenized staked tokens

Updates the cooldown timestamps if necessary, and updates the staking positions of both users in the SafetyModule, accruing rewards in the process

function _transfer(address from, address to, uint256 amount) internal override whenNotPaused;

Parameters

NameTypeDescription

from

address

Address to transfer from

to

address

Address to transfer to

amount

uint256

Amount to transfer

_stake

function _stake(address from, address to, uint256 amount) internal whenNotPaused;

_redeem

function _redeem(address from, address to, uint256 amount) internal;

Last updated