├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── brownie-config.yaml ├── contracts ├── ERC20Stakeable.sol └── MyStakeableToken.sol ├── scripts └── deploy.py └── tests └── test.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreitoma8/ERC20-Staking/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreitoma8/ERC20-Staking/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreitoma8/ERC20-Staking/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreitoma8/ERC20-Staking/HEAD/README.md -------------------------------------------------------------------------------- /brownie-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreitoma8/ERC20-Staking/HEAD/brownie-config.yaml -------------------------------------------------------------------------------- /contracts/ERC20Stakeable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreitoma8/ERC20-Staking/HEAD/contracts/ERC20Stakeable.sol -------------------------------------------------------------------------------- /contracts/MyStakeableToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreitoma8/ERC20-Staking/HEAD/contracts/MyStakeableToken.sol -------------------------------------------------------------------------------- /scripts/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreitoma8/ERC20-Staking/HEAD/scripts/deploy.py -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreitoma8/ERC20-Staking/HEAD/tests/test.py --------------------------------------------------------------------------------