Explorer IconExplorer

Memory Pool Memory Pool Refreshing

8,576 transactions (4.52 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: 23/200 MB

Candidate Block Candidate Block Refreshing

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

Blockchain Blockchain Refreshing

Tip: 909,276 (850,643 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
58,633 58,633 000000000037a4ae43dc618cd3356ac4ffb46cb5eeb66039af904b48107d3198 0.00 MB 1 0
58,632 58,632 00000000084fd0a34ea9dffa503ef02d151e4065b19edcfec0f42e4c972d8134 0.00 MB 1 0
58,631 58,631 000000000209d59702139b35ee90f266370c906defff10d283a7204c02de3c36 0.00 MB 1 0
58,630 58,630 000000000e63ddf21f90274edfa9a4ab625c0c44f3ef659a029ab69178fc1b8d 0.00 MB 1 0
58,629 58,629 000000000977069319dbade8076ef36a38e13f174112f1d195a3007c3b32692a 0.00 MB 1 0
58,628 58,628 0000000007da0fe1ab923f6e00b85391cf7af34af9a3cfbc0815346480a191e4 0.00 MB 1 0
58,627 58,627 000000000dd8d251ed3578345661fdf17511125aaecff890d5fa68b6e976cdf0 0.00 MB 1 0
58,626 58,626 0000000009cf3050ac6c20d05c9eb05dd440cb1964420769e820ba552a6d3c9b 0.00 MB 1 0
58,625 58,625 00000000014c698bdef53c6743e91ebee12d2f9e6acd9ec5194ec2a81e11b316 0.00 MB 1 0
58,624 58,624 000000000bcf1e6e679ef441d5296e3d6ed1d39255501109d7cf3fa9d1d06e30 0.00 MB 1 0
58,623 58,623 00000000072b7f1470b2c3d416e85f4557152f82369661dd7f6279545d18405e 0.00 MB 1 0
58,622 58,622 000000000b58147f41e51452677e28cde0ba5c40c1be91feeb712e54279f255e 0.00 MB 1 0
58,621 58,621 000000000627e2dc04a3efbc1223cbbea66ffc2d42a0e8edf874add077caeee4 0.00 MB 1 0
58,620 58,620 00000000007184ccdc2b056f19013fa64bacf25686813fd76062d1086610ef34 0.00 MB 1 0
58,619 58,619 000000000a0882035ab5690b5716ebca9b30a2d7776d1c187d2932e07a01eae2 0.00 MB 1 0
58,618 58,618 000000000f623ee7b0be81bfd6ff776c999c55df73dcf2dbda5723fecc0b67e3 0.00 MB 1 0
58,617 58,617 00000000010ac1c0191be532b8c918a84c30aa7bc24ce8682c76317866b8bdc4 0.00 MB 1 0
58,616 58,616 000000000a352b5d78518095b6aecfd8319fa3c28187e88e72e9cc2d1f1f2f6c 0.00 MB 1 0
58,615 58,615 0000000005794d117d208a6432761747b878178b00fca1317fb8bca82acaa2eb 0.00 MB 1 0
58,614 58,614 0000000009fe609e1662aec21be3ae2a583c103d2eea949cde51934043dcf6a3 0.00 MB 1 0
58,613 58,613 000000000e1788ce4dc8e08c0105823214f41630304b900a21c30dd852e72500 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.33 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.