Explorer IconExplorer

Memory Pool Memory Pool Refreshing

24,838 transactions (7.44 vMB)
  • 1 sats/vbyte = (36 blocks)
  • 2 sats/vbyte = (7 blocks)
  • 4 sats/vbyte = (6 blocks)
  • 5 sats/vbyte = (3 blocks)
  • 6 sats/vbyte = (2 blocks)
Show Random Selection Loading Transactions
Max Size: 44/200 MB

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,217 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 4,560 5
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,216 (899,707 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
9,509 9,509 0000000024825a7f2109431ab025d4e49c0c08f4b904d29b7e5251c779deadd6 0.00 MB 1 0
9,508 9,508 0000000050a320dbfdef05548c50321c8acf5a611feba3d7103771f9638cc397 0.00 MB 1 0
9,507 9,507 00000000332b32f70008b5275e72fc2a2d103b2559da7f0679db424c2d2eb928 0.00 MB 1 0
9,506 9,506 00000000e0aa228fd33ef41299c7451f0c1d331ffb77cfcdf27379fa75bac6ff 0.00 MB 1 0
9,505 9,505 000000003c07449ea96a504f5ea2d61107673fa5e4ed9d7add56ab9b8bbf7cc0 0.00 MB 1 0
9,504 9,504 00000000ded0a3a301999ea452d2618bcfc875556f3516fa01772b9ba3f47c9f 0.00 MB 1 0
9,503 9,503 00000000b9ce11097e53e17a5ba46f8b46d086e1b1df167c8ebfc4df79348a70 0.00 MB 1 0
9,502 9,502 000000004b8c683b747f0a827be10e572eaaf511022bf1b32a0d9819b1b16192 0.00 MB 1 0
9,501 9,501 000000004383fe923306472b416c0c2432523b3f5fbc2ca25def2c7155f9b5bb 0.00 MB 1 0
9,500 9,500 00000000436e6caeb22a9132729282c21b123311ee09b5f79f1f061325f1776c 0.00 MB 1 0
9,499 9,499 00000000a54d999e432694f2a5a94a2af153af7647dc830b913d1745a51184b5 0.00 MB 1 0
9,498 9,498 00000000736261e46c3a1b5693816353226798a02847ba6c755d5f23ef3bf9bf 0.00 MB 1 0
9,497 9,497 00000000369c1224472d510f1f62c6a65fa4927b957b84b60b82a8a22296cb01 0.00 MB 1 0
9,496 9,496 00000000796bb0f3d5bed9f22a473ea57366647ed904a0f212c29d21e29b49b1 0.00 MB 1 0
9,495 9,495 000000001b2e09818f9532fd3cc10ab377057d49ad36fd41c3e8534476c08f60 0.00 MB 1 0
9,494 9,494 00000000f5db965f7137dc1776a87c9846b54c9851f955e69ae0234bfb996496 0.00 MB 1 0
9,493 9,493 00000000b37596a3da4047bd87f87308fcd341f4cde8e6c7e6e1e490b0e9a80b 0.00 MB 1 0
9,492 9,492 00000000aed0c1fc5c31ed59240dbe97b4fcb8e38595216a2e7070b15393da51 0.00 MB 1 0
9,491 9,491 000000007acf21ebcc9a0770ed02d59591aae15c763f6127433eb949bc33f945 0.00 MB 1 0
9,490 9,490 000000006e8846211277fb3fb90194fe295e856c6d5a8a8a6d4862ea45d4ce45 0.00 MB 1 0
9,489 9,489 0000000033c7f027eb308e1dfab32a6a9959a79f224a9a4ee5dcb6389d09f624 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 771.94 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,008.68 GB sent, 107.62 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.