Loading Tool

Explorer IconExplorer

Memory Pool

1,715 transactions (0.48 vMB)
  • 1 sats/vbyte = 2 blocks ()
Show Random Selection Loading Transactions
Max Size: 2.80/200 MB

Candidate Block

Height Target Txs Fees Size Avg Feerate AFR
912,210 000000000000000000022b910000000000000000000000000000000000000000 1,713 0.01340317 BTC 0.47 vMB 2.01
Show Transactions Loading Transactions

Blockchain

Blockchain Refreshing
Tip: 912,209 (585,236 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
326,973 326,973 000000000000000015305c5c9931ad31fc2d03a532f153d9bb9caff45881df3e 0.25 MB 823 48
326,972 326,972 000000000000000008a5cc2ddbf97e936ce56d437fe64e1d45e4e1caf94ccf37 0.06 MB 146 30
326,971 326,971 0000000000000000024f34b758964cdb7e8253bd34eed367410de4804f9cb14b 0.14 MB 286 25
326,970 326,970 0000000000000000079012c1df195f099bcefe34464b96ab325d94d4627084f2 0.00 MB 1 0
326,969 326,969 00000000000000000991e23725466ce0e4190e8c13ef5a8608f4735fbfeb7f73 0.08 MB 256 47
326,968 326,968 00000000000000000f35ca557284af4c831829578c173a5cc7e87fa12ae18ded 0.35 MB 746 27
326,967 326,967 000000000000000004e5282e5699723306ea779199d18ad1e089a805f0e547b7 0.11 MB 246 28
326,966 326,966 000000000000000001cdbb9b0cc4dfa77f4415871378a299ba3b246d8dbbdfbc 0.11 MB 82 16
326,965 326,965 000000000000000010688d633cd9df89e5a5d17d9a5cd6e4de4abed264b8cbde 0.31 MB 524 33
326,964 326,964 00000000000000001288c8094a5ff650bc4229207e01a7b4d0d06b11ae75f2be 0.22 MB 365 26
326,963 326,963 00000000000000000f7bd34c3bc539d7349d52d9b3484aee0cc2ab10b773dd19 0.24 MB 423 24
326,962 326,962 000000000000000002345d73994bd46357ebc3794837e5207ba667d2d7a2d7a9 0.17 MB 319 29
326,961 326,961 0000000000000000125fa040264fcaf507184851a22d6a2bf18955e64b9276a0 0.33 MB 662 31
326,960 326,960 000000000000000012e906860101cf672474f0402722cdc11365e5a4cb00a30c 0.03 MB 70 32
326,959 326,959 00000000000000000cfd9cdcc88617f3381198149b7e417c142b911134c41a4e 0.32 MB 636 26
326,958 326,958 0000000000000000011672e0046c46e8d9471e8f6ef267f7f3c0fe9ddb8016cb 0.63 MB 1,091 26
326,957 326,957 000000000000000008ffdf90f506525977b647d073c999bdf310d99f8c49f7af 0.14 MB 209 9
326,956 326,956 0000000000000000149241875eabd66e7313972b7db7e754d7242329eabf6e0b 0.10 MB 205 27
326,955 326,955 00000000000000000cb0f13c18ffaf2b37da47622dc30f4f5371578e729b9b8d 0.18 MB 240 22
326,954 326,954 00000000000000000e378b7de992b9b48c5cb2cedf571cd76af64357ce5b68b8 0.17 MB 319 27
326,953 326,953 00000000000000000eece2ab21bfc0f85ec729ba72ade44566ba6ff2f6fbad49 0.70 MB 1,387 28
Previous 10 blocks ↓
Total Size: 777.47 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,535.54 GB
    • Received: 135.73 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.