🎊 Claim your Reward 🎉
38 | 39 | Claim your crypto working. 40 | 41 |42 | { 43 | link && 44 | Track here {' '} 45 | {`https://kovan.etherscan.io/tx/${link}`} 46 | 47 | } 48 |
90 | 91 |
├── README.md ├── app ├── .gitignore ├── README.md ├── components │ ├── Footer.jsx │ └── Navbar.jsx ├── next.config.js ├── package-lock.json ├── package.json ├── pages │ ├── _app.js │ ├── _document.js │ ├── claimreward.js │ ├── index.js │ └── orgregister.js └── public │ ├── favicon.ico │ ├── github.svg │ ├── icons │ └── 4.jpg │ ├── logo.png │ ├── main.css │ ├── manifest.json │ ├── nprogress.css │ └── robots.txt ├── contracts ├── ChainLinkClient.sol ├── EIP20.sol ├── EIP20Interface.sol └── Gitsource.sol └── server ├── .gitignore ├── app.js ├── config.js ├── dokesend.js ├── package-lock.json └── package.json /README.md: -------------------------------------------------------------------------------- 1 |
45 | GitMony uses Harmony Bridge and Chainlink oracle, to make completely decentralized platform to reward opensource contributors. 46 | This is the issue-based bounty platform for open source projects. 47 |
48 |49 | GitMony is a truly decentralized platform to reward this and uses Chainlink and Harmony to verify the contributions on Github. 50 | The organization will have to register on the smart-contract and its HRC20 coins named (Doke Coin) will be deposited into the contract. 51 | Now a contributor will commit on the organisation’s repo and also prefix his public key to the commit message. 52 |
53 |54 | Then the contributor will have to call the smart contract from his wallet and provide the info of his repo to which he has committed and also the commit hash. 55 | Now chainlink will verify the commit from github and if the wallet address on the commit message and the smart-contract caller’s address match then the HRC20 tokens will be transferred to the sender to reward the contributor. 56 |
57 |