Explorer IconExplorer

Memory Pool Memory Pool Refreshing

5,317 transactions (2.47 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,528 3
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,245 (828,394 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
80,851 80,851 000000000038e5bf8fb2405f6d8d14b71cf0b2d27564efb35284419cea417543 0.00 MB 1 0
80,850 80,850 0000000000195873a1a90ec4c56eb9732bd95c40893d4075ba679ca0b3cf1a9c 0.00 MB 1 0
80,849 80,849 000000000042c9d28d9f84e7d9c16eb0c4ed1ced17f9083e72165f2df18325e3 0.00 MB 2 0
80,848 80,848 00000000001825500b49c1e31e6bbcecf15365d76ca7b9c8e09306d907e45190 0.00 MB 3 0
80,847 80,847 00000000003a999f43a028ab97993de0047fcfbb1fa097d5b9b702c8c6b96b6a 0.00 MB 1 0
80,846 80,846 000000000044759277a1ff065d2b3087052265a9b8a69d4554b0af3550361c0b 0.00 MB 2 0
80,845 80,845 000000000031ecc29c5ad5185564e13bba904beb2a7d3390466c149f180453cc 0.00 MB 1 0
80,844 80,844 0000000000045ee5db980c8c514e1ec08192690200d019f633e409e7c6622e71 0.00 MB 5 0
80,843 80,843 000000000027394f09d69c3338759e0a275c948ecb1a6ba2ddd1d73b78cca7fa 0.00 MB 3 0
80,842 80,842 0000000000273897e8930eecf7f3fb757275467d47972368aad7b73b0a8f6621 0.00 MB 2 0
80,841 80,841 00000000000085179c3fdfcbe680428b4e3ddda02fcb1f8e41a032220befb4b0 0.00 MB 2 0
80,840 80,840 0000000000414755cef2f6e5ef75acd95fe236ac596fed09dd95281d6e74a0e3 0.00 MB 1 0
80,839 80,839 00000000000523007c9673330108e8d5b7bd9901bd140b64b7fe16d82d150415 0.00 MB 1 0
80,838 80,838 00000000001fd4f9165c4eb9d9425e2645e178439177f168abe835d83aa4bae1 0.00 MB 4 0
80,837 80,837 00000000000d60fd38a8701bc8a115b4b5c2f8f8ad1229833f58c00d64cbb41c 0.00 MB 4 0
80,836 80,836 0000000000081fddebdbbb9bb7f0f2cd1a2d791bd46ebc6657aca7ea3327c191 0.00 MB 2 0
80,835 80,835 00000000000db56cffbeec1c7b1f5b54c527cec0ca0239dd2726cdcd730afe3e 0.00 MB 3 0
80,834 80,834 00000000000247386405811fd86ad1186c4d96d86dc8d3087b0eeea20cb48bf6 0.00 MB 3 0
80,833 80,833 00000000002f2d99a6a78abad2705a24c9dc2088fb98131b938aab4aab5c0f81 0.00 MB 1 0
80,832 80,832 0000000000022e5578afe2e6a1459ca0d9a8c1e535195aa4d9248687561e711c 0.00 MB 1 0
80,831 80,831 00000000002290da5dbbd583a7bf7014e9dd3788b765a0099f5691afcaf83318 0.00 MB 5 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, 113 incoming
  • Data Transfer: 2,023.50 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.