Explorer IconExplorer

Memory Pool Memory Pool Refreshing

9,238 transactions (3.55 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,284 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 3,884 4
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,283 (830,057 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
79,226 79,226 000000000006ccf1b3fc0bd2d97bb68990bb06cd74fbfb93d64975531b9de719 0.00 MB 1 0
79,225 79,225 0000000000392e8781d8a87d411d333bedce9f49bd7d8f93efcdeb13e308c341 0.00 MB 1 0
79,224 79,224 000000000033fcd5ecbd897815576460a02858ca7f1d4bf2e3c3d13872cea1ce 0.00 MB 1 0
79,223 79,223 00000000001cc9da910dd97c1307807799f22327a7afaacad7e1da3d385ffa55 0.00 MB 1 0
79,222 79,222 00000000004d23051adf84a478127b8245ea33283296f0c92e62aaed01f5267a 0.00 MB 1 0
79,221 79,221 000000000059c7ef87b84eeafc6db167c05483341f16597c4a1d6db006671dea 0.00 MB 2 0
79,220 79,220 0000000000324010b9fb1d45b55113ba8122347d4f388cef0850670f7718fe12 0.00 MB 1 0
79,219 79,219 0000000000499683c442911a91b11fc0310aec027be064ed05996cb426d17eac 0.00 MB 1 0
79,218 79,218 00000000004a2730e8c30b49ef237f778581fc1197ab1510e269fc9316d930a3 0.00 MB 1 0
79,217 79,217 00000000000ea6ee3e6a0d57e23591c790ea065d0d3db002143d5b9db4e2e348 0.00 MB 3 0
79,216 79,216 00000000005bcdd459fa3dc70847fef216196e59e6d2cc456e3c1492b712b198 0.00 MB 3 0
79,215 79,215 0000000000347172b462e728d8eab73b57c44c44b535a5754925407dcfdb50c8 0.00 MB 1 0
79,214 79,214 000000000039eb614178915895948dccee2fa3ccf4d00f0467791942638e27e8 0.00 MB 1 0
79,213 79,213 0000000000022540c32f6dd046626d5f2c9b36926b9a8829abf7bccceed4e926 0.00 MB 2 0
79,212 79,212 00000000000e1b2afb91fd001ac3974c05da930398b04fbb565c30ef6a086ca0 0.00 MB 1 0
79,211 79,211 00000000003c77574c9ce7374a4cbbe09947b9d3ec2079c7ac13b3125dfbcfc3 0.00 MB 1 0
79,210 79,210 00000000002f82160c46d4b49cd93eb9c16d9ee71cdf43d6911b72a6b91a6f03 0.00 MB 1 0
79,209 79,209 00000000002d1ed7d5e1709718f36d654d79b1c356b9bbc3987c9d615814c811 0.00 MB 3 0
79,208 79,208 0000000000366daf5ee9236964f89ada49b6bd9e37a5dda8c767a0da902701d3 0.00 MB 1 0
79,207 79,207 000000000039baf6869fe3aed53a16fbf04d75a93d471e3109c214361d383f83 0.00 MB 1 0
79,206 79,206 000000000034c3f04c8ae1db2828e294a9c4f63a19dee93637a9bb47c8976c4d 0.00 MB 2 0
Previous 10 blocks ↓
Total Size: 772.06 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,046.95 GB sent, 108.39 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.