A decentralized cryptocurrency with Masternodes, Coin Mixing, and PoW/PoS hybrid consensus.
Website
·
Block Explorer
·
Downloads
- Masternodes — Decentralized network nodes secured with 5,000 FAIR collateral
- Coin Mixing — Privacy-focused anonymized transactions
- FastSend — Guaranteed zero-confirmation transactions
- Staking — Earn rewards by holding FAIR in your wallet
- Halving Schedule — Deflationary block rewards that halve every ~2 years
| Ticker | FAIR |
| Algorithm | Quark |
| Consensus | PoW + PoS Hybrid |
| Block Time | 120 seconds |
| Max Supply | 33,000,000 FAIR |
| Premine | 5,000,000 FAIR (block 1) |
| Masternode Collateral | 5,000 FAIR |
| Stake Min Age | 2 hours |
| Address Prefix | F (mainnet) / T (testnet) |
| Phase | Blocks | Reward | Duration |
|---|---|---|---|
| Premine | 1 | 5,000,000 FAIR | Instant |
| PoW Mining | 2 – 10,000 | 10 FAIR | ~14 days |
| PoS Staking | 10,001 – 525,599 | 10 FAIR | ~2 years |
| 1st Halving | 525,600 – 1,051,199 | 5 FAIR | ~2 years |
| 2nd Halving | 1,051,200 – 1,576,799 | 2.5 FAIR | ~2 years |
| 3rd+ Halving | 1,576,800+ | 1.25 FAIR (min) | Permanent |
| Mainnet | Testnet | |
|---|---|---|
| P2P Port | 46372 | 46374 |
| RPC Port | 46373 | 46375 |
git clone https://github.com/FairCoinOfficial/FairCoin.git
cd FairCoin
chmod +x genesis-mine.sh
./genesis-mine.shThis script automatically installs dependencies, mines the genesis blocks, patches the source code, and compiles everything.
After running, generate your cryptographic keys following doc/GENERATE-KEYS.md, then recompile.
# Install dependencies (Ubuntu/Debian)
sudo apt-get install build-essential libtool autotools-dev autoconf pkg-config \
libssl-dev libboost-all-dev libdb4.8-dev libdb4.8++-dev \
libminiupnpc-dev libzmq3-dev
# For Qt GUI (optional)
sudo apt-get install libqt5gui5 libqt5core5a libqt5dbus5 \
qttools5-dev qttools5-dev-tools libprotobuf-dev protobuf-compiler
# Compile
./autogen.sh
./configure
make -j$(nproc)# Start daemon
./src/faircoind -daemon
# Start daemon with mining (PoW phase only)
./src/faircoind -daemon -gen=1
# Check status
./src/faircoin-cli getinfo
# Stop
./src/faircoin-cli stop- Send exactly 5,000 FAIR to a new address in your wallet
- Wait for 15 confirmations
- In Debug Console:
masternode genkey(save the output) - In Debug Console:
masternode outputs(save txid and index) - Edit
~/.faircoin/masternode.conf:mn1 YOUR_IP:46372 YOUR_MASTERNODE_KEY YOUR_TXID OUTPUT_INDEX - Restart wallet and click Start Alias in the Masternodes tab
See Masternode Guide and Windows Guide for detailed instructions.
| Topic | Link |
|---|---|
| Build on Linux | doc/build-unix.md |
| Build on macOS | doc/build-osx.md |
| Build on Windows | doc/README_windows.md |
| Generate Keys | doc/GENERATE-KEYS.md |
| Masternode Config | doc/masternode_conf.md |
| Masternode Multi-Setup | doc/guide-startmany.md |
| Tor Setup | doc/tor.md |
| Developer Notes | doc/developer-notes.md |
| Release Notes | doc/release-notes.md |
FairCoin Core is released under the terms of the MIT license. See COPYING for more information.