Explorer IconExplorer

Memory Pool Memory Pool Refreshing

9,228 transactions (3.55 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

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

Blockchain Blockchain Refreshing

Tip: 909,283 (832,041 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
77,242 77,242 000000000049489d5f36bdc4aae87c37e88e2d1a61ef0d5cdb20bd3c25a55ba1 0.00 MB 3 0
77,241 77,241 000000000057179bd0bdb1cac1c9bef112aad0cf345adb115da9449c79d78c25 0.00 MB 1 0
77,240 77,240 00000000001401d5b779c9dfe29ef4ab157f92ffd3d905c8aaeefe53aefa5ab9 0.00 MB 2 0
77,239 77,239 000000000052f4e2bcccb714973f97b9f398789386897cb2eceb740a9ce4f1d9 0.00 MB 2 0
77,238 77,238 00000000005e42341cfc0ed0be039415f704a2f7dbb586e6493cdccb3ebbb520 0.00 MB 1 0
77,237 77,237 00000000000bea4a02e368e40bcb4ff4014a53a9ba9a24080dd70c3e118391d7 0.00 MB 1 0
77,236 77,236 00000000003b22b2537d8fb45581998c74bed90dc7a559b58de97eccaacc0271 0.00 MB 2 3,875
77,235 77,235 000000000036e0d6f53638ec3a8e689b6228a5d6aced6f3cf34febf63dcc1d01 0.00 MB 1 0
77,234 77,234 00000000001bb4abeba0cb2d87959f1af9ed6b1914c4bfb0aac3d3a67a75681f 0.00 MB 3 0
77,233 77,233 00000000000bfd713a722abf95aea225faeb9947fccd3a34faf3a399dcf0090c 0.00 MB 6 607
77,232 77,232 00000000003f09971f8bf02022f7e4decc3e70fd6f143641cf2ab37882f3a335 0.00 MB 1 0
77,231 77,231 00000000001252d8067d2a61f499b673c7d29fc441e580b32a9b414c583120f2 0.00 MB 1 0
77,230 77,230 000000000030b06355227a4b7a12da44d73220eed386d9f4181a468fb899a11d 0.00 MB 1 0
77,229 77,229 0000000000357be81f52a234a722e9fbafb705a37222633f771de1b71eed4aa5 0.00 MB 3 0
77,228 77,228 000000000039b80840c528396dbc7ff0a0a7dacb3992e09e265d095682fd2afb 0.00 MB 5 0
77,227 77,227 00000000001353c0bc0edb1cfa117045e8c30c5175035dab6c5183e7838b3a8a 0.00 MB 4 0
77,226 77,226 00000000001da0f18579085454090a91b4922c53ceb0c85d87ea2643e33d7e43 0.00 MB 1 0
77,225 77,225 000000000015e0f980226cc4c86946af93768a53258012153a333bf494910a97 0.00 MB 4 3,880
77,224 77,224 000000000029d93d0170faf9d774871d6599f1883e94806e343f3909aac4bff6 0.00 MB 3 911
77,223 77,223 00000000004f8bf45f6abb2572c11506a31464f3926ea3d2658f17b5c38be143 0.00 MB 3 0
77,222 77,222 0000000000394e2ba406cfedfbf2de146f6bf8e0e4e375e938ad9b8a5171f55e 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 772.06 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.95 GB sent, 108.39 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.