Bitcoin Forum
May 04, 2024, 12:33:17 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 [30] 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 »
  Print  
Author Topic: [ANN]AXIS coin + - Hybrid - X13 - 6M. Android Ticker. MANDATORY WALLET!  (Read 99394 times)
CallMeAXIS (OP)
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
June 08, 2014, 02:54:13 PM
 #581

It's simple.

Code:
6 days of hashing = ~6M
6M + premine = 12M
premine = ?
Grin

I don't understand why dev ignore this question.
I didn't even see the question, I'm sorry. It's Sunday and I'm outside in the garden, with my family.

It's a typo Smiley I'm waiting for Mike to come. When he comes, I'll fix it and update entire ANN.

Got some hot news as well!

As an investor I'd prefer hot news towards the end or at the end of pow, just gonna waste it fattening up the multipools at this point.
I think we're on the same page.
But I have to keep people entertained somehow. Smiley


I'll be back later!
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714825997
Hero Member
*
Offline Offline

Posts: 1714825997

View Profile Personal Message (Offline)

Ignore
1714825997
Reply with quote  #2

1714825997
Report to moderator
1714825997
Hero Member
*
Offline Offline

Posts: 1714825997

View Profile Personal Message (Offline)

Ignore
1714825997
Reply with quote  #2

1714825997
Report to moderator
1714825997
Hero Member
*
Offline Offline

Posts: 1714825997

View Profile Personal Message (Offline)

Ignore
1714825997
Reply with quote  #2

1714825997
Report to moderator
zing96
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250


View Profile
June 08, 2014, 03:06:24 PM
 #582

Here's code:

Premine of 1% (of 12million) and 687.5 block reward:

Code:
int64 GetProofOfWorkReward(int nHeight, int64 nFees, uint256 prevHash)
{
    int64_t nSubsidy = 687.5 * COIN;

    if(nHeight == 1)
nSubsidy = 120000 * COIN;

    else if(nHeight <= 100)
nSubsidy = 1 * COIN;
    
    return nSubsidy + nFees;
}

TOTAL money supply (PoW + PoS)

Code:
static const int64 MAX_MONEY = 36000000 * COIN;			// 36 Million

However, I can't find the missing 6 million coins either.  I don't know how you get 12 million coins in the PoW phase.  Blocks aren't fully mature to stake for 30 days (but they can start in 7 hours):

Code:
unsigned int nStakeMinAge = 60 * 60 * 7 * 1;	// minimum age for coin age:  7h
unsigned int nStakeMaxAge = 60 * 60 * 24 * 30; // stake age of full weight:  30d

687.5 block reward * 1440 blocks per day + 120,000 premine = 6059312.5 after 6 days. (990,000 coins for 5 days, 1st day with premine was 1109312.5 coins)

So...I don't know where 12 million coins in the PoW phase comes in.  In fact, we're about 1/3 of the way through PoW right now (on block 2735 of 8640).  The current money supply is 1,935,099.0.  That's almost 1/3 the total I just calculated (6,059,312.5).

I think the total PoW coins is ~6,000,000.  Thus, the premine was actually 2%.

This is good and bad. Less coins means it's worth more.  However, a 2% premine means we were lied to.

The other option is that I'm just not seeing 6 million coins somewhere.  They aren't in the money supply right now and, at this rate, won't be by the end of PoW.
KeyserSozeMC
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500


I'm dying.


View Profile WWW
June 08, 2014, 03:12:47 PM
 #583

Here's code:

Premine of 1% (of 12million) and 687.5 block reward:

Code:
int64 GetProofOfWorkReward(int nHeight, int64 nFees, uint256 prevHash)
{
    int64_t nSubsidy = 687.5 * COIN;

    if(nHeight == 1)
nSubsidy = 120000 * COIN;

    else if(nHeight <= 100)
nSubsidy = 1 * COIN;
    
    return nSubsidy + nFees;
}

TOTAL money supply (PoW + PoS)

Code:
static const int64 MAX_MONEY = 36000000 * COIN;			// 36 Million

However, I can't find the missing 6 million coins either.  I don't know how you get 12 million coins in the PoW phase.  Blocks aren't fully mature to stake for 30 days (but they can start in 7 hours):

Code:
unsigned int nStakeMinAge = 60 * 60 * 7 * 1;	// minimum age for coin age:  7h
unsigned int nStakeMaxAge = 60 * 60 * 24 * 30; // stake age of full weight:  30d

