├── .env.example ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .prettierignore ├── .solhint.json ├── .solhintignore ├── README.md ├── contracts ├── Staking.sol └── token │ └── StakeToken.sol ├── hardhat.config.ts ├── package.json ├── scripts └── deploy.ts ├── test └── staking.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashleshsortee/dynamic-staking/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | artifacts 3 | cache 4 | coverage 5 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashleshsortee/dynamic-staking/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashleshsortee/dynamic-staking/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/ashleshsortee/dynamic-staking/HEAD/.solhint.json -------------------------------------------------------------------------------- /.solhintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashleshsortee/dynamic-staking/HEAD/README.md -------------------------------------------------------------------------------- /contracts/Staking.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashleshsortee/dynamic-staking/HEAD/contracts/Staking.sol -------------------------------------------------------------------------------- /contracts/token/StakeToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashleshsortee/dynamic-staking/HEAD/contracts/token/StakeToken.sol -------------------------------------------------------------------------------- /hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashleshsortee/dynamic-staking/HEAD/hardhat.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashleshsortee/dynamic-staking/HEAD/package.json -------------------------------------------------------------------------------- /scripts/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashleshsortee/dynamic-staking/HEAD/scripts/deploy.ts -------------------------------------------------------------------------------- /test/staking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashleshsortee/dynamic-staking/HEAD/test/staking.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashleshsortee/dynamic-staking/HEAD/tsconfig.json --------------------------------------------------------------------------------