Testnet: Difference between revisions
Add Testnet-Faucet.com to Testnet Faucets |
Satoshisdojo (talk | contribs) m remove broken or inactive links |
||
Line 21: | Line 21: | ||
==Size== | ==Size== | ||
Testnet receives less transactions than the main block chain and is typically much smaller in size. As of | Testnet receives less transactions than the main block chain and is typically much smaller in size. As of October 2024, the size of the data on disk was 92.26 GB containing data for about 12 years worth of testnet activity. | ||
==External links== | ==External links== | ||
Line 63: | Line 63: | ||
* [https://mempool.space/testnet Bitcoin Testnet on mempool.space] | * [https://mempool.space/testnet Bitcoin Testnet on mempool.space] | ||
* [http://tbtc.bitaps.com/ Bitcoin Testnet Explorer on bitaps.com] | * [http://tbtc.bitaps.com/ Bitcoin Testnet Explorer on bitaps.com] | ||
* [http://testnet.blockchain.info Blockchain.info Testnet Explorer] | * [http://testnet.blockchain.info Blockchain.info Testnet Explorer] | ||
* [https://live.blockcypher.com/btc-testnet/ BlockCypher Testnet Explorer] | * [https://live.blockcypher.com/btc-testnet/ BlockCypher Testnet Explorer] | ||
[[Category:Technical]] | [[Category:Technical]] |
Latest revision as of 17:53, 16 October 2024
The testnet is an alternative Bitcoin block chain to be used for testing. Testnet coins are separate and distinct from actual bitcoins, and are never supposed to have any value. 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-qt
or bitcoind
with the -testnet
flag to use the testnet (or put testnet=1
in the bitcoin.conf
file).
There have been three generations of testnet. Testnet2 was just the first testnet reset with a different genesis block, because people were starting to trade testnet coins for real money. Testnet3 is the current test network. It was introduced with the 0.7 release, introduced a third genesis block, a new rule to avoid the "difficulty was too high, is now too low, and transactions take too long to verify" problem, and contains blocks with edge-case transactions designed to test implementation compatibility. On 21 December 2015, SegNet was deployed to test the Wuille's Segregated Witness proposal.
Differences
- Default Bitcoin network protocol listen port is 18333 (instead of 8333)
- Default RPC connection port is 18332 (instead of 8332)
- Bootstrapping uses different DNS seeds.
- A different value of
ADDRESSVERSION
field ensures no testnet Bitcoin addresses will work on the production network. (0x6F
rather than0x00
) - The protocol message header bytes are
0x0B110907
(instead of0xF9BEB4D9
) - 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. In addition, if no block has been found in 20 minutes, the difficulty automatically resets back to the minimum for a single block, after which it returns to its previous value.
- A new genesis block
- The
IsStandard()
check is disabled so that non-standard transactions can be experimented with.
Genesis Block
Testnet uses a different genesis block to the main network. You can find it here. The testnet was reset with a new genesis block for the 0.7 Bitcoin release.
Size
Testnet receives less transactions than the main block chain and is typically much smaller in size. As of October 2024, the size of the data on disk was 92.26 GB containing data for about 12 years worth of testnet activity.
External links
Wallets
Online testnet wallets to help you test your application.
- CoPay.io wallet supports TestNet accounts
Faucets
Once you're done with your test coins, it is a nice gesture to send them back to the faucets, so they become available to other developers.
- Cryptopump.info Testnet Faucet
- bitaps.com Testnet Faucet + double spend test tool
- UO1 Testnet Faucet
- Mycelium Testnet Wallet for Android with integrated Testnet "faucet" function (Local Trader)
- nkuttler's Bitcoin Testnet Faucet
- Coinfaucet testnet3 faucet
- Testnet-Faucet.com Bitcoin Testnet Faucet
Offline (2023-07-27):
Offline (2018-09-06):
Offline (2016-08-07):
- luis.im Mojocoin Testnet3 Faucet
- BlockCypher Testnet Faucet, also provided as a Testnet faucet API for test automation
Block explorers
- Bitcoin Testnet on mempool.space
- Bitcoin Testnet Explorer on bitaps.com
- Blockchain.info Testnet Explorer
- BlockCypher Testnet Explorer
|