Explorer IconExplorer

Memory Pool Memory Pool Refreshing

8,583 transactions (4.88 vMB)

Priority:

  • 1 sats/vbyte = (18 blocks)
  • 2 sats/vbyte = (8 blocks)
  • 3 sats/vbyte = (4 blocks)
  • 4 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,297 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 1,567 3
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,296 (866,421 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
42,875 42,875 0000000012dab8a19cd01f2742fb25ac8653c208b8f77cab851d4ff2eb9364ea 0.00 MB 1 0
42,874 42,874 000000000a2efc2d180b7e02658943e62d1008485bc2720021fff9159de4bd31 0.00 MB 1 0
42,873 42,873 0000000015f2146fec72cf355fe51dea788c710de17e85380a9f17cd0608e35d 0.00 MB 1 0
42,872 42,872 000000003580a7aeb176498c327795ffaa5254f0240b2af353dc099c0160abac 0.00 MB 1 0
42,871 42,871 0000000035c80a9108ca77bce9b6b4b0d93063ee7cc8718b8cf78ce14a2d5b89 0.00 MB 1 0
42,870 42,870 0000000024a7b950ec037853abee03e3ade1f5994aa05a91443a270edd72e6f4 0.00 MB 1 0
42,869 42,869 0000000029394a50b975732e2da76976cff1fb23fc4b9497742349cb3f1b1231 0.00 MB 1 0
42,868 42,868 00000000200bfd39b60b7a7e50ca5cf1b7280a668191238eeb0fdd8661dded38 0.00 MB 1 0
42,867 42,867 000000002d8fc1947cc187ccf771b0a2087bcd3aa25f24b1c528f89564acb278 0.00 MB 1 0
42,866 42,866 000000003597c7cd0699e78ec9ba77b50eb1c8cf69c3c79531e7db5b13a2e4b9 0.00 MB 1 0
42,865 42,865 00000000321030622c57e642d3b1ed27dede118a1c3f62823e32c55e9a81097d 0.00 MB 1 0
42,864 42,864 0000000016bd172a1dbd99d2caa111775ee17b5b40b18cdd2ab9b49ec2253174 0.00 MB 1 0
42,863 42,863 0000000004baf59dbffcd83813d3486283c94ae2081330f3e0e977e81d053acc 0.00 MB 1 0
42,862 42,862 000000001020e5d1ef1cad93cc065a552bfd6c4ce979d8a8471e283b92110cb7 0.00 MB 1 0
42,861 42,861 00000000384e47a97207bef7bff617e0d792a0ebc97e1db28239df584b8e44b5 0.00 MB 1 0
42,860 42,860 0000000022263f3ddaaf3207878117d64df3aa227cdf95066b65d305a0611d65 0.00 MB 1 0
42,859 42,859 000000000dc8bebc893a94b8791fbe1b4cf84442a47a9b5ae6f7f8182b61da43 0.00 MB 1 0
42,858 42,858 0000000005cdfbe812dfbd0769e23f5096de697ec38db9b32c5e1feb74a7134b 0.00 MB 1 0
42,857 42,857 000000001ffc534c00b98054aeabffa499dd9db4b1cae80fca979d16acc3643d 0.00 MB 1 0
42,856 42,856 000000000b94c41fdc2963b5ff236453fb39ef17c85826b300603ff735545ba4 0.00 MB 1 0
42,855 42,855 000000001e7928a8902eb380e81f5e54f2f823ae184c80d639ad9e43ea0fdadc 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 772.09 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,056.73 GB sent, 108.57 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.