Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

558 transactions (0.18 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,197 000000000000000000022cb30000000000000000000000000000000000000000 0.17 vMB 520 1
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,196 (877,233 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
32,963 32,963 00000000a844a535c35e5df623bff6c63afef3d2d7464a3c0f4d39294e17eb56 0.00 MB 1 0
32,962 32,962 00000000b5db15d639efe0b8fcb767ae0aad2066ca73ba01051638de2e84efdb 0.00 MB 1 0
32,961 32,961 000000007dcb3b0f0054ecc451548b659a6c5b5ad043351aeb4114cfab1d3fe0 0.00 MB 1 0
32,960 32,960 000000009afd773caa8f3dd8c9b184f7bcac3cb4f42a3414f7fab4f8fd2e8690 0.00 MB 1 0
32,959 32,959 00000000c87944ca8df477424e8c6b9b5bf4f28b6c3d84b7f31bbd31588f8779 0.00 MB 1 0
32,958 32,958 00000000679a0c89009055326a4caa02d844dc831be29fc25e0175cd12180d0c 0.00 MB 1 0
32,957 32,957 0000000060b958008429afce70544350dd753e941906b55d3374458bf6c23bd2 0.00 MB 1 0
32,956 32,956 000000007221fe1974f0c45614884ca3ba561944f261dba272c33731886d2933 0.00 MB 1 0
32,955 32,955 00000000688f0ffa53af5d12cf62dfed1b9a35f5a322d34fd6024617610566e3 0.00 MB 1 0
32,954 32,954 0000000031b0d57346bca00c5e9a80593de3f9e2313d371adeab44061b2bcce2 0.00 MB 1 0
32,953 32,953 000000003e12110d6bd5878bb37d8cc7046474e9ca8868da50bc3c02faf511a3 0.00 MB 1 0
32,952 32,952 00000000865fd6ba4165b262b9561ce8f5a522963979a04feac140f76d6f4faa 0.00 MB 1 0
32,951 32,951 000000008e622b03787db1060a4baf8030c0e32018bf815fb6b5cb7b0527cb36 0.00 MB 1 0
32,950 32,950 00000000b0629f7423959731401a10a5e93bacfccd2279c3a7ec9f22776bb769 0.00 MB 1 0
32,949 32,949 00000000705a378058302834d6d554ab08733d0df857c02e1af7a9a4524ecafc 0.00 MB 1 0
32,948 32,948 000000000af273f943e924f59d81bf28b7a949c2267485b3dc3c22a571637e26 0.00 MB 1 0
32,947 32,947 00000000479ff1f8087b110cf871ba0bd29dbefcf31314a84f5ec6bf05ef99b3 0.00 MB 1 0
32,946 32,946 00000000cd19e44a7197897e1cd325032b1b0db11657b0ac25efcabc9caa8ddc 0.00 MB 1 0
32,945 32,945 000000007544443c3fd18be5ceb182d8b69c4e25f72172baf30b556ee71c40a6 0.00 MB 1 0
32,944 32,944 000000001574d1a205ce03770c50bce55aeb234ef70653ed18ecf1db8f1a0dbd 0.00 MB 1 0
32,943 32,943 00000000a1764348dea41de5414216c5b8ba347dfa01b4c976cf72d43e8384a4 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.76 GB

Node Information

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