Post
Topic
Board Announcements (Altcoins)
Merits 2 from 1 user
Re: [ANN] YOVI - YobitVirtualCoin - 5% POS [ROM]
by
SamaelDNM
on 02/02/2019, 22:38:13 UTC
⭐ Merited by ZzzzeyeZzzz (2)
YoviCoin is supposed to end up with a maximum of ~22 million coins... now we have ~23 million YoviCoins!
YoviCoin was made only to sell for BTC!

Only the developer can free himself from his guilt by further developing YoviCoin - if he doesn't do it, his life was a meaningless life!

Here is a current bootstrap: blk538536 Jan.27.2019 https://mega.nz/#!UR1FkA4A!kTa4KWdPHjpGwIFROTTnP2XE9rJPcMg6K-Xm4jBrK4E

YoviCoin.conf.

Code:
server=1
rpcuser=changeUserPlease
rpcpassword=changePasswordPlease
rpcallowip=127.0.0.1
port=26372
rpcport=26371
listen=1
addnode=176.195.49.140
addnode=38.242.7.245
addnode=188.230.102.47
addnode=192.52.166.80
addnode=184.164.129.202
addnode=109.87.255.75
addnode=95.222.249.208
addnode=188.124.119.4
addnode=87.145.251.78
addnode=176.9.28.219
addnode=70.92.184.203
addnode=62.162.181.2
addnode=37.1.193.77
addnode=217.118.90.48
addnode=195.254.246.131
addnode=78.46.92.72
The number of circulating coins seems as a mistake or?
I do not see any real use case of this exchange coin. If they distribute YOBIT trading fees to YOVI holders, that will be much better.

Yovi Block Explorer was realized: https://www.blockexperts.com/yovi
Yeah and it confirms that already 23 million YoviCoins are circulating. So how it is possible, when it was stated that only 22 million will exist?


According to your code, the max supply is 30M https://github.com/YobitDev/YoviCoin/blob/master/src/main.h






Est Money Supply: 22.83m

I think this refers to the preminer, not the max supply https://github.com/YobitDev/YoviCoin/blob/master/src/main.cpp  Grin

Code:
// miner's coin base reward
int64_t GetProofOfWorkReward(int64_t nFees)
{
    int64_t nSubsidy = 0 * COIN;
        
    if(pindexBest->nHeight < 10)
        nSubsidy = 2280000 * COIN;
    else if(pindexBest->nHeight == 10)
        nSubsidy = 33333.30 * COIN;          
        
    //if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfWorkReward() : create=%s nSubsidy=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nSubsidy);
    return nSubsidy + nFees;