Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

1,780 transactions (0.54 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,372 000000000000000000022cb30000000000000000000000000000000000000000 0.54 vMB 1,777 1
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,371 (856,649 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
53,722 53,722 0000000008d4f57dbda03e5cd41a141c1707d13304922032c76d3c4e8fa7673c 0.00 MB 1 0
53,721 53,721 00000000044c0a557b0f95fe777041ab67f9e2d27987c2ac29ec59df0278a58f 0.00 MB 2 0
53,720 53,720 000000000679d967a16adea04b359ff98be76e43b057efe16518eb09c9c6dd11 0.00 MB 3 0
53,719 53,719 000000000597fa32f842e8f8fce1b73c836b86c4f31e2fe86e1e62d13efe35a3 0.00 MB 1 0
53,718 53,718 000000000902abed242e8dd99048576df8024779bbace00181701df785ecf4d6 0.00 MB 1 0
53,717 53,717 000000000352c25fddc86952f220a0b337035b758799e3736bffc21a9180d133 0.00 MB 1 0
53,716 53,716 00000000019ab16d32efe31c2a1bec19051d31dc5f89d6bc6dccc96cf38f47e3 0.00 MB 1 0
53,715 53,715 0000000006416c7fb511cc52e0f1ede015f2c1e76f8b9495b1510a3580d476fa 0.00 MB 1 0
53,714 53,714 00000000112c39d12b9af4a09ef469df8209a6b30e12e9f9b27e7512b3d51cc7 0.00 MB 1 0
53,713 53,713 000000000fc15ab41ea1f3c18501b55ab19d00b77a918fd216032bbd1fa745f0 0.00 MB 1 0
53,712 53,712 0000000000aef9e37dc7b1738f0e6ccb522a732d5b2c57ae01df88ad920a67d3 0.00 MB 1 0
53,711 53,711 000000000d30d79916d655a3ed97c26529e9f2211dab8ba8a1a9b785dbd75c37 0.00 MB 1 0
53,710 53,710 0000000007c553f2aa5d1fd0c58757b27595aa8488eb09ddb5ec2a19e8d82724 0.00 MB 1 0
53,709 53,709 000000000cc1b472c543f6b68b914338af6e37e545f1c8f521fd5d3ee98cc347 0.00 MB 1 0
53,708 53,708 00000000143ebb07c6e2e0370c3327b9b0c4c73f8d79e5225575b5fe06087bad 0.00 MB 1 0
53,707 53,707 00000000046f68832fbcda908947e4022bd52aeb301f52d82f6e9ef9a6ef8879 0.00 MB 1 0
53,706 53,706 0000000012658dfc88bd7fcb2cd5d6f165625a8998567f2ff9a858ae95efe838 0.00 MB 1 0
53,705 53,705 0000000015d3b0f2fb9e6c6170256f4c7b8256f781ef01895ecbf67823646951 0.00 MB 2 0
53,704 53,704 0000000012a4b23e39b84e4a02403dfa8c244b12f2ab2c6f0dc8728864b6b783 0.00 MB 1 0
53,703 53,703 000000000027f054ed6a21626628a799b6d69084c52aed8e5cbb59373a7c7749 0.00 MB 1 0
53,702 53,702 00000000087165e895b6c9b561a100424072ec4865818430d31442c0d90a4fc4 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 774.09 GB

Node Information

  • IP: 162.120.69.182
  • Port: 8333
  • Version: 280000
  • Subversion: /Satoshi:28.0.0/
  • Uptime:
  • Connections: 10 outgoing, 113 incoming
  • Data Transfer: 2,233.37 GB sent, 119.01 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.