Explorer IconExplorer

Memory Pool Memory Pool Refreshing

4,880 transactions (2.35 vMB)
  • 1 sats/vbyte = (36 blocks)
  • 2 sats/vbyte = (5 blocks)
  • 3 sats/vbyte = (4 blocks)
  • 5 sats/vbyte = (2 blocks)
Show Random Selection Loading Transactions
Max Size: 11/200 MB

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,246 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 2,298 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,245 (856,051 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
53,194 53,194 00000000055048d9ea53fb92f11fc0bf0c053f5b32c6fa82fc057d3ce4f1a35b 0.00 MB 1 0
53,193 53,193 00000000054071cea14d383076ec5a11625e4abe5e6d72489c27cad3a01e33a4 0.00 MB 1 0
53,192 53,192 0000000012a08a451c70b8a75d860e38e7ee084284cf8edfc0f3c4c561d7f7b5 0.00 MB 1 0
53,191 53,191 0000000005de8a134f938fd56fc5b1dd430f62c8eeb140965c0e6e7a1b210928 0.00 MB 1 0
53,190 53,190 000000001014d336f0242395195af95c018f0d7d019a878fe888bfac9946a84f 0.00 MB 1 0
53,189 53,189 000000000a0c0712cd1d28f375d4282f19d9d3c0c69da3148b2f9051a7db3ab0 0.00 MB 1 0
53,188 53,188 000000000804634a208f98ff39ad34d38ea4eba55d1e5d9debf5263759b76e33 0.00 MB 5 0
53,187 53,187 0000000002f4e6d6f59b8ab56529dee7b6a1935c506f132e0d49a62f4b9829ed 0.00 MB 1 0
53,186 53,186 000000000d5c424f8b8b94ba0a4dba5093a7e58a6e5244a9d359fee9375cd1c1 0.00 MB 2 0
53,185 53,185 00000000080f3d8c02f9f2ce9c7736a07150b61b78f0956f7c4c8ff06285faa2 0.00 MB 1 0
53,184 53,184 00000000094869bd94ce166333f871cb2402b883b646a19b2e5f4593901932b1 0.00 MB 1 0
53,183 53,183 0000000006e5de9da32be2ccacbc06e87f30295477a189cec76d05c8092b28e2 0.00 MB 1 0
53,182 53,182 000000000dc2d296f605488c47cbefbf7ca5a719f94ebe92d74b19225a96e92f 0.00 MB 2 0
53,181 53,181 0000000007bb25960b35b98ed0a0fa893117d5aed01e0d691e883222d2c2f446 0.00 MB 1 0
53,180 53,180 0000000004a5d9b3ee82eec1abc3c558504768a06d8889cefa0f9ac5baf510e4 0.00 MB 1 0
53,179 53,179 00000000163fcc38c7a36916e7386630938d9d952d38ea54bc5a3bb6a8ec3289 0.00 MB 2 0
53,178 53,178 000000000621d514aa8550e0fb722be70a53afcf9fb5810daf743c1d8ea281f0 0.00 MB 1 0
53,177 53,177 000000000197cd104bd9e37e0e91bb8f86f54fb9127dccb89ad80aca5a5c7ef5 0.00 MB 1 0
53,176 53,176 000000000d443631df75310637523f3ff332b1c3bcaebfc1b6c246fd98cd2fe3 0.00 MB 2 0
53,175 53,175 0000000005043fad74d9c150940cad417809e6ba66a7091d90b814cb4683f143 0.00 MB 1 0
53,174 53,174 00000000125321504dbfd59646dde61ebfe7612df210b2029fce9415f3209649 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 771.99 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,022.89 GB sent, 107.92 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.