npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@unizen-io/unizen-dmas

v1.0.53

Published

Smart contracts of the Dynamic Multi Asset Staking (DMAS) of Unizen.

Downloads

346

Readme

unizen-dmas

Smart contracts of the Dynamic Multi Asset Staking (DMAS) of Unizen.

A modified version of the Synthetix and Curve.fi staking rewards contracts, allowing for multiple rewards tokens.

Overview

The Staking contract in this repository enables distribution of multiple reward tokens for staked users. It is a flattened and modified version of the Curve.fi staking rewards contract.

How it Works

As an example, assume we desire users to stake an ERC20 Token Base Token ($BASE). As a reward for staking their token, we may wish to offer users multiple different tokens. For the sake of this example, we'll assume we have two different amount of governance tokens, Reward Token 1 ($ONE) and Reward Token 2 ($TWO), which we want to release over different schedules.

  • We begin by deploying the Staking contract with a link to $BASE as our staking token.
  • For both token $ONE and $TWO the contract's Owner calls addReward
    • When calling addReward, Owner also specifies the duration of the reward period (in seconds)
  • To begin the reward period, Owner will call notifyRewardAmount, which transfers the specified amount of reward tokens from their address to the contract and begins the reward cycle.
  • Users can stake the $BASE token by calling stake, and will then accrue $ONE and $TWO throughout the duration of the rewards period.
  • Users can claim their rewards at any time by calling getReward.
  • Users can also withdraw their $BASE token at any point by calling withdraw. At this point they can still claim any accumulated unclaimed $ONE and $TWO rewards through the getReward endpoint but will not longer accrue rewards.

Considerations

Keep the following in mind when using the Staking contract:

  • The duration and amounts of $ONE and $TWO may be different, and the contract will support any number of additional tokens you may wish to provide.
  • The Owner may update the duration of the reward schedule by calling setRewardsDuration only after the active reward cycle has completed.
  • While the rewards period is active, the contract will automatically update all reward balances anytime most mutative functions are called (stake, withdraw, , getReward, or notifyRewardAmount)
  • The Owner may call recoverERC20 to transfer reward tokens, but not the staking token. Claiming rewards may fail if this function drains the balance.
  • In order to transfer ERC20 tokens to the contract, you must first call the approve function on the token's contract and authorize Staking to transfer the correct amount.

Configuration of .env file

To see the mnemonic or seed phrase in Metamask, follow this instruction.

The Metamask account (mnemonic in the .env) needs to have enough funds in the network where you want to interact with the smart contracts.

To add test funds:

cp .env.example .env
vi .env # add an account's mnemonic and an Infura API key

Deploying the smart contracts to the Hardhat local network

yarn install
yarn build
yarn hardhat:node

Deploying the membership system smart contracts to the Rinkeby test network

yarn install
yarn build
yarn deploy:rinkeby

Publishing to NPM

npm login
yarn publish --access public

Creating test reward pools

yarn create-reward-pools

Integrating the project into a Dapp (e.g. create-react-app or Next.js)

Installing via npm package:

yarn add @unizen-io/unizen-dmas

Import in a UI component like so:

import { UZStakingV1, UZStakingV1__factory } from "unizen-dmas";