Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

1,463 transactions (0.47 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,102 000000000000000000022cb30000000000000000000000000000000000000000 0.46 vMB 1,455 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,101 (867,624 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
42,477 42,477 000000004229466b1cd228cadc31cf6c97d776d3b346c327a911c3c70382130a 0.00 MB 1 0
42,476 42,476 00000000048163255b1eca1f1688242fa6a152f4212adbc2f47abaaa2eaf2ed8 0.00 MB 1 0
42,475 42,475 000000002e2108904a0b4435c4aefe263647c166355ac2f0e7ce485d0f4e54d3 0.00 MB 1 0
42,474 42,474 000000001e9f6b3ad8e93e4e30c0efd0c8a60f386f8afa30521ac95d8ddb05d6 0.00 MB 1 0
42,473 42,473 000000001fe8683f377b22120faf7fc1d7a76384ca9c27bdeee00df82dde2213 0.00 MB 1 0
42,472 42,472 000000001aafa1c94ad373bbb0e72bf048de837bab9fece4896a89f878a30150 0.00 MB 1 0
42,471 42,471 000000002adb3254573fd95c973341240ba33657700976cc9eb288f0db0cbed2 0.00 MB 1 0
42,470 42,470 000000001149bedaf07bf2b2a46d7746b4aac6300cbea71a40fc2bcc441d5f81 0.00 MB 1 0
42,469 42,469 00000000198b0255320421fe47efec89c863aef093fc64eb44f20cf5bb61b5d0 0.00 MB 1 0
42,468 42,468 00000000286cfdde350719ae1df95861604357dc36f963624427af30f9017c58 0.00 MB 1 0
42,467 42,467 0000000031e6db1595e13abfd50ad471670d5cfdf6d8a453cee8f5837498c06e 0.00 MB 1 0
42,466 42,466 000000001447ecfe319eef4dd1e58af95f7d04a301ea6fec5d37c939156f9c5e 0.00 MB 1 0
42,465 42,465 00000000224cdd5e14c07f6636942d80d853e40bc099160cac29718d23b8b90f 0.00 MB 1 0
42,464 42,464 000000001b10c4a7adc4fb2baa717f76c3ec13dc051de5bf12f084ce4835b162 0.00 MB 1 0
42,463 42,463 000000002bc1cb4e3648f4cbf50e4fd39394d27c4f54a41cd713b85f618d43ce 0.00 MB 1 0
42,462 42,462 000000003c36e6e3c62c014febc12e7ebcb2afd8699f70db0561183f517e9ec4 0.00 MB 1 0
42,461 42,461 0000000021020c1302fd554b45523919f9341a48fdb32a7b38652752f62dcdca 0.00 MB 1 0
42,460 42,460 000000003ebfbdeb89b0c3f583bbd0a871487caf52d645fea07cfd443c3ee6f1 0.00 MB 1 0
42,459 42,459 000000002d6514ca323f2d9caafa15e42d1841b646f188b204b7a2b60e532c66 0.00 MB 1 0
42,458 42,458 000000000b116d77d5db46336c231b7b2c8b7f94e3c3fe892cddcedb3ce943c5 0.00 MB 1 0
42,457 42,457 0000000028da299c9b77143140c3efef69834c37e0908f332bae3be908a872bc 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.58 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,188.25 GB sent, 116.35 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.