Loading Tool

Explorer IconExplorer

Memory Pool

1,006 transactions (0.27 vMB)
  • 1 sats/vbyte = 2 blocks ()
Show Random Selection Loading Transactions
Max Size: 1.63/200 MB

Candidate Block

Height Target Txs Fees Size Avg Feerate AFR
912,500 000000000000000000022b910000000000000000000000000000000000000000 995 0.00657226 BTC 0.26 vMB 1.82
Show Transactions Loading Transactions

Blockchain

Blockchain Refreshing
Tip: 912,499 (689,972 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
222,527 222,527 00000000000003d721680fd2aba454b8dd0c53421e8a716a3ad9c22b4057851e 0.25 MB 702 220
222,526 222,526 00000000000002a9cbb936cfeaa69e4ebd48a64b5bbf600a22cc3fb586e4a410 0.28 MB 650 192
222,525 222,525 00000000000002973410eebf07834174ff49ef56979763c8511cae2e2e76db98 0.04 MB 87 79
222,524 222,524 000000000000022cd37c1acc32ceac8f3b31af7f58e9d71fd15f66fd44a7ed8d 0.25 MB 687 232
222,523 222,523 000000000000019b6e172bdfb638c647c718176e4d6dca58a748b5b26ff3b1cc 0.12 MB 343 251
222,522 222,522 00000000000001767ab269c42cc17dd152ece85129bb7374f03b5e9e2bb3d6e4 0.10 MB 132 36
222,521 222,521 0000000000000265a283b93d9b06f044709e12803ec16511f8257776663920be 0.00 MB 1 0
222,520 222,520 000000000000015688e1708c82263b8cd3a4ed2d968409208b6c12c4b669374e 0.06 MB 127 245
222,519 222,519 0000000000000136d7ca4ab2854683b1e21a568f9109ff677d6718c450cc7581 0.12 MB 266 185
222,518 222,518 00000000000002774d7290b2bd6369b666c5b071b48f3997fa5b8b726410224d 0.00 MB 7 316
222,517 222,517 000000000000039ae58b4278f9b8ec4aed05cea5ee929f105ad08c0f83073dec 0.16 MB 376 232
222,516 222,516 000000000000004d404d1de6060043bd1ab3650194f8e4d283800f168fc584c5 0.18 MB 469 232
222,515 222,515 0000000000000338bdeaaa3adf99ddbef013503f185df058e1121b84fe01b81c 0.03 MB 97 46
222,514 222,514 000000000000048823ee43887e876c797bc04cea652fd07b411c9ff2b520ae40 0.05 MB 87 168
222,513 222,513 00000000000002da7b4e15dc1b418f27a2a2396399f9e575710ba0d03bb4146b 0.01 MB 25 169
222,512 222,512 0000000000000201264143a1bca71fc300d02bf0a3e0d8cd85a407024abd7129 0.11 MB 293 207
222,511 222,511 00000000000003e3ce8191728aaad652bc81ceafb7036e8844cfc4d2e1941381 0.19 MB 438 208
222,510 222,510 0000000000000106cae734ac7e347d132098f4fd9ced09ca0d8fecfcdafbee7f 0.00 MB 7 99
222,509 222,509 0000000000000308cf8ffea70fec5dded328177cfaa669b038d61e46b57b3e68 0.09 MB 209 171
222,508 222,508 00000000000000cb945db8d682840cd8f725e8f92d48222579fd95a1bd56feb5 0.14 MB 351 220
222,507 222,507 00000000000002c7e570c03cce95b078231f65062e0a7532393911ef731a2716 0.23 MB 625 196
Previous 10 blocks ↓
Total Size: 777.96 GB

Node Details:

  • IP: 162.120.69.182
  • Port: 8333
  • Version: 280000
  • Subversion: /Satoshi:28.0.0/
  • Connections:
    • Incoming: 114
    • Outgoing: 10
  • Data Transfer:
    • Sent: 2,559.61 GB
    • Received: 138.06 GB
  • Uptime:

Notes

  • 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.