Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

315 transactions (0.09 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
911,276 000000000000000000022b910000000000000000000000000000000000000000 0.09 vMB 314 1
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 911,275 (846,153 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
65,122 65,122 00000000084c6fa55154028ad2c9d5724e4fb939cc8678ba911d8579f83645ae 0.00 MB 1 0
65,121 65,121 000000000a064be33ee49d1e25ddf56ea5f0e7a6b5932b597aaeecc29e5cd3c1 0.00 MB 1 0
65,120 65,120 000000000006e3722bf8b21070285aaabd2505f7324d811234559db52a896c4a 0.00 MB 1 0
65,119 65,119 0000000005d3633075ce7218278cdce6f24ca4e64ea1e2ff802a62f70f0e35f5 0.00 MB 1 0
65,118 65,118 0000000008d835adb0cd733c7fc6dd1fecf234e7aaedb96db755f1e249669c2d 0.00 MB 1 0
65,117 65,117 00000000028f844e3b6e185bc0ae2912ee00ab6b98c00248a7563c3dd8521394 0.00 MB 1 0
65,116 65,116 00000000066b888ed2391e97ad2d8edb00fc0d17c49251e40b139c5bd46f6285 0.00 MB 2 0
65,115 65,115 00000000041258d7f5e5d16270e48b3c430d3b7c2e7735a27ab32d822a8d5c88 0.00 MB 1 0
65,114 65,114 000000000683daf5190546cefbe39a5523a7f9391c801b5fe7c057660b7bcd1a 0.00 MB 1 0
65,113 65,113 00000000003dcbe9412ce22c673b2b0afbf0013809097eba110c976536a41ff6 0.00 MB 2 0
65,112 65,112 0000000006369955af1c3a494bbfa9133daf11012cca145f81e9cb914b3f9512 0.00 MB 1 0
65,111 65,111 00000000094183a53cd1e510af2c284f3ffe23cea5aa17e3338dc8634e3e3482 0.00 MB 1 0
65,110 65,110 000000000072927cfcc39b95e2bed3ebc99cdc447e4f39bdfb1ef6e964c98363 0.00 MB 1 0
65,109 65,109 000000000532a7bf7cd87ce6cb8c2e1b32015b5fcf1361fa8d11893705b31c91 0.00 MB 1 0
65,108 65,108 00000000089c3c115105361f4b901e3b73f8e1f243db477a6fdfdf5c04aff4e4 0.00 MB 1 0
65,107 65,107 0000000008c9057089a3fe1a3df26cc66423c222a993031248034423d7978f89 0.00 MB 2 0
65,106 65,106 00000000017dab6e02a826380e182aa1e8486a9f0a44903c666a7f939b2273fb 0.00 MB 1 0
65,105 65,105 00000000055f0b65fa8fc1e2706f58bf02c9e26937a781ce220319df469bcc43 0.00 MB 2 0
65,104 65,104 0000000007fafc4c3714ebb66bc8bca28177b517426e4b2abd6f1fc7c2a6a0b4 0.00 MB 1 0
65,103 65,103 0000000006b8095b89ad42ca129d8cc362232d8c49229ebdffa66281a10a57b4 0.00 MB 5 0
65,102 65,102 00000000021db6624290e17a4d312c91affdbdca4346800d198b91f714803578 0.00 MB 2 0
Previous 10 blocks ↓
Total Size: 775.75 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,389.48 GB sent, 127.60 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.