Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

13,326 transactions (5.50 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,700 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 3,734 5
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,699 (854,408 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
55,291 55,291 00000000046dca68c81d26bb5c2df3802720dc3e4d91d47a311d6da0822ccc62 0.00 MB 1 0
55,290 55,290 00000000046f9efa8f7c8b572a6d351dda019a6ce6381e466b15c80b01067133 0.00 MB 2 0
55,289 55,289 0000000000bb34a102c6718ac81d1c1e08cbaf08349807fce6feded4867c08bd 0.00 MB 1 0
55,288 55,288 0000000007ec6482b821eea8f187d1d9094933aa027f2b0c1b6afaf98688a504 0.00 MB 1 0
55,287 55,287 0000000010fe55700e913978d9f871075304e53203a5355627481ba5f50cf2e6 0.00 MB 2 0
55,286 55,286 000000000b3c2c0c2d4267eb80737be7df10aaa1d9cc2c133a919efd6a6eaab6 0.00 MB 1 0
55,285 55,285 000000000276ee06f687d20f96cd8cf8187a85c50b927859e912c4f2c00a6a99 0.00 MB 1 0
55,284 55,284 00000000066d24e41ca2869295353f71f2654d34249d09493b58a446f0144afe 0.00 MB 1 0
55,283 55,283 000000000b98fd5fcb7694764f54ef23cbd779f14a5691cbadf28283b7ce0961 0.00 MB 1 0
55,282 55,282 00000000057e8e09988d80060dfbed605a2e13737f86552f5e63cbe1d59b9ac2 0.00 MB 1 0
55,281 55,281 000000000ffb76ced545b73cfdbb7ab8973a5726c84e178a2cdb7815a6826cb4 0.00 MB 1 0
55,280 55,280 000000000b1b5d7b18a084e789c440ec6123e6b234187f73dfd2ca9cc0e55b2f 0.00 MB 1 0
55,279 55,279 000000000f725dd8a4e57d0069dbee7a25a86c781a84f79400b52a96073b7a92 0.00 MB 1 0
55,278 55,278 00000000037dd3abad7110073785558d329091b12d73275ce658b299599d9d37 0.00 MB 1 0
55,277 55,277 0000000010a4ddbb7a90cff79698270176149025c6e6bb463308d04e024ced43 0.00 MB 2 0
55,276 55,276 00000000115970dc9a46874cddba8fb3a54a9247aefc908e1f6f5371e9a0e934 0.00 MB 5 0
55,275 55,275 000000000e79a6280ce8d2a19fc1ef2a5c3d672e8863c23b9db68ee384e60d33 0.00 MB 1 0
55,274 55,274 000000000732c845020abbea4e5cfbf9fadf81531a457462455d703a53299b27 0.00 MB 1 0
55,273 55,273 00000000065e9422620370181cf7e7d7e99ef3ffdbc6a55c2dcb0978868ee1a5 0.00 MB 1 0
55,272 55,272 0000000007ae773505e4f5956b92b89bdd321d8794247ce4bd69998e4e051570 0.00 MB 1 0
55,271 55,271 000000000c15fc2e7349573786a28fb3d7be7cd66ad9a58abce471e7c3125ae3 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 772.85 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,156.16 GB sent, 112.65 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.