Pages:
Author

Topic: [ANN] ][PIVX FORK]REEX: POS 3.0. + MASTERNODE - page 9. (Read 2607 times)

newbie
Activity: 52
Merit: 0
December 19, 2018, 06:11:49 AM
#2
The new face of Reecore is here 🎭

The new website is fluid and has amazing UI 💻
The new website has the following features :
- All about Reecore🚀
- Reecore Vision💪
- Secured REEX Webwallet 🖥
- Mobile wallet 📲
- New detailed Explorer 🔎
- Team profiles🙌
- New Roadmap 🌈
and much more to amaze you.

The team has worked hard on delivering the new website on time.

Check it out and let us know how you feel : https://reecore.org
newbie
Activity: 52
Merit: 0
December 19, 2018, 05:16:15 AM
#1
REEX


ReeX is a peer-to-peer decentralized digital currency for ordinary people, easy to use and acquire. ReeX summarizes the best characteristics of digital currencies, which were issued earlier (Bitcoin, Dash, Pivx), such as: increased security, fast consensus mechanism, and increased decentralization achieved by requiring miners to prove the knowledge of the transaction data.The community has created new coin with faster transaction, more secure, masternode, completely anonymous and low transaction fee.

Masternodes are a second tier to the network making the lightning fast transaction speeds possible.  They also provide the dark send feature keeping your transactions anonymous if you’d like, as they provide an important functionality to the network masternode owners will be rewarded with block rewards (coins) giving them a far ROI higher than your local bank but you don’t have to be a masternode owner to benefit from  this as REEX also stakes in your wallet. Essentially, the more coins you have the more weight you will have on the network and the faster your coins will grow.




Team: (Telegram IDs)

  • @Cryptowaker: Team leader
  • @CryptoExtrem: Social manager
  • @saajan4: Community leader
  • @Wundef: Marketing developer
  • @lanoes: Core developer

REEX features:

  • Segwit protocol applied: fast transaction aprox. 300 tx/s
  • DNS hardcoded
  • Supersecure
  • Consesus by masternode
  • POS 3.0.
  • Fast transactions featuring guaranteed zero confirmation transaction: SwifTX
  • Intregated BIP38, multisignature, blockexplorer, wallet repair and multisend functions in wallet
  • Low transaction fee

