Explorer IconExplorer

Memory Pool Memory Pool Refreshing

8,970 transactions (4.70 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,277 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 2,123 5
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,276 (830,045 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
79,231 79,231 000000000057c22d89fe2beabe3ff50d8ec8a2e55cd3dc145a9476e2a4827250 0.00 MB 3 0
79,230 79,230 000000000018e762403bb2390043b2fbb6e3c39bbd38f1a5ab70c14fb6e5e193 0.00 MB 1 0
79,229 79,229 000000000049b062c57a4a9b9751267ae56e48d2ab1b2ecd109e05907a8c4da9 0.00 MB 1 0
79,228 79,228 00000000000e90f29038cd074c471cb6479067a1e706fa86f6fa950a923be1ce 0.00 MB 1 0
79,227 79,227 00000000002157d18d045f8f35b98a44b5f53e12f3b8519c7a2d1414a56d9876 0.00 MB 1 0
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
Previous 10 blocks ↓
Total Size: 772.05 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.34 GB sent, 108.31 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.