Skip to content
CryptoManiac edited this page Jan 29, 2014 · 18 revisions

What’s the major differences between NovaCoin and PPCoin?

Though Novacoin is similar to PPCoin in some things but it's a project with own ideology and independent codebase, that's why it's hard to perform such comparison.

We can say definitely, that:

  • Novacoin uses newer version of bitcoin as the base.
  • NovaCoin has a different emission model (floating reward per coin-year).
  • NovaCoin uses scrypt hashing function for proof-of-work.
  • NovaCoin uses the both proof-of-work and proof-of-stake for chain trust score computation.
  • NovaCoin has separated target limits for proof-of-work and proof-of-stake.
  • NovaCoin has no proof-of-work block signatures.

What could you say about NovaCoin emission model?

It’s quite simple. There are two types of blocks, Proof-of-Work and Proof-of-Stake. Each makes contribution into existent coins volume.

Proof-of-Work

Block reward can be calculated using formula

nBlockReward = 100 / (nMaxTarget / nCurrentTarget) ^ (1/6)

This means, that reward starts from 100 coins and cut in a half every 64x multiply of difficulty.

Proof-of-Stake

Block reward based on CoinAge parameter and Proof-of-Stake difficulty. Interest can be calculated using formula

nRewardCoinYear = 1 / (nMaxPoSTarget / nCurrentPoSTarget) ^ (1/3)

In other words, the interest starts from 100% per year and cut a half every 8x multiply of difficulty.

What’s proof-of-stake?

Proof-of-stake is term referring to the use of currency itself (ownership) to achieve certain goals. In NovaCoin proof-of-stake is used to provide minting and transaction processing on a par with proof-of-work.

The "stake" property in the getinfo output shows the currency amount you currently used to protect the network. This amount is subject to the holding period of 520-block maturity window before you can use it again (it would return to your balance once matured).

How is it energy-efficient when there is still mining?

The energy efficiency we refer to is long-term energy efficiency, as in long term we do not require the use of energy to sustain the network.

Currently proof-of-work remains the most practical way of providing initial minting of a crypto-currency. So we decided to keep it as part of our hybrid design.

Why do you need central checkpointing?

We don't need it, actually. It’s main purpose is provide additional protection for the network during the initial growth period and help ensure a smooth upgrade path if critical vulnerability is found. We are confident that central checkpointing can now be gradually weakened and eventually removed to achieve similar decentralization level of Bitcoin as the Novacoin network matures. Users are able to ignore broadcasted checkpointing by using -cppolicy option, if they wish.

When can I start generating proof-of-stake blocks?

If you have balance then novacoind would automatically try to generate stake for you. If you find a stake the reward is calculated using current proof-of-stake difficulty and coin-years amount consumed. The reward amount is added to your stake amount and is shown together in the "stake" field of getinfo output.

Because stake is withheld from spending for 520 blocks, if you do need to keep your balance around to be spent soon we provided a configuration option "reservebalance" to help you keep your balance from being used by stake. You can add a line "reservebalance=10000" to novacoin.conf and restart your novacoind. This way novacoind would try to keep your balance above 10000 coins when generating stakes.

Can I use encrypted wallet?

Yes. Encrypted wallet is supported but there is some difference from Bitcoin. If you use an encrypted wallet you would have to unlock the wallet in order to mint blocks. For user security we added an option to the walletpassphrase RPC command to mint block only. In this unlocked wallet mode, one cannot send transaction through RPC command thus providing additional security to the wallet if hacker gains access via RPC.

Is there a cap on total money supply like Bitcoin’s 21 million?

There is no hard cap other than a 2 billion coin max put into the code for now. But that should not be interpreted as an approachable cap, as it might never get anywhere close to that. It should not be considered a hard cap either as it may get lifted but that’s likely not needed in a very very long time. Due to the nature of the mint rate design it’s not possible to predict a final limit as it depends heavily on market participation, as well as the influences between proof-of-stake minting and fee destruction (there may not even be a mathematical limit if minting continues to outpace fee destruction). What we do know is that the proof-of-work minting would slow down exponentially according to Moore’s Law (we are aware that Moore’s Law eventually would stop to apply), and proof-of-stake minting introduces 1% annual inflation in the future (but it starts from higher values). So generally speaking it is still a very low future-inflation design comparable to Bitcoin.

How do I generate a vanity address containing some pattern like in a bitcoin vanity address?

(courtesy of dreamwatcher)

vanitygen -X 8 <pattern>

Once the key is generated you can use novacoind importprivkey to import it into your wallet.