Skip to content

Latest commit

 

History

History
273 lines (183 loc) · 6.54 KB

staking.md

File metadata and controls

273 lines (183 loc) · 6.54 KB

Staking

Files

  • IStaking.sol
  • Staking.sol

Read Methods

Manage Role

Returns the hash of the manage role. Used in updating the NFTDescriptor for the Staking contract.

function MANAGE_ROLE() external view returns (bytes32);

Max Stake Duration

Returns the maximum staking duration you can commit for, in seconds. (Applies to Reward Multiplier)

function MAX_STAKE_DURATION() external view returns (uint256);

Min Stake Duration

Returns the minimum staking duration you can commit for, in seconds. (Applies to Reward Multiplier)

function MIN_STAKE_DURATION() external view returns (uint256);

Max Reward Multiplier

Returns the maximum reward multiplier you can receive (in % form). (Applies to Reward Multiplier)

function MAX_REWARD_MULTIPLIER() external view returns (uint256);

Min Reward Multiplier

Returns the minimum reward multiplier you can receive (in % form). (Applies to Reward Multiplier)

function MIN_STAKE_DURATION() external view returns (uint256);

Gradient

Returns the steepness of the Reward Curve, and Penalty Curve.

function MIN_STAKE_DURATION() external view returns (uint256);

Decimals

Returns how many decimals to associate with your Stake balance

function decimals() external pure returns (uint8);

Total Supply

Returns the total supply of all stake tokens created

function totalSupply() external view returns (uint256);

Total Rewards

Returns how many rewards (tokens) the staking contract is currently holding onto.

function totalRewards() external view returns (uint256);

Total Value

Returns the total value of the entire stake pool. Including the modifier of the multiplier.

function totalValue() external view returns (uint256);

Total Multiplied

Returns the sum of all the stakes multiplied by their associated multiplier. Used in the calculations of the Staking contract. Read More

function totalMultiplied() external view returns (uint256);

Total Stakes Created

Returns the total number of stakes that have been created to date. Includes stakes that have already been unstaked.

function totalStakesCreated() external view returns (uint256);

Balance Of (Users Total Balance)

Returns the total stake balance of an account.

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

Balance Of (Users Stake Balance)

Returns the amount that an account owns of a particular stake

function MIN_STAKE_DURATION() external view returns (uint256);

Unstake Penalty Of

Returns the % penalty from unstaking a particular stake. Refer to Unstake Penalty for the math. The % Value is in the format of type(uint16).max

function MIN_STAKE_DURATION() external view returns (uint256);

Reward Balance Of (Account)

Returns the total token value of a stake, based on an accounts balance of it

function rewardBalanceOf(address account, uint256 stakeId) external view returns (uint256);

Reward Balance Of (Any)

Returns the total token value of a stake, based on the amount of stake input

function rewardBalanceOf(uint256 stakeId, uint256 amount) external view returns (uint256);

Estimated Unstake Rewards

Returns the principal (initial investment), rewards (rewards from staking), unstake penalty (penalty which is subtracted from the principal and rewards)

function estimateUnstakeRewards(uint256 stakeId, uint256 amount) 
external 
view
returns (
     uint256 principal, 
     uint256 rewards,
     uint256 unstakePenalty
 );

Get Stake

Returns the StakeDetails of a stake, given the stakeId.

function detailsOf(uint256 stakeId) external view returns (StakeDetails memory);

NFT Descriptor

Returns the location of the NFTDescriptor contract. Used in generating the metadata for the NFT Stake.

function nftDescriptor() external view returns (address);

Write Methods

Stake

Creates a stake position, based on the following input. Requires that tokens are sent to the Treasury, prior to being called. (It will Stake how ever many tokens the treasury receives).

  • account - the account receiving the stake
  • stakeDuration - used in calculating the Reward Multiplier for the stake.
  • lockDuration - used to force a minimum stake duration with no benefits to the Reward Multiplier.
function stake(
    address account, 
    uint256 stakeDuration, 
    uint256 lockDuration
) external returns (uint256);

Unstake

Unstakes a certain amount of a particular stake. Returning the Estimated Unstake Rewards back to the sender.

function unstake(uint256 stakeId, uint256 amount) external returns (uint256);

Set NFT Descriptor

Only callable by an account that has the Manage Role. It will update the NFT Descriptor for the Staking contract, which is responsible for generating the NFT Metadata.

function setNFTDescriptor(address newDescriptor) external;

Events

NFT Descriptor Updated

Emitted when the NFTDescriptor for the Staking contract has been updated.

event NFTDescriptorUpdated(
    address indexed prevValue, 
    address indexed newValue, 
    address indexed sender
);

Stake Created

Emitted when a new Stake has been created.

event StakeCreated(
    uint256 indexed stakeId,
    address indexed forAccount,
    uint256 lockDuration,
    uint256 stakeDuration,
    address sender
);

Stake Removed

Emitted when a Stake has been unstaked

event StakeRemoved(
    uint256 indexed stakeId,
    uint256 amount,
    uint256 principal,
    uint256 rewards,
    uint256 unstakePenalty,
    address indexed sender
);

Structs

Stake Details

Contains all of the information about a particular stake.

struct Stake {
    uint32 rewardMultiplier;
    uint112 principal;
    uint112 totalSupply;
    
    uint256 rewardsStart;
    
    uint64 createdAt;
    uint64 expiresAt;
    uint64 stakeDuration;
    uint64 lockDuration;
}