├── .gitignore ├── LICENSE ├── README.md ├── invitation_airdrops └── invitation_airdrops.csv └── kovan_test_round1_and_round2 └── kovan_test_round1_and_round2_airdrops.csv /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 XDeFiLabs 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # xDeFi Bounty Program 2 | 3 | Enable communities to contribute for xDeFi developments forward. 4 | 5 | Allows anyone to get bounties for any development issues, paid out in ERC20 XDEX token. 6 | 7 | The team aims to respond to any submissions as fast as possible. Feel free to [email](mailto:info@xdefi.com) us if you have any questions. 8 | 9 | ## XDEX ERC20 Token 10 | 11 | Token address: `0x000000000000d0151E748d25b766e77efe2A6c83` 12 | 13 | The Web Interface is https://etherscan.io/token/0x000000000000d0151E748d25b766e77efe2A6c83 14 | 15 | ## What you Should Know 16 | 17 | You should taking those: 18 | 19 | - [ ] have experience in Ethereum, HECO or BSC 20 | - [ ] know how to use [git] 21 | 22 | ## Rewards 23 | 24 | - The value of rewards paid out will vary depending on severity which is calculated based on impact. 25 | - Rewards are paid out in ERC20 XDEX token after the submission has been validated, usually a few days later; Please provide your ETH address or other evm-network address. 26 | - We will keep you updated as we work to solve the issues you submitted. 27 | 28 | ## Contracts 29 | 30 | - Website [https://xdefi.com](https://xdefi.com) 31 | - Email [info@xdefi.com](mailto:info@xdefi.com) 32 | - Github [https://github.com/xdefilab](https://github.com/xdefilab) 33 | - Discord [https://discord.gg/SuXhDHbAN3](https://discord.gg/SuXhDHbAN3) 34 | - Medium [https://xdefilab.medium.com](https://xdefilab.medium.com) 35 | - Twitter [https://twitter.com/xdefilab](https://twitter.com/xdefilab) 36 | - TelegramEN [https://t.me/xdefilab](https://t.me/xdefilab) 37 | - TelegramCN [https://t.me/xdeficn](https://t.me/xdeficn) 38 | - Wechat [xdefilab](xdefilab) 39 | 40 | ## License 41 | 42 | All code for this program is licensed [MIT]. 43 | 44 | You may freely reuse any material here under the terms of either or both, at your discretion. 45 | 46 | 47 | 48 | [git]: https://git-scm.com/ 49 | [MIT]: https://opensource.org/licenses/MIT 50 | 51 | --------------------------------------------------------------------------------