├── .env.example ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .prettierignore ├── .solhint.json ├── .solhintignore ├── README.md ├── contracts ├── Staking.sol └── token │ └── StakeToken.sol ├── hardhat.config.ts ├── package.json ├── rm.txt ├── scripts └── deploy.ts ├── test └── staking.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princekevin0x1718/staking-codebase/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | artifacts 3 | cache 4 | coverage 5 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princekevin0x1718/staking-codebase/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princekevin0x1718/staking-codebase/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | hardhat.config.ts 2 | scripts 3 | test 4 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | artifacts 3 | cache 4 | coverage* 5 | gasReporterOutput.json 6 | -------------------------------------------------------------------------------- /.solhint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princekevin0x1718/staking-codebase/HEAD/.solhint.json -------------------------------------------------------------------------------- /.solhintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princekevin0x1718/staking-codebase/HEAD/README.md -------------------------------------------------------------------------------- /contracts/Staking.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princekevin0x1718/staking-codebase/HEAD/contracts/Staking.sol -------------------------------------------------------------------------------- /contracts/token/StakeToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princekevin0x1718/staking-codebase/HEAD/contracts/token/StakeToken.sol -------------------------------------------------------------------------------- /hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princekevin0x1718/staking-codebase/HEAD/hardhat.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princekevin0x1718/staking-codebase/HEAD/package.json -------------------------------------------------------------------------------- /rm.txt: -------------------------------------------------------------------------------- 1 | Wed 07/26/2023 16:39:26.04 2 | -------------------------------------------------------------------------------- /scripts/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princekevin0x1718/staking-codebase/HEAD/scripts/deploy.ts -------------------------------------------------------------------------------- /test/staking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princekevin0x1718/staking-codebase/HEAD/test/staking.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/princekevin0x1718/staking-codebase/HEAD/tsconfig.json --------------------------------------------------------------------------------