Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

20,282 transactions (4.89 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,071 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 2,217 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,070 (870,845 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
39,225 39,225 0000000084ea145a2696bcfbb6acd7d5c16c3c3882a639a7a912224ac586a798 0.00 MB 1 0
39,224 39,224 0000000026011e861a39e36351a1193f279d73f0975cc72ac3c7be3898609cca 0.00 MB 1 0
39,223 39,223 000000006546fcd634c9bef5673bedf7caddd274dfc8af2e6752fb8d0012d21e 0.00 MB 1 0
39,222 39,222 00000000430e10ebb1b6d03df4fafa017896b11c4cafc9fb3c47d5fefab86ded 0.00 MB 1 0
39,221 39,221 0000000030fcbfb1c5d992e449c803852fad45e78b6c2ecfa5111ac433214d4b 0.00 MB 1 0
39,220 39,220 0000000053f8dcf998fd6ef90b2f34b03a25ef2ad73b557d09620f0537ab05c2 0.00 MB 1 0
39,219 39,219 0000000055eb0915c273e814c6dc031ed2ae379a9caf92d75be2036397878b2e 0.00 MB 1 0
39,218 39,218 000000008c609d48137c931a821e56b6b5b7d2f5a4de2513548021284f57bca5 0.00 MB 1 0
39,217 39,217 000000002c0cbaf72a01b007bab38450ba9bda5d7bbb29c92494bf6a3e3d835d 0.00 MB 1 0
39,216 39,216 000000006d7e1cd0095a11da0f7b07fa5d4e32f372806734c686c3c8c8d1460d 0.00 MB 1 0
39,215 39,215 000000008b1d23ffb9a481f4119703652c6a00523454780eb85c6f9f36bdbae3 0.00 MB 1 0
39,214 39,214 0000000080108d5fe2ede0d884e50699563ff6919402a10ce262ada23105d856 0.00 MB 1 0
39,213 39,213 000000006103c28b443af7eb5b9bbdf2868ccc4a66b0ee86c1e2d8a67507abea 0.00 MB 1 0
39,212 39,212 00000000854b9f85f18a1182cbefe9157dd3414d660d495f72c4ccb15ed893fe 0.00 MB 1 0
39,211 39,211 00000000051e2648bfe5f4794aedca08547135ff2882a1d4362aee3f9a31f4bb 0.00 MB 1 0
39,210 39,210 000000006372b440763ac6c3ae92c8dd8e17517ade4f32dfdbd6d1b1afc95634 0.00 MB 1 0
39,209 39,209 000000006292c0aaea9c58a580787f65c337ba29d0c36cab84125273480faf30 0.00 MB 1 0
39,208 39,208 000000007e628d6fd7f7a9e3119e5c7209a00364a5f81e960adb4681da84fc27 0.00 MB 1 0
39,207 39,207 000000008c4db52fb0fcaa63d87451ee4dbd49514ff0a53c295b2485ce8c1bac 0.00 MB 1 0
39,206 39,206 00000000795a10af4d6275078739eb1c9ddac051aefc8042f8b852e194c8ca8c 0.00 MB 1 0
39,205 39,205 000000002325bb492a0097baca16a276549b7110681e5e4efa3b3684785a8146 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.53 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,186.80 GB sent, 116.12 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.