687.5 block reward * 1440 blocks per day + 120,000 premine = 6059312.5 after 6 days. (990,000 coins for 5 days, 1st day with premine was 1109312.5 coins)

So...I don't know where 12 million coins in the PoW phase comes in.  In fact, we're about 1/3 of the way through PoW right now (on block 2735 of 8640).  The current money supply is 1,935,099.0.  That's almost 1/3 the total I just calculated (6,059,312.5).

I think the total PoW coins is ~6,000,000.  Thus, the premine was actually 2%.
Wouldn't that mean that the price is going to skyrocket? lol

I thought it was 12M total coins from PoW XD

Hey, smexy. Don't waste your time. Time's precious.
Kenta
Sr. Member
****
Offline Offline

Activity: 420
Merit: 250


View Profile
June 08, 2014, 03:15:09 PM
 #584

Are we there yet?

What's the last POW-block # ?

Trade your cryptocoins at: ◣ bleutrade.com ◢◣ C-Cex.com ◢
zing96
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250


View Profile
June 08, 2014, 03:16:44 PM
 #585

Quote
Wouldn't that mean that the price is going to skyrocket? lol

I edited my post.  Potentially.  It's either that, or there are 6 million coins missing.  I would really like it if someone else also reviewed code.
zing96
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250


View Profile
June 08, 2014, 03:17:58 PM
 #586

Are we there yet?

What's the last POW-block # ?

Code:
static const int CUTOFF_POW_BLOCK = 8640;
KeyserSozeMC
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500


I'm dying.


View Profile WWW
June 08, 2014, 03:29:38 PM
 #587

Are we there yet?

What's the last POW-block # ?

Code:
static const int CUTOFF_POW_BLOCK = 8640;
This. Moon.

I really hope there are 6M coins in total

Hey, smexy. Don't waste your time. Time's precious.
javo1966
Newbie
*
Offline Offline

Activity: 20
Merit: 0


View Profile
June 08, 2014, 03:31:53 PM
 #588

how many days of pow? 6 or 12?
Quote
6 days of hashing. "And the 7th day, God rested."

Coins from POW = 11880000
Coins Per day = 990000
Coins Per block = 687.5

687.5x1440blocks=990000
990000x12days=11880000 correct

but 6days = 5940000??



Can someone explain this to me?
SkyValeey
Hero Member
*****
Offline Offline

Activity: 560
Merit: 500


View Profile
June 08, 2014, 03:34:09 PM
 #589

PUMP is on a way. Buy + hodl = profit
KeyserSozeMC
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500


I'm dying.


View Profile WWW
June 08, 2014, 03:34:29 PM
 #590

how many days of pow? 6 or 12?
Quote
6 days of hashing. "And the 7th day, God rested."

Coins from POW = 11880000
Coins Per day = 990000
Coins Per block = 687.5

687.5x1440blocks=990000
990000x12days=11880000 correct

but 6days = 5940000??



Can someone explain this to me?
That callmeMike guy said it's a typo. I guess that's the right number?

Hey, smexy. Don't waste your time. Time's precious.
zing96
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250


View Profile
June 08, 2014, 03:47:02 PM
 #591

If it's (the total coin supply) is a "typo" then 2 things should happen:

1)  The price should go way up...there are now half as many coins as originally thought. 

2)  The premine was 2%.  I don't know how many of us would originally have been on board with a 2% premine of a 6 million total coin.  But, not much we can do about that now.

It would still be great if someone else could review source code (as everyone should really do).  I don't see anything shady, but before investing a bunch more money, it'd be nice to have someone else confirm the total PoW coin supply.  Because that has price implications.  There are now half as many coins as originally thought.  6 million coins put this near CloakCoin level (5,000,000) - which is currently sitting at ~15,000 satoshi.
bitspender
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500



View Profile
June 08, 2014, 03:55:57 PM
 #592

How long does it takes to deposit on poloniex?
It has already 18 confirmations  Angry
KeyserSozeMC
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500


I'm dying.


View Profile WWW
June 08, 2014, 03:59:23 PM
 #593

How long does it takes to deposit on poloniex?
It has already 18 confirmations  Angry
Yeah man, poloniex can be slow as f

Hey, smexy. Don't waste your time. Time's precious.
SkyValeey
Hero Member
*****
Offline Offline

Activity: 560
Merit: 500


View Profile
June 08, 2014, 04:00:12 PM
 #594

Just hodl AXIS.. pump just started.. easy 15k+ in a 2-3-4d
PiOfCube
Full Member
***
Offline Offline

