Bitcoin Forum
April 26, 2024, 03:21:35 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 [2]  All
  Print  
Author Topic: Dagra  (Read 3483 times)
phinx
Newbie
*
Offline Offline

Activity: 23
Merit: 0


View Profile
April 10, 2017, 05:36:39 AM
 #21

int64_t GetBlockValue(int nBits, int nHeight, const CAmount& nFees)
{
    double dDiff = (double)0x0000ffff / (double)(nBits & 0x00ffffff);

    /* fixed bug caused diff to not be correctly calculated */
    if(nHeight > 4500 || Params().NetworkID() != CBaseChainParams::MAIN) dDiff = ConvertBitsToDouble(nBits);

    int64_t nSubsidy = 0;
    if(nHeight >= 5465) {
        if((nHeight >= 17000 && dDiff > 75) || nHeight >= 24000) { // GPU/ASIC difficulty calc
            // 2222222/(((x+2600)/9)^2)
            nSubsidy = (2222222.0 / (pow((dDiff+2600.0)/9.0,2.0)));
            if (nSubsidy > 25) nSubsidy = 25;
            if (nSubsidy < 5) nSubsidy = 5;
        } else { // CPU mining calc
            nSubsidy = (11111.0 / (pow((dDiff+51.0)/6.0,2.0)));
            if (nSubsidy > 500) nSubsidy = 500;
            if (nSubsidy < 25) nSubsidy = 25;
        }
    } else {
        nSubsidy = (1111.0 / (pow((dDiff+1.0),2.0)));
        if (nSubsidy > 500) nSubsidy = 500;
        if (nSubsidy < 1) nSubsidy = 1;
    }

    // LogPrintf("height %u diff %4.2f reward %i \n", nHeight, dDiff, nSubsidy);
    nSubsidy *= COIN;

    if(Params().NetworkID() == CBaseChainParams::TESTNET){
        for(int i = 46200; i <= nHeight; i += 210240) nSubsidy -= nSubsidy/14;
    } else {
        // yearly decline of production by 7.1% per year, projected 21.3M coins max by year 2050.
        for(int i = 210240; i <= nHeight; i += 210240) nSubsidy -= nSubsidy/14;
    }

    // block reward can not be less than one DAGRA
    if(nSubsidy < COIN) nSubsidy = COIN;
   
    /*
        Hard fork will activate on block 34560, reducing the block reward by 10 extra percent (allowing budget super-blocks)
    */
           
    if(Params().NetworkID() == CBaseChainParams::TESTNET){
        if(nHeight > 8064) nSubsidy -= nSubsidy / 10;
    } else {
        if(nHeight > 34560) nSubsidy -= nSubsidy / 10; // 34560 - 10.0% - launch the budget system  60 days after system start
    }
   
    return nSubsidy + nFees;
}

int64_t GetMasternodePayment(int nHeight, int64_t blockValue)
{
    int64_t ret = blockValue/5; // start at 20%

    if(Params().NetworkID() == CBaseChainParams::TESTNET) {
        if(nHeight > 46000)             ret += blockValue / 20; //25% - 2014-10-07
        if(nHeight > 46000+((576*1)*1)) ret += blockValue / 20; //30% - 2014-10-08
        if(nHeight > 46000+((576*1)*2)) ret += blockValue / 20; //35% - 2014-10-09
        if(nHeight > 46000+((576*1)*3)) ret += blockValue / 20; //40% - 2014-10-10
        if(nHeight > 46000+((576*1)*4)) ret += blockValue / 20; //45% - 2014-10-11
        if(nHeight > 46000+((576*1)*5)) ret += blockValue / 20; //50% - 2014-10-12
        if(nHeight > 46000+((576*1)*6)) ret += blockValue / 20; //55% - 2014-10-13
        if(nHeight > 46000+((576*1)*7)) ret += blockValue / 20; //60% - 2014-10-14
    }

    if(nHeight > 158000)               ret += blockValue / 20; // 158000 - 25.0% - 2014-10-24
    if(nHeight > 158000+((576*30)* 1)) ret += blockValue / 20; // 175280 - 30.0% - 2014-11-25
    if(nHeight > 158000+((576*30)* 2)) ret += blockValue / 20; // 192560 - 35.0% - 2014-12-26
    if(nHeight > 158000+((576*30)* 3)) ret += blockValue / 40; // 209840 - 37.5% - 2015-01-26
    if(nHeight > 158000+((576*30)* 4)) ret += blockValue / 40; // 227120 - 40.0% - 2015-02-27
    if(nHeight > 158000+((576*30)* 5)) ret += blockValue / 40; // 244400 - 42.5% - 2015-03-30
    if(nHeight > 158000+((576*30)* 6)) ret += blockValue / 40; // 261680 - 45.0% - 2015-05-01
    if(nHeight > 158000+((576*30)* 7)) ret += blockValue / 40; // 278960 - 47.5% - 2015-06-01
    if(nHeight > 158000+((576*30)* 9)) ret += blockValue / 40; // 313520 - 50.0% - 2015-08-03

    /*
        Hard for will activate on block 348080 separating the two networks (v11 and earier and v12)
        if(nHeight > 158000+((576*30)*11)) ret += blockValue / 40; // 348080 - 52.5% - 2015-10-05
        if(nHeight > 158000+((576*30)*13)) ret += blockValue / 40; // 382640 - 55.0% - 2015-12-07
        if(nHeight > 158000+((576*30)*15)) ret += blockValue / 40; // 417200 - 57.5% - 2016-02-08
        if(nHeight > 158000+((576*30)*17)) ret += blockValue / 40; // 451760 - 60.0% - 2016-04-11
    */

    return ret;
}


