Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

7,291 transactions (3.30 vMB)

Priority:

  • 1 sats/vbyte = (10 blocks)
  • 2 sats/vbyte = (9 blocks)
  • 3 sats/vbyte = (5 blocks)
  • 4 sats/vbyte = (3 blocks)
  • 6 sats/vbyte = (2 blocks)
Show Random Selection Loading Transactions
Max Size: 18/200 MB

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,714 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 3,377 4
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,713 (875,037 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
34,676 34,676 000000003722c735cb2ad315c4b65cd322c1eaefbb035cb484aa5e65aed3f660 0.00 MB 1 0
34,675 34,675 0000000077763edb631d30124a1269a01a0456ffd35a79ba39e219e4b9179538 0.00 MB 1 0
34,674 34,674 00000000883b673f01a79aed58ba6c2cc3010e2d84a4da51c4c01d6ba5787933 0.00 MB 1 0
34,673 34,673 0000000090b856fe4ba092a60b900c874fe9e19196a6c472fa49e03ea17dd235 0.00 MB 1 0
34,672 34,672 0000000035e476330d5d1bb64d65f3678a1c408f9aee97c65430d037d9a98ba9 0.00 MB 1 0
34,671 34,671 00000000752a15f4e2abe0c18f38d417fb87c3b2f782c8b1e71376732fa8a400 0.00 MB 1 0
34,670 34,670 000000003820672c51c51a10ef71136a36f80cc6d8aa08fd7522fa99c65b4439 0.00 MB 1 0
34,669 34,669 000000006d7c3dc157608a8d7f306d0831987a23cfef027f0723ba81f0d7a578 0.00 MB 1 0
34,668 34,668 000000007273aa4c347633c39bfbe6d2d3e6417222d80b9b69133ba5079f3466 0.00 MB 1 0
34,667 34,667 000000001a627d890d23762868f66ace52221380652c1e0c77907b3e33f9fca5 0.00 MB 1 0
34,666 34,666 0000000040e33f8c92dcaa150219825d711f09114bfd1b019d16bafb74b0ad95 0.00 MB 1 0
34,665 34,665 000000004af44f901b2424b617ba77f8d39712c14dd5f577eca6fe2abc0d193d 0.00 MB 1 0
34,664 34,664 00000000a6379799c43ba113e1aa5242b4b23c6f3d0ced494907d7a8c19c58ac 0.00 MB 1 0
34,663 34,663 00000000693a8047d7905bee1e15b208b66bf507f5e802955ab8456e3592f71a 0.00 MB 1 0
34,662 34,662 0000000074a69beab48a1afa5beae091311dbbcfb4f44408fdfd826bb245b806 0.00 MB 1 0
34,661 34,661 000000001c63a04906f7bf0dd32b3300b9664e3eb10c7e17ac452085794d9f2a 0.00 MB 1 0
34,660 34,660 0000000013d89b40fe88788e46b45c9caac9d1cce6122b502d3d03cae780e665 0.00 MB 1 0
34,659 34,659 0000000001c45b9a3ddad6d0b1ba996468424c4dbc8db8f50f5c4a88caa05509 0.00 MB 1 0
34,658 34,658 00000000674f64c4f4abdf9afdbd7f3487374e98c9afbbe1e6651f3c1a9e8f7d 0.00 MB 1 0
34,657 34,657 000000008d265721ba5d1213261b5114779792f93a659d8d1f52ed20f666310d 0.00 MB 1 0
34,656 34,656 000000002ac2117ce11cd34c98eb47e05405d0583fda35024423c3d47e64174a 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 772.88 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,157.48 GB sent, 112.78 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.