Memory Pool Memory Pool Refreshing

28,348 transactions (8.04 vMB)
  • 1 sats/vbyte = (36 blocks)
  • 2 sats/vbyte = (6 blocks)
  • 3 sats/vbyte = (4 blocks)
  • 4 sats/vbyte = (2 blocks)
Show Random Selection Loading Transactions
Max Size: 49/200 MB

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,211 00000000000000000002349e0000000000000000000000000000000000000000 ago 1.00 vMB 2,477 12
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,210 (841,825 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
67,385 67,385 0000000000989b3dec84885d8081e3eae4f34f54baf1bdec761c08547020b35e 0.00 MB 3 0
67,384 67,384 0000000005408ab0ac6086e19772f0215d969cf1e0698b1ba19e347eedae5e8b 0.00 MB 3 0
67,383 67,383 000000000578df2482b90736eca217b49ed680e37cb218dfa8bcbe32eec648df 0.00 MB 1 0
67,382 67,382 000000000479db746f1dc5db598f90dc6eb48230015c2073f445a4238df5f58a 0.00 MB 1 0
67,381 67,381 000000000098855acc5f5806dfc4006fad380b682a8f1710fdd6d0fddbbaa7b3 0.00 MB 2 0
67,380 67,380 0000000001d2bd96ee8b6c8b80fb3c3638074b9f9e1a73e53a6a6bceb321715d 0.00 MB 2 0
67,379 67,379 00000000024cacd6a4b9d0758488f178a1138e7d7e0764acf2e6c3f3568ea12b 0.00 MB 1 0
67,378 67,378 0000000000cbfe41e29aff7649b2fd931d3a5de59518c7477d61f9641d6bdcb7 0.00 MB 1 0
67,377 67,377 00000000009f8aa4f732910e06c9058796ab1140c1a90a11a2b3ca95c86c3310 0.00 MB 4 0
67,376 67,376 000000000110936f2109d27f0250f37f9891a5813ac24661764a3130b3dc8fe3 0.00 MB 12 0
67,375 67,375 0000000000d8bd6396385401ad4116c6035a59c075793c0fc04f28e12cb2878d 0.00 MB 1 0
67,374 67,374 000000000277e4bc6859fbcc9f59769055199efc7edeb4570f18a650984855e2 0.00 MB 4 0
67,373 67,373 0000000002be4373892fce574c924f6b6c3a3bb30988987b4d33486b2c1b9731 0.00 MB 9 0
67,372 67,372 000000000206045aac284e9c5aa3ef4dae3669aa006fe280cfe8eb5ac0c3df00 0.00 MB 1 0
67,371 67,371 000000000118372add1ddefb33b47caead3f953bf0495e444e8bd897bdc9cd4e 0.00 MB 1 0
67,370 67,370 000000000086c1e9ce235612c4ced032a95bdeb8d9517ae71399b3655e368325 0.00 MB 3 0
67,369 67,369 0000000001903b436fcafb2bea2796e956122f07d9bad7abb9f31a5448b2d819 0.00 MB 4 0
67,368 67,368 00000000018b5f23c8baa054f5262e35fbd760336e97e91c44a58398a9529b05 0.00 MB 1 0
67,367 67,367 000000000369f1ce37122869cfaa7f1d7bcbdf5a46cc282173a628e2f5576cf3 0.00 MB 1 0
67,366 67,366 0000000002da06bbc2e55f8b00bc9c90a754cbf128d312f06115ce18ad273f53 0.00 MB 1 0
67,365 67,365 00000000036f5b922c0f16e151b0a1f7ce5da14822d0c464cf151706d20c06bd 0.00 MB 3 0
Previous 10 blocks ↓
Total Size: 771.93 GB

Node Information

  • IP: 162.120.69.182
  • Port: 8333
  • Version: 280000
  • Subversion: /Satoshi:28.0.0/
  • Uptime:
  • Connections: 11 outgoing, 113 incoming
  • Data Transfer: 2,006.06 GB sent, 107.55 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.