Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

500 transactions (0.15 vMB)

Priority:

  • 1 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,733 000000000000000000022b910000000000000000000000000000000000000000 0.15 vMB 498 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 911,732 (730,596 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
181,136 181,136 000000000000079f94e6ee86c9167f3ff30d3c39d89975eceaeacfc0f6f1a929 0.07 MB 166 119
181,135 181,135 000000000000062da1d2ce621e05465dca744ccbe7a0029bf12ad52256ec379e 0.06 MB 111 131
181,134 181,134 00000000000000931ed79cb812b39e106c1027d6eec9e951e4dfa44cd5b66994 0.13 MB 212 95
181,133 181,133 0000000000000888d7f69e0cb9e4e68ab54d53de82af5fccf5be04f965a0f237 0.23 MB 390 113
181,132 181,132 000000000000072d39c55653682aa305d292a8248a962cbe7b8137e9f8de70ab 0.05 MB 141 106
181,131 181,131 00000000000007b1f0d860f5bfd9cfe36c7de1c1f1459f63e9f6968d85f4aba1 0.00 MB 10 55
181,130 181,130 00000000000002e7c478bb50b81f10817a0a635e20c397b13faf5cb69c2958d5 0.11 MB 271 124
181,129 181,129 0000000000000239d77a68b4fd520e6487782722ac573b8e3403eac01caab5ec 0.04 MB 95 116
181,128 181,128 00000000000002abf82b675a926e16a71f167717afca152398ddbe636d1ac69d 0.01 MB 20 103
181,127 181,127 0000000000000034a9afcb1df2e2a9c3cb725a0151dd17339098d438fb797de8 0.01 MB 24 94
181,126 181,126 000000000000053b784567e6dd25a72114259858c7bc0e43e3b23b4a1ff34d2e 0.06 MB 99 94
181,125 181,125 00000000000006ed10933d2e92e6c9ef2ae8dbeeec4bdf551e33327b09cdb725 0.19 MB 397 137
181,124 181,124 000000000000002c92b5cd8a76c1fed554dcf81e9f18e483bca0076b66e0c773 0.05 MB 83 170
181,123 181,123 00000000000000b8e5da429492bcd1cc3986598141c7b0bf88ac3216ed6b0645 0.09 MB 219 106
181,122 181,122 00000000000005ae1a17256b9257a986d502b38e5bcccc734e3123599ac45afd 0.25 MB 632 144
181,121 181,121 00000000000005989dd0aa93fd1eefcfeb3adb45641759976934943d9d13536e 0.05 MB 142 132
181,120 181,120 00000000000004105cc889ec06c26bd741aed6915ca5c7ebe0f88effd2cc77f3 0.00 MB 7 297
181,119 181,119 000000000000068d35cfdb2c21878aadc3da6a9a8ff017cccaf1195c921bcc13 0.06 MB 171 140
181,118 181,118 000000000000059cf5996e845eb29e4bddbc6c8c5411a4f51505f7ff2007d8b9 0.03 MB 64 85
181,117 181,117 00000000000000f5f77ac3e131bae8777ff25c9d6d47ee565d9fe763651e4e12 0.13 MB 220 92
181,116 181,116 0000000000000564f8555baae3037536f7c62e584f7915fa0d6ae143d2271246 0.05 MB 110 104
Previous 10 blocks ↓
Total Size: 776.59 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,427.38 GB sent, 131.53 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.