Bitcoin Forum
July 07, 2024, 08:52:46 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: acceptable premines + early adoption through POW  (Read 77 times)
NotAReelDev (OP)
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
March 28, 2018, 07:12:07 AM
Last edit: March 28, 2018, 08:59:46 AM by NotAReelDev
 #1

im developing a new project and i want to know what people think about premines .  I have always thought that 1- 1.5 % was more than acceptable.  what do other people think about this?  

some questions

what is the most premine you will accept and what number of coins would be acceptable (produced over 15 months through pow).

Do you think that it is fair to launch with pow only and a short warning~ 24 hrs?

what overall percentage of the money supply should be required to own a MasterNode (like 0.1%, 0.05% 0.005%)

is it better to have a larger portion go to early adopters(first miners get b huge potential,) or a more even distro(latecomers get a better chance)?

what is a fair MN/POS split?




i will check this  later




here is my CURRENT

Code:
int64_t GetBlockValue(int nHeight)
{
    int64_t nSubsidy = 0;

    if (nHeight == 0) {
        nSubsidy = 1100000 * COIN;
    } else if (nHeight <5040 && nHeight > 0) {
        nSubsidy = 2000 * COIN;
    } else if (nHeight < 15120 && nHeight >= 5040) {
        nSubsidy = 500 * COIN;
    } else if (nHeight < 15120 && nHeight >= 262980) {
        nSubsidy = 133.7 * COIN;
    } else if (nHeight <= Params().LAST_POW_BLOCK() && nHeight >= 262980) {
        nSubsidy = 25 * COIN;
    } else if (nHeight <= 350000 && nHeight > Params().LAST_POW_BLOCK()) {
        nSubsidy = 10 * COIN;
    } else if (nHeight >= 350000) {
        nSubsidy = 5 * COIN;
    } else {
        nSubsidy = 0 * COIN;
    }
    return nSubsidy;
}

IF YOU CAN THINK OF ANYTHING ELSE ADD IT HERE .
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!