https://github.com/thalkod/niko_project
Niko is a deflationary token with a staking features built using ethereum smart contract
https://github.com/thalkod/niko_project
blockchain ethereum solidity-contracts
Last synced: about 1 month ago
JSON representation
Niko is a deflationary token with a staking features built using ethereum smart contract
- Host: GitHub
- URL: https://github.com/thalkod/niko_project
- Owner: ThalKod
- Created: 2021-04-03T14:42:59.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-19T18:21:19.000Z (about 4 years ago)
- Last Synced: 2025-02-14T15:49:48.282Z (3 months ago)
- Topics: blockchain, ethereum, solidity-contracts
- Language: Solidity
- Homepage:
- Size: 328 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Niko
A Deflationary token with staking rewards
## About The Project
Niko is a simple deflationary ERC20 token with a staking rewards, made just for fun :).
There's a 5% tax on each transactions, 50% of the tax is to burn NKO permanently and the other 50% is used for staking rewards.With the staking rewards, holders can lockup their NKO token to earns more NKO, the rewards are from the transactions tax.
### Built With
Niko is built with
* [Ethereum - Blockchain](https://ethereum.foundation/)
* [Solidity - Solidity Programming Language](https://soliditylang.org/)
* [Truffle Suite - Tools for Smart Contracts](https://www.trufflesuite.com/)### Prerequisites
* Truffle Suite
```sh
npm install truffle -g
```## Getting Started
This is an example of how you may setup/deploy the smart contracts locally.
### Installation
1. Clone the repo
```sh
git clone https://github.com/ThalKod/niko_project.git
```
2. Install NPM packages
```sh
cd niko_project
yarn install
```
3. Deploy with local testnet
```sh
yarn deploy-test
```
4. Deploy on Ropsten testnet
create a simple env.json with :
```JS
{
"mnemonic": "....",
"Alchemy_API_KEY": "...."
}
```
then deploy with:```sh
yarn deploy-ropsten
```
## LicenseDistributed under the MIT License. See `LICENSE` for more information.