├── .gitignore ├── README.md ├── contracts ├── RandomApe.sol ├── RewardToken.sol └── StakeSystem.sol ├── hardhat.config.js ├── package.json ├── scripts └── sample-script.js ├── test └── stakingTest.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drakenwolf/Nft_Staking_System/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drakenwolf/Nft_Staking_System/HEAD/README.md -------------------------------------------------------------------------------- /contracts/RandomApe.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drakenwolf/Nft_Staking_System/HEAD/contracts/RandomApe.sol -------------------------------------------------------------------------------- /contracts/RewardToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drakenwolf/Nft_Staking_System/HEAD/contracts/RewardToken.sol -------------------------------------------------------------------------------- /contracts/StakeSystem.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drakenwolf/Nft_Staking_System/HEAD/contracts/StakeSystem.sol -------------------------------------------------------------------------------- /hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drakenwolf/Nft_Staking_System/HEAD/hardhat.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drakenwolf/Nft_Staking_System/HEAD/package.json -------------------------------------------------------------------------------- /scripts/sample-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drakenwolf/Nft_Staking_System/HEAD/scripts/sample-script.js -------------------------------------------------------------------------------- /test/stakingTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drakenwolf/Nft_Staking_System/HEAD/test/stakingTest.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Drakenwolf/Nft_Staking_System/HEAD/yarn.lock --------------------------------------------------------------------------------