i checked the source code,Looks pretty good,i'm in.


Even if you use Bitcoin through Tor, the way transactions are handled by the network makes anonymity difficult to achieve. Do not expect your transactions to be anonymous unless you really know what you're doing.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714144895
Hero Member
*
Offline Offline

Posts: 1714144895

View Profile Personal Message (Offline)

Ignore
1714144895
Reply with quote  #2

1714144895
Report to moderator
1714144895
Hero Member
*
Offline Offline

Posts: 1714144895

View Profile Personal Message (Offline)

Ignore
1714144895
Reply with quote  #2

1714144895
Report to moderator
phinx
Newbie
*
Offline Offline

Activity: 23
Merit: 0


View Profile
April 10, 2017, 06:11:49 AM
 #22

Algo this coin ? and Pool

I think the algo is X11gost
TimeTeller
Hero Member
*****
Offline Offline

Activity: 2716
Merit: 588


View Profile
April 10, 2017, 06:33:27 AM
 #23

Hi, whe are the developers of Dagra Cryptocurensy, our  team are working now for next update of "Dagracore's" desctop wersion with inbuiled miner and trasmit function of the any currencies by neans of post E-mail addresess. In nearest time we will intoduse our own road map and it's very important for us provide social discassion firs top tascs. Considering that our first stage is done now we will launch system of the voting.
About DAO - we represent to the whole World not only the coin but cryptoplatform of decentalized services for entrepreners and and any legal and social antities so we elaborated new approach for creation and promotin (considering providing) any usefull activity in any decentrilised invironment. These days we dispatched a request to ICO trade market. Hope on your maintanents and welfare approach.

Sincerlay yours,
developers of DAO "Dagra"  

Sometimes it's hard for me to give credibility to people with such poor spelling skills.
I can forgive with 2 or 3 instances, but this one... Roll Eyes
Even if you're not a native English speaker, at least do some effort of spell checking your post.
phinx
Newbie
*
Offline Offline

Activity: 23
Merit: 0


View Profile
April 10, 2017, 07:25:32 AM
 #24

Hi, whe are the developers of Dagra Cryptocurensy, our  team are working now for next update of "Dagracore's" desctop wersion with inbuiled miner and trasmit function of the any currencies by neans of post E-mail addresess. In nearest time we will intoduse our own road map and it's very important for us provide social discassion firs top tascs. Considering that our first stage is done now we will launch system of the voting.
About DAO - we represent to the whole World not only the coin but cryptoplatform of decentalized services for entrepreners and and any legal and social antities so we elaborated new approach for creation and promotin (considering providing) any usefull activity in any decentrilised invironment. These days we dispatched a request to ICO trade market. Hope on your maintanents and welfare approach.

Sincerlay yours,
developers of DAO "Dagra"  

Sometimes it's hard for me to give credibility to people with such poor spelling skills.
I can forgive with 2 or 3 instances, but this one... Roll Eyes
Even if you're not a native English speaker, at least do some effort of spell checking your post.

maybe they got a bad teacher, Grin
TimeTeller
Hero Member
*****
Offline Offline

Activity: 2716
Merit: 588


View Profile
April 11, 2017, 02:07:08 PM
Last edit: April 11, 2017, 03:02:52 PM by TimeTeller
 #25

Sometimes it's hard for me to give credibility to people with such poor spelling skills.
I can forgive with 2 or 3 instances, but this one... Roll Eyes
Even if you're not a native English speaker, at least do some effort of spell checking your post.

maybe they got a bad teacher, Grin

A bad teacher as well as a lazy student.
Just kidding...LOL

But hey, we are already in the era where google is your BFF...
I wonder where in the world these people are hiding.
So how can you trust them your hard-earned funds with that kinda team.
Just my opinion though.  Grin
logictense
Hero Member
*****
Offline Offline

Activity: 2146
Merit: 518


View Profile WWW
April 11, 2017, 02:16:34 PM
 #26

Aaaaaa! Darga arrived, great to have u here, dargaorg. Do u have new exciting materials to throw at the table and shut these raging noob twats? Sure u do. I like ur style and the way u talk. Ur approach towards handling stuff is unique, ur thinking abilities are tremendous. If u got into a verbal quarrel with some of the most intelligent pundit in crypto u would easily win, no doubt.

Herbet Fry
Sr. Member
****
Offline Offline

Activity: 812
Merit: 253


●Social Crypto Trading●


View Profile WWW
April 12, 2017, 11:19:28 PM
 #27

I love the past where it says that the coin will reduce by 7% per year that's good. Its like burning the coins basically. Its reverse of pos but does the same thing. Very clever Dev.  Cheesy

phinx
Newbie
*
Offline Offline

Activity: 23
Merit: 0


View Profile
April 13, 2017, 12:15:44 AM
 #28

I love the past where it says that the coin will reduce by 7% per year that's good. Its like burning the coins basically. Its reverse of pos but does the same thing. Very clever Dev.  Cheesy
reducing the block reward by 10 extra percent
this line,right?
Pages: « 1 [2]  All
  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!