Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

1,475 transactions (0.52 vMB)

Priority:

  • 1 sats/vbyte = (9 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
909,923 000000000000000000022cb30000000000000000000000000000000000000000 0.52 vMB 1,473 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,922 (823,361 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
86,561 86,561 000000000023dca97cb5db8af55e09c3db18d40c88af49a3a910394e0c3e5634 0.00 MB 2 0
86,560 86,560 00000000001d12fdabab2e2f951675a357f7ca55e66985e96f1f1cbeade610c1 0.00 MB 1 0
86,559 86,559 000000000011c641e5fa0011a685e73f289b46e9c604abfdca88ca3ee002322b 0.00 MB 1 0
86,558 86,558 00000000002add6f173c6dedab7f5bd4e26d78886408367e1b438ba42762b0b8 0.00 MB 3 0
86,557 86,557 0000000000174ed09cdd1c7f6e784a9e8d34f66f9ff4f2bd753c810269d40ef7 0.00 MB 1 0
86,556 86,556 0000000000096520cd9ca6ad72d3b15b7bf0b100ecdffac3235d938adb21b03e 0.00 MB 1 0
86,555 86,555 00000000001735340487531a09812b7a083be05dc8ec80c448df40b8486a2337 0.00 MB 1 0
86,554 86,554 000000000006fb939b07efbe20c7a54683b17618383e34cfc6fe73b044f2e7af 0.00 MB 4 0
86,553 86,553 0000000000287681006f5b6bf532b25baee3e871dc5ac905c7b6c6c79df19ad0 0.00 MB 1 0
86,552 86,552 00000000001a677de750bb0c6a752c76b4eb5c996afc8b9c9856b4bfe9e8b2cb 0.00 MB 1 0
86,551 86,551 000000000010b740ab7079bbbf31a5959592952a153513582e890f05d32a6482 0.00 MB 1 0
86,550 86,550 000000000020d613b92c82608c4e8e57c0e858707cbef541233be4c8fae43a67 0.00 MB 3 0
86,549 86,549 000000000002b4eed48ac74261d4eded64e2fc0f0abff9a950eeb9fec5deb8fb 0.00 MB 7 0
86,548 86,548 00000000002a71ded288296cbc847ec6c914ee25bda92dc4e64fed84403f4a5a 0.00 MB 1 0
86,547 86,547 00000000002780f96cca7e9b31b84b67c3e6f467c77d1761fc9619dcec21c42b 0.00 MB 2 0
86,546 86,546 00000000002ab2b06e4417014617c6b72dde00a44d9e4d5a5f2d6e5a9943b8c0 0.00 MB 3 0
86,545 86,545 00000000002202f52526ae1dee0700b4c55d96ea217a5f67cca77be0bc33523f 0.00 MB 5 0
86,544 86,544 00000000002137cda4d43d22c8e45d4d27e5e84a5d6a9d69766ffe4733dd12d0 0.00 MB 1 0
86,543 86,543 000000000006c78c872ce9aee516e5490ac64054fd432c3d8fd063740eb07b8f 0.00 MB 1 0
86,542 86,542 0000000000101f9e79dfb85b970d1de831b3fe7aef951c0b718ff0d2ae647f09 0.00 MB 1 0
86,541 86,541 000000000002c8599e60c2fdc46da4e5fc9cf22a3ad92425a01435c549838262 0.00 MB 2 0
Previous 10 blocks ↓
Total Size: 773.26 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,173.08 GB sent, 114.67 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.