Bitcoin Forum
July 20, 2024, 11:52:36 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 [2]
21  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE-ANN ]DRegulate -(DREG) Permissionless disobedience NO ICO - POW/MN/POS ZERO on: March 28, 2018, 10:49:43 AM
I was interested in the idea of your project. I will watch.

Didnt get the idea..
Could you explain it?

what don't you understand and how should i explain it
No offence
You said that this is interesting project...
What is so interesting in it? Strange idea... to help people that violated the law, using crypto for that.
Or I dont understand something? I thought you saw something what I missed...

Actually, it is to protect people who didn't break the law and may be persecuted under new regulations that are retroactive and unfair. You see, cryptocurrency is an asset and for some people it's a currency. Some people don't use it as an asset. Some people work/ mine for it and for those people, the new laws are unfair.

Here is more info on the new laws being enacted in the United States.
https://www.investopedia.com/news/how-new-tax-law-impacts-cryptocurrencies-trump/


it's more than this,  we also want to start lobbying the government to help classify crypto correctly and actively engage in the promotion and growth of crypto
22  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE-ANN ]DRegulate -(DREG) Permissionless disobedience NO ICO - POW/MN/POS ZERO on: March 28, 2018, 10:26:48 AM
I was interested in the idea of your project. I will watch.

Didnt get the idea..
Could you explain it?

what don't you understand and how should i explain it
23  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE-ANN ]DRegulate -(DREG) Permissionless disobedience NO ICO - POW/MN/POS ZERO on: March 28, 2018, 10:11:58 AM
discordapp  tell me ?

yes


https://discord.gg/HXJyEeD
24  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE-ANN ]DRegulate -(DREG) Permissionless disobedience NO ICO - POW/MN/POS ZERO on: March 28, 2018, 10:00:08 AM
added bounties
25  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE-ANN ]DRegulate -(DREG) Permissionless disobedience NO ICO - POW/MN/POS ZERO on: March 28, 2018, 09:02:59 AM
if you need translation on russian or ukrainian i reserved!!

please send me a pm with links
26  Alternate cryptocurrencies / Announcements (Altcoins) / //PRE-ANN; DRegulate(DREG)={cryptoActivisim+(POW+MN.POS+ZEROknowledge)}&&!=ICO; on: March 28, 2018, 08:49:00 AM
moved to ANN
27  Alternate cryptocurrencies / Altcoin Discussion / acceptable premines + early adoption through POW on: March 28, 2018, 07:12:07 AM
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 [2]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!