Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

2,256 transactions (0.65 vMB)

Priority:

  • 1 sats/vbyte = (5 blocks)
  • 2 sats/vbyte = (3 blocks)
  • 3 sats/vbyte = (2 blocks)
Show Random Selection Loading Transactions
Max Size: 4/200 MB

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,937 000000000000000000022cb30000000000000000000000000000000000000000 ago 0.65 vMB 2,250 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,936 (841,249 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
68,687 68,687 00000000013786e8a04ac178484809eef28682f21f3e3d2c891b2e005d6d1804 0.00 MB 1 0
68,686 68,686 00000000002d1a40b543c589ac0603b7c55676d6e4c06be924dcb66a262e70ab 0.00 MB 1 0
68,685 68,685 00000000014b66e465167877a3a618b420c0b82736c05f24c321eae1c9ea3d6d 0.00 MB 1 0
68,684 68,684 0000000000e7da04fb2a805d419b970729487a14a02e8b877b18b3b5e5c67abc 0.00 MB 2 0
68,683 68,683 0000000001394b3adbc96771eeb79cbcf75ed32104d72c882073b306f79a648c 0.00 MB 1 0
68,682 68,682 00000000014f8294a73c248f61ea76239a44ec0013257e490daf6add40d176c3 0.00 MB 1 0
68,681 68,681 0000000000ad1a98a720f23f36ba9b2a0504b462f2d6c76169b4ec269b01851b 0.00 MB 1 0
68,680 68,680 00000000012aa9189931b8d94a31140b03efc438191e73102bfb850e53191c76 0.00 MB 1 0
68,679 68,679 00000000010b7ff3576b9e123c002bb6c0f24ea96691a556099b405c3cb7f7b3 0.00 MB 2 0
68,678 68,678 00000000005e793b25d2a77c49d41d026b6dbdf154668d3264b9a211ac9407df 0.00 MB 2 0
68,677 68,677 000000000015c0ada3dc68c1fc7df860be91d8a90302bfec956eb7476117691f 0.00 MB 2 0
68,676 68,676 00000000011543ac7c6c0627e47e3bc09bed3e86abe5c8a0ad2bbc18d82f029f 0.00 MB 1 0
68,675 68,675 00000000012279a786f649c7513b34a6258681d7027bde081f6669045b4c4e63 0.00 MB 1 0
68,674 68,674 000000000028c194ccf916f97ed247858306dc0477f5cfb75a6480c8bd7a6a06 0.00 MB 1 0
68,673 68,673 00000000003cb95c85dbf6d035a742117a7d27c1655696b39262548bf47aed83 0.00 MB 1 0
68,672 68,672 0000000001537e1001ce5de95d5595aa5b96372f0cd0063777adaedc2be6664c 0.00 MB 2 0
68,671 68,671 0000000000e2b94d8cd4b687fae1e4c0f66f50a4b48e21dd34bd66415d1bfe76 0.00 MB 1 0
68,670 68,670 00000000003c6402139b00d4b26faa996f7dc169e53197db7b6681df682b9372 0.00 MB 1 0
68,669 68,669 00000000000fce659f0a0d26ceb7df2143a495c566d4b0951dee2d64a42ae874 0.00 MB 1 0
68,668 68,668 0000000001565e812852d2636211a1725d82e71b7183a1a769ffe74051a1cafa 0.00 MB 1 0
68,667 68,667 0000000000e109742936c19b94b51d9a108f44365103788bc02b92d72657fa50 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.28 GB

Node Information

  • IP: 162.120.69.182
  • Port: 8333
  • Version: 280000
  • Subversion: /Satoshi:28.0.0/
  • Uptime:
  • Connections: 10 outgoing, 114 incoming
  • Data Transfer: 2,174.11 GB sent, 114.80 GB received

Notes

  • This page updates every 5 seconds.
  • Use the search bar at the top of the website to search for transactions and blocks.
  • Memory pool size (vMB) is the total size of the raw transaction data (not including metadata).
  • Block size (MB) does not include block header, tx count, or coinbase transaction.
  • Feerates are in sats/vbyte.
  • AFR = Average Feerate

About

This is a basic blockchain explorer for exploring Bitcoin data.

The main features of this explorer are:

  • Basic. The data is laid out to try and represent the structure of raw transactions and blocks.
  • Fast. I've made the pages load as fast as I can. If you can't be pretty, you might as well be fast.

So it's pretty basic, but I think you can learn a lot about how Bitcoin works by browsing the raw data and seeing how it all connects together.

Data

The data on this explorer comes from the following sources:

  1. Bitcoin Core. This is used to get raw transaction and block data. This is retrieved via simple bitcoin-cli commands.
  2. SSDB. I'm using a custom database to store the address balances and spent locations of each output. Bitcoin Core does not store this information, so I'm using a custom script and database to store this extra information.

Privacy

This blockchain explorer does not track anything.

I do not collect IP addresses or keep track of requests. Nor do I use any third-party analytics or tracking software.

However, this blockchain explorer is not open-source, so you have to trust me on this one.

Bitcoin Core Explorer

If you want to explore blockchain data without having to trust anyone with your privacy, the simplest way to do this is to run your own Bitcoin Core node and run bitcoin-cli commands.

The two most useful commands are:

  • bitcoin-cli getrawtransaction <txid>
  • bitcoin-cli getblock <hash>
  • You will need to add txindex=1 to your bitcoin.conf configuration file to be able to query for all transactions.
  • Use bitcoin-cli help to a complete list of commands.
  • Use bitcoin-cli help <command name> to see detailed information about a command and all the available options.

Alternatively, you can also run your own self-hosted explorer such as mempool or btc-rpc-explorer.