{"id":19694820,"url":"https://github.com/pawlovskiii/stake-yield-defi-protocol","last_synced_at":"2026-05-13T11:34:21.818Z","repository":{"id":58945744,"uuid":"531250598","full_name":"pawlovskiii/stake-yield-defi-protocol","owner":"pawlovskiii","description":"Application is about reward system protocol within staking certain tokens. It uses ERC20 standards from OpenZeppelin, Oracles from ChainLink, and all different kinds of Mocks. It's well tested, especially within unit and integration tests.","archived":false,"fork":false,"pushed_at":"2022-12-03T00:06:09.000Z","size":67,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-22T11:29:49.719Z","etag":null,"topics":["brownie-eth","modules","python","solidity","type-hints","unit-testing"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pawlovskiii.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-08-31T20:37:15.000Z","updated_at":"2022-09-12T20:54:42.000Z","dependencies_parsed_at":"2023-01-23T08:46:16.963Z","dependency_job_id":null,"html_url":"https://github.com/pawlovskiii/stake-yield-defi-protocol","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pawlovskiii/stake-yield-defi-protocol","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pawlovskiii%2Fstake-yield-defi-protocol","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pawlovskiii%2Fstake-yield-defi-protocol/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pawlovskiii%2Fstake-yield-defi-protocol/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pawlovskiii%2Fstake-yield-defi-protocol/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pawlovskiii","download_url":"https://codeload.github.com/pawlovskiii/stake-yield-defi-protocol/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pawlovskiii%2Fstake-yield-defi-protocol/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32980812,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T11:31:52.688Z","status":"ssl_error","status_checked_at":"2026-05-13T11:31:52.072Z","response_time":115,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["brownie-eth","modules","python","solidity","type-hints","unit-testing"],"created_at":"2024-11-11T19:24:43.098Z","updated_at":"2026-05-13T11:34:21.590Z","avatar_url":"https://github.com/pawlovskiii.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# The Stake-Yield DeFi protocol\n\n## Table of contents\n\n- [General info](#general-info)\n- [Setup](#setup)\n  - [Installing dependencies](#installing-dependencies)\n  - [Recommended commands to use for the project](#recommended-commands-to-use-for-the-project)\n\n## General info\n\nApplication is about reward system protocol within staking certain tokens. It uses ERC20 standards from OpenZeppelin, Oracles from ChainLink, and all different kinds of Mocks. It's well tested, especially within unit and integration tests.\n\n## Setup\n\nThese are the crucial steps to configuring and running the project.\n\n### Installing dependencies\n\nTo clone and run this application, you'll need [Git](https://git-scm.com) and [Node.js](https://nodejs.org/en/download/) (which comes with [npm](http://npmjs.com)) installed on your computer. In this case, Node.js is only needed for installing a prettier-plugin for Solidity. Furthermore, you'll have to download [Python](https://www.python.org/downloads/) 3.6+ version to install all the required packages via pip. From your command line:\n\n```bash\n# Clone this repository\n$ git clone https://github.com/pawlovskiii/stake-yield-defi-protocol\n\n# Go into the repository\n$ cd stake-yield-defi-protocol\n\n# Install dependencies (not required)\n$ npm install\n```\n\nTo download all the necessarily Python packages needed for the project\n\n```bash\n$ pip install -r requirements.txt\n\n$ pip install eth-brownie\n```\n\n### Recommended commands to use for the project\n\n- Every command with **npm** at the beginning has it's a more detailed path script in the script section within **package.json** file.\n\nThe crucial step in order to do any action with the contracts.\n\n```bash\n$ npm run compile\n```\n\n#### Deploying contracts via Ganache Local Chain\n\n```bash\n# Most used command, because takes the lowest amount of time to execute all the transactions\n$ npm run ganache\n```\n\n#### Deploying contracts via various TestNets\n\nUsers can decide which TestNet they prefer. I only want to inform you that Rinkeby will be deprecated soon, but it's way easier to get test ether in it within various faucets than from the Goerli.\n\n```bash\n# Preferably way, because Goerli will be maintained\n$ npm run goerli\n\n# Only if you got trouble with getting test ether within Goerli\n$ npm run rinkeby\n```\n\n#### Brownie testing variations commands\n\n```bash\n# Tests all the functions within every script\n$ npm test\n\n# Tests whole single script\n$ brownie test -k test_staked_amount\n\n# Test single function\n$ brownie test -k test_set_price_feed_contract\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpawlovskiii%2Fstake-yield-defi-protocol","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpawlovskiii%2Fstake-yield-defi-protocol","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpawlovskiii%2Fstake-yield-defi-protocol/lists"}