REEX Specifications:

  • Type: POS + MASTERNODE
  • [Ticker: REEX
  • Block time: 60 seconds
  • Block size: 3 MB
  • Transaction confirmation: 15 blocks
  • Min Stake: 10 hours
  • Max Supply: 21 Millions
  • Swap Supply: 1 Million
  • Premined amount: 240.000 REEX (0.11% premined aprox)
  • Masternode amount: 15.000 REEX

Rewards System:

POS:
          
Code:
   if (nHeight == 0) { nSubsidy = 0 * COIN;
    } else if (nHeight == 1)                          { nSubsidy = 1200000 * COIN; //premimed
    } else if (nHeight > 1 && nHeight <= 50000)       { nSubsidy = 2 * COIN;
    } else if (nHeight > 50000 && nHeight <= 100000)  { nSubsidy = 3 * COIN;
    } else if (nHeight > 100000 && nHeight <= 150000) { nSubsidy = 4 * COIN;
    } else if (nHeight > 150000 && nHeight <= 200000) { nSubsidy = 5 * COIN;
    } else if (nHeight > 200000 && nHeight <= 250000) { nSubsidy = 6 * COIN;
    } else if (nHeight > 250000 && nHeight <= 300000) { nSubsidy = 7 * COIN;
    } else if (nHeight > 300000 && nHeight <= 350000) { nSubsidy = 8 * COIN;
    } else if (nHeight > 350000 && nHeight <= 400000) { nSubsidy = 9 * COIN;
    } else if (nHeight > 400000 && nHeight <= 450000) { nSubsidy = 10 * COIN;
    } else if (nHeight > 450000 && nHeight <= 500000) { nSubsidy = 11 * COIN;
    } else if (nHeight > 500000 && nHeight <= 550000) { nSubsidy = 12 * COIN;
    } else if (nHeight > 550000 && nHeight <= 600000) { nSubsidy = 11 * COIN;
    } else if (nHeight > 600000 && nHeight <= 650000) { nSubsidy = 10 * COIN;
    } else if (nHeight > 650000 && nHeight <= 700000) { nSubsidy = 9 * COIN;
    } else if (nHeight > 700000 && nHeight <= 750000) { nSubsidy = 8 * COIN;
    } else if (nHeight > 750000 && nHeight <= 800000) { nSubsidy = 7 * COIN;
    } else if (nHeight > 800000 && nHeight <= 850000) { nSubsidy = 6 * COIN;
    } else if (nHeight > 850000 && nHeight <= 900000) { nSubsidy = 5 * COIN;
    } else if (nHeight > 900000 && nHeight <= 950000) { nSubsidy = 4 * COIN;
    } else if (nHeight > 950000) { nSubsidy = 2 * COIN; }

Masternode:

Code:

if (nHeight <= 200)                               { ret = blockValue * 0.10;
    } else if (nHeight > 200 && nHeight <= 50000)     { ret = blockValue * 0.70;
    } else if (nHeight > 50000 && nHeight <= 100000)  { ret = blockValue * 0.71;
    } else if (nHeight > 100000 && nHeight <= 150000) { ret = blockValue * 0.72;
    } else if (nHeight > 150000 && nHeight <= 200000) { ret = blockValue * 0.73;
    } else if (nHeight > 200000 && nHeight <= 250000) { ret = blockValue * 0.74;
    } else if (nHeight > 250000 && nHeight <= 300000) { ret = blockValue * 0.75;
    } else if (nHeight > 300000 && nHeight <= 350000) { ret = blockValue * 0.76;
    } else if (nHeight > 350000 && nHeight <= 400000) { ret = blockValue * 0.77;
    } else if (nHeight > 400000 && nHeight <= 450000) { ret = blockValue * 0.78;
    } else if (nHeight > 450000 && nHeight <= 500000) { ret = blockValue * 0.79;
    } else if (nHeight > 500000 && nHeight <= 550000) { ret = blockValue * 0.80;
    } else if (nHeight > 550000 && nHeight <= 600000) { ret = blockValue * 0.81;
    } else if (nHeight > 600000 && nHeight <= 650000) { ret = blockValue * 0.82;
    } else if (nHeight > 650000 && nHeight <= 700000) { ret = blockValue * 0.83;
    } else if (nHeight > 700000 && nHeight <= 750000) { ret = blockValue * 0.84;
    } else if (nHeight > 750000 && nHeight <= 800000) { ret = blockValue * 0.85;
    } else if (nHeight > 800000 && nHeight <= 850000) { ret = blockValue * 0.86;
    } else if (nHeight > 850000 && nHeight <= 900000) { ret = blockValue * 0.87;
    } else if (nHeight > 900000 && nHeight <= 950000) { ret = blockValue * 0.88;
    } else if (nHeight > 950000) { ret = blockValue * 0.90; }

Resources:


Social Media:


www:

https://reecore.org

Block Explorer:

https[Suspicious link removed]xplorer.reecore.org/
https://reex.ccore.online/

Script to setup masternode:

https://github.com/reecore-coin/Reex-MN

Masternode Hostings :

https://ihostmn.com/hostmn.php?coin=REEX
https://p.millenniumclub.ca/
https://pecuniaplatform.io/
https://mycryptocloud.nl/

Exchanges :

https://crex24.com/exchange/REEX-BTC
https://www.unnamed.exchange/Exchange/Basic?market=REEX_DOGE
http://www.unnamed.exchange/Exchange/Basic?market=REEX_BTC
https://www.unnamed.exchange/Exchange/Basic?market=REEX_LTC
https://fiberchange.com/market/FBC-REEX

Masternode Monitoring/Statistics :

https://mnrank.com/coin/REEX/
https://www.mnroi.info/coin/REEX
https://masternodes.biz/coindetail.php?c=REEX
https://masternodecap.com/coins/REEX
https://ihostmn.com/monitoring.php
https://monitornode.com/

Staking Pool :

https://evonodes.com/pool/REEX

ReeCore Tracker Sites :

https://www.coingecko.com/en/coins/reecore
https://coinpaprika.com/coin/reex-reecore/
https://blockfolio.com/
https://athcoinindex.com/coin/reecore
https://cryptocoinworld.io/reecore-price/
https://cryptopriceranks.com/currencies/reecore/
https://www.worldcoinindex.com/coin/reecore
https://coincodex.com/crypto/reecore/
http://coincost.net/en/currency/reecore
https://coingolive.com/en/coins/reecore/btc/
https://cryptotophost.com/coin/reex/
https://neironix.io/cryptocurrency/reecore
https://blockspot.io/coin/reecore/
Pages:
Jump to: