- IStaking.sol
- Staking.sol
Returns the hash of the manage role. Used in updating the NFTDescriptor for the Staking contract.
function MANAGE_ROLE() external view returns (bytes32);
Returns the maximum staking duration you can commit for, in seconds. (Applies to Reward Multiplier)
function MAX_STAKE_DURATION() external view returns (uint256);
Returns the minimum staking duration you can commit for, in seconds. (Applies to Reward Multiplier)
function MIN_STAKE_DURATION() external view returns (uint256);
Returns the maximum reward multiplier you can receive (in % form). (Applies to Reward Multiplier)
function MAX_REWARD_MULTIPLIER() external view returns (uint256);
Returns the minimum reward multiplier you can receive (in % form). (Applies to Reward Multiplier)
function MIN_STAKE_DURATION() external view returns (uint256);
Returns the steepness of the Reward Curve, and Penalty Curve.
function MIN_STAKE_DURATION() external view returns (uint256);
Returns how many decimals to associate with your Stake balance
function decimals() external pure returns (uint8);
Returns the total supply of all stake tokens created
function totalSupply() external view returns (uint256);
Returns how many rewards (tokens) the staking contract is currently holding onto.
function totalRewards() external view returns (uint256);
Returns the total value of the entire stake pool. Including the modifier of the multiplier.
function totalValue() external view returns (uint256);
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);
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);
Returns the total stake balance of an account.
function balanceOf(address account) external view returns (uint256);
Returns the amount that an account owns of a particular stake
function MIN_STAKE_DURATION() external view returns (uint256);
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);
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);
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);
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
);
Returns the StakeDetails of a stake, given the stakeId.
function detailsOf(uint256 stakeId) external view returns (StakeDetails memory);
Returns the location of the NFTDescriptor contract. Used in generating the metadata for the NFT Stake.
function nftDescriptor() external view returns (address);
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);
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);
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;
Emitted when the NFTDescriptor for the Staking contract has been updated.
event NFTDescriptorUpdated(
address indexed prevValue,
address indexed newValue,
address indexed sender
);
Emitted when a new Stake has been created.
event StakeCreated(
uint256 indexed stakeId,
address indexed forAccount,
uint256 lockDuration,
uint256 stakeDuration,
address sender
);
Emitted when a Stake has been unstaked
event StakeRemoved(
uint256 indexed stakeId,
uint256 amount,
uint256 principal,
uint256 rewards,
uint256 unstakePenalty,
address indexed sender
);
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;
}