Difference between revisions of "Testnet"

From Bitcoin Wiki
Jump to: navigation, search
(External links: Current testnet difficulty)
m
Line 18: Line 18:
 
==External links==
 
==External links==
 
* [https://sourceforge.net/projects/bitcoin/files/Bitcoin/testnet-in-a-box/ Testnet-In-A-Box self-contained testnet]
 
* [https://sourceforge.net/projects/bitcoin/files/Bitcoin/testnet-in-a-box/ Testnet-In-A-Box self-contained testnet]
* [http://www.bitcoin.org/smf/index.php?topic=363.0 Test Network forum topic]
+
* [https://bitcointalk.org/?topic=4483.0 Test Network forum topic]
 
* [https://freebitcoins.appspot.com/test/ Testnet Faucet]
 
* [https://freebitcoins.appspot.com/test/ Testnet Faucet]
 
* [http://blockexplorer.com/testnet Testnet Block Explorer]
 
* [http://blockexplorer.com/testnet Testnet Block Explorer]

Revision as of 13:50, 23 October 2011

The testnet is an alternative Bitcoin block chain, to be used for testing. This allows application developers or bitcoin testers to experiment, without having to use real bitcoins or worrying about breaking the main bitcoin chain.

Run bitcoin or bitcoind with the -testnet flag to use the testnet (or put testnet=1 in the bitcoin.conf file).

Differences

  • Instead of port 8333 (listen), port 18333 is used.
  • Bootstrapping IRC channel is #bitcoinTEST instead of #bitcoin (both on irc.lfnet.org). The built-in node list is disabled.
  • A different value of ADDRESSVERSION field ensures no testnet BitCoin addresses will work on the production network. (0x6F rather than 0x00)
  • The protocol message header bytes are shifted up (0xFABFB5DA instead of 0xF9BEB4D9)
  • Minimum difficulty of 1.0 on testnet is equal to difficulty of 0.5 on mainnet. This means that the mainnet-equivalent of any testnet difficulty is half the testnet difficulty.
  • A new genesis block

Genesis Block

Testnet uses a different genesis block to the main network. You can find it at http://blockexplorer.com/testnet/b/0 The testnet was reset with a new genesis block for the 0.3.20 bitcoin release.

External links