Activity: 122
Merit: 100


View Profile
June 08, 2014, 04:03:43 PM
 #595

Coins rewarded during PoW.

Check the code!

Code:
static const int CUTOFF_POW_BLOCK = 8640;

static const int64 nMinSubsidy = 1 * COIN;
// miner's coin base reward based on nBits
int64 GetProofOfWorkReward(int nHeight, int64 nFees, uint256 prevHash)
{
    int64_t nSubsidy = 687.5 * COIN;

    if(nHeight == 1)
nSubsidy = 120000 * COIN;

    else if(nHeight <= 100)
nSubsidy = 1 * COIN;
   
    return nSubsidy + nFees;
}

So.

Block 1 = 120000 (total)
Blocks 2 to 100 = 99 (total)
Blocks 101 to 8640 (8539 blocks) = 5870562.5 (687.5*8539)

Total coins during PoW (including premine) = 5,990,661.5 coins

Just a quick calculation but that's what the code does.
KeyserSozeMC
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500


I'm dying.


View Profile WWW
June 08, 2014, 04:05:59 PM
 #596

Coins rewarded during PoW.

Check the code!

Code:
static const int CUTOFF_POW_BLOCK = 8640;

static const int64 nMinSubsidy = 1 * COIN;
// miner's coin base reward based on nBits
int64 GetProofOfWorkReward(int nHeight, int64 nFees, uint256 prevHash)
{
    int64_t nSubsidy = 687.5 * COIN;

    if(nHeight == 1)
nSubsidy = 120000 * COIN;

    else if(nHeight <= 100)
nSubsidy = 1 * COIN;
   
    return nSubsidy + nFees;
}

So.

Block 1 = 120000 (total)
Blocks 2 to 100 = 99 (total)
Blocks 101 to 8640 (8539 blocks) = 5870562.5 (687.5*8539)

Total coins during PoW (including premine) = 5,990,661.5 coins

Just a quick calculation but that's what the code does.
Shit man, it's true XD

THIS IS GOING TO THE MOOOOOOOOOOOOOON

Hey, smexy. Don't waste your time. Time's precious.
BitcoinBaBa
Full Member
***
Offline Offline

Activity: 225
Merit: 100



View Profile
June 08, 2014, 04:06:21 PM
 #597

I have a feeling that the dev is going to surprise us with some tricks up his sleeves. Wink
KeyserSozeMC
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500


I'm dying.


View Profile WWW
June 08, 2014, 04:09:38 PM
 #598

I have a feeling that the dev is going to surprise us with some tricks up his sleeves. Wink
Good or bad?

If it's bad, let's start the FUD and get more cheap coins

Hey, smexy. Don't waste your time. Time's precious.
PiOfCube
Full Member
***
Offline Offline

Activity: 122
Merit: 100


View Profile
June 08, 2014, 04:12:14 PM
 #599

I have a feeling that the dev is going to surprise us with some tricks up his sleeves. Wink

I'll be pushing this on a few merchants that accept a range of coins already. I'll give it a few weeks to make sure it's still reliable and nothing bad added in source updates.

And this is coming from someone that has a reputation for calling bad coins.
zing96
Sr. Member
****
Offline Offline

Activity: 266
Merit: 250


View Profile
June 08, 2014, 04:18:14 PM
 #600

Coins rewarded during PoW.

Check the code!

Code:
static const int CUTOFF_POW_BLOCK = 8640;

static const int64 nMinSubsidy = 1 * COIN;
// miner's coin base reward based on nBits
int64 GetProofOfWorkReward(int nHeight, int64 nFees, uint256 prevHash)
{
    int64_t nSubsidy = 687.5 * COIN;

    if(nHeight == 1)
nSubsidy = 120000 * COIN;

    else if(nHeight <= 100)
nSubsidy = 1 * COIN;
   
    return nSubsidy + nFees;
}

So.

Block 1 = 120000 (total)
Blocks 2 to 100 = 99 (total)
Blocks 101 to 8640 (8539 blocks) = 5870562.5 (687.5*8539)

Total coins during PoW (including premine) = 5,990,661.5 coins

Just a quick calculation but that's what the code does.

Thanks for double checking.  I just wanted to make sure there weren't 6 million coins hidden somewhere else.  I mean, how do you have a typo on your total PoW coin supply?  That completely affects the initial price of the coin!  You'd think you would double, triple, and quadruple check that number in the OP.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 [30] 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 »
  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!