Loading Tool

Explorer IconExplorer

Memory Pool

1,236 transactions (0.42 vMB)
  • 1 sats/vbyte = 2 blocks ()
Show Random Selection Loading Transactions
Max Size: 2.32/200 MB

Candidate Block

Height Target Txs Fees Size Avg Feerate AFR
912,503 000000000000000000022b910000000000000000000000000000000000000000 1,236 0.00913403 BTC 0.41 vMB 1.50
Show Transactions Loading Transactions

Blockchain

Blockchain Refreshing
Tip: 912,502 (645,675 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
266,827 266,827 000000000000000713a9e44da62f7a17fae1b4ac883a7d85fe567b7c46b93306 0.05 MB 69 57
266,826 266,826 0000000000000001588141407f65798743ee39e4f6459a13ea878b427b8a5db9 0.20 MB 533 185
266,825 266,825 0000000000000001872c531cc2bdc34694d92ae2cd8193162a04b259626f404e 0.02 MB 45 58
266,824 266,824 000000000000000550093e6bcd7dfd291d6fe142526d81a5d46c1260402b2e90 0.03 MB 81 99
266,823 266,823 00000000000000051fd3cd03e19e163c67fff7cda4f4acd2bea48baf55402ddb 0.07 MB 129 89
266,822 266,822 00000000000000046fa51f46b785dd9e778e664829281151ffd97686fd5d6e7d 0.13 MB 174 57
266,821 266,821 00000000000000097548f9ee5bf9df8f89b44567bf7ba5f55ead0d7495a9d697 0.15 MB 230 42
266,820 266,820 0000000000000002639089e66ca5eaef8e979862ee1b2581cc779d4a2dcd18ad 0.49 MB 88 20
266,819 266,819 000000000000000aba0723ed79ef52d48ef0ac047fbbcac038c9b117ad0353f2 0.24 MB 466 104
266,818 266,818 0000000000000002755d950b33d7873bfcc42e0b947a7167ecb8faeedca7e3b1 0.24 MB 478 100
266,817 266,817 000000000000000265889fe95d7072cce28633d79728d5d605ba085f8968a380 0.13 MB 317 132
266,816 266,816 00000000000000043b472650a49e912971ebd5c585709df32935ede8825d08eb 0.18 MB 354 222
266,815 266,815 0000000000000001c087c56a4281c6b48182be656547002db9cc76fbd91053ea 0.07 MB 147 42
266,814 266,814 000000000000000a4d82c447f9b2477c8e3c7a2138a996d0effeb3618f42628c 0.06 MB 89 93
266,813 266,813 0000000000000000cf8edbd80e2e0cdc11bdffa538a379e52a0b9fb240060ebc 0.05 MB 110 64
266,812 266,812 0000000000000006c07f762825462eef0aeba12a906a89ba6ce8a4c529b006b1 0.10 MB 240 94
266,811 266,811 000000000000000967b13ba7939ec464560a1c928aa14c8649942bfe3594bc08 0.17 MB 373 89
266,810 266,810 0000000000000002961c47f75aca4849b15de1a88e1dc8b278f81a9094989590 0.14 MB 317 95
266,809 266,809 000000000000000330b4648212a7886802579285fa39bb25acebfa51be576ca6 0.03 MB 65 47
266,808 266,808 000000000000000a65eba7bb944f9a5df56c671e0b25ed3cd573467a09bd1bf4 0.03 MB 48 53
266,807 266,807 00000000000000059970db118f2b8ca9debb7b6134fb7f2a099b64ccae798203 0.04 MB 101 68
Previous 10 blocks ↓
Total Size: 777.97 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,560.24 GB
    • Received: 138.08 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.