Skip to content

GoodVibesOhmly/ERC721-Staking

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ERC721Staking Smart Contract.

The goal is to create a Smart Contract where users can Stake their ERC721 Tokens and Owner can distribute rewards.

Smart Contract recieved a free exploratory audit by Marco form Paladin Blockchain Security. All audit notes and issues can be found in their raw form over here.

All issues and recommendations were addressed but:INFO: userStakeInfo reverts for users with a zero stake. this is not desirable for UI purposes.

Created using OpenZeppelin's ERC20 and ERC721 Smart Contracts.

This iteration of a Staking Smart Contract for ERC721 is a separate one, so you will need three SC: one for your ERC721 Collection, one for your ERC20 Token and one for the Staking Pool. You will also have to send the ERC20 Token to the Staking Smart Contract so it will be able to pay rewards for your stakers. In the future I will create a ERC20 extension for ERC721 Staking so users will be able to mint ERC20 Tokens directly from the ERC20 SC based on ERC721 Stake. This will also make the developer job easier by only having to manage two Smart Contracts.

Features for users:

  1. Deposit your ERC721 Token/s and claim a fixed amount of ERC20 Tokens calculated hourly.
  2. Withdraw your ERC721 Token/s.
  3. Withdraw rewards.

Features for owner:

  1. Distribute ERC20 Token by ERC721 Tokens Locking(Staking).
  2. Set a fixed hourly reward per ERC721 Token Locked(Staked).

Prerequisites:

Rinkeby deployment
python3 -m pip install --user pipx
python3 -m pipx ensurepath
# restart terminal
pipx install eth-brownie
  • A free Infura Project Id key for Rinkeby Network

Instalation

Clone this repo:

git clone https://github.com/andreitoma8/ERC721-Staking
cd ERC721-Staking

Deploy to Rinkeby

  • Add a .env file with the same contents of .env.example, but replaced with your variables.

  • Run the command:

brownie run scripts/deploy.py --network rinkeby

The script will:

  1. Deploy the ERC20 Reward Token, mint 1.000.000 for yourself and verify the Smart Contract on .rinkeby.etherscan.io.
  2. Deploy the ERC721 NFT Collection, mint 5 Tokens for yourself and verify the Smart Contract on .rinkeby.etherscan.io.
  3. Deploy the ERC721 Staking Smart Contract and verify it on .rinkeby.etherscan.io.
Any feedback is much apreciated!
If this was helpful please consider donating:

0xA4Ad17ef801Fa4bD44b758E5Ae8B2169f59B666F

Happy hacking!

About

Stake ERC721 Tokens to claim ERC20 Tokens

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Solidity 65.6%
  • Python 33.1%
  • Shell 1.3%