Explorer IconExplorer

Memory Pool Memory Pool Refreshing

9,038 transactions (3.29 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,560 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 3,102 4
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,559 (830,349 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
79,210 79,210 00000000002f82160c46d4b49cd93eb9c16d9ee71cdf43d6911b72a6b91a6f03 0.00 MB 1 0
79,209 79,209 00000000002d1ed7d5e1709718f36d654d79b1c356b9bbc3987c9d615814c811 0.00 MB 3 0
79,208 79,208 0000000000366daf5ee9236964f89ada49b6bd9e37a5dda8c767a0da902701d3 0.00 MB 1 0
79,207 79,207 000000000039baf6869fe3aed53a16fbf04d75a93d471e3109c214361d383f83 0.00 MB 1 0
79,206 79,206 000000000034c3f04c8ae1db2828e294a9c4f63a19dee93637a9bb47c8976c4d 0.00 MB 2 0
79,205 79,205 0000000000326f4c1b6a17a9f451b6a4d1b67fa30f3c8ef9d715aad9d61341b3 0.00 MB 3 0
79,204 79,204 000000000012b7d0accfbcfb84a7d9f6096b673b40bc7c0621fa45a9e1945b71 0.00 MB 2 0
79,203 79,203 0000000000548b5602fdc8c14512e4c242991f10ac6c9e02677940b9a9f0f6e6 0.00 MB 1 0
79,202 79,202 000000000051d53aa02e241f6ee5366c752be152d7112df7bbbb3b2b8e75fe2b 0.00 MB 2 0
79,201 79,201 000000000015188f7b0182aebf4e808df2cb3b25fa14416ea44a3263f5f43370 0.00 MB 1 0
79,200 79,200 00000000001f2751b2a06d2a5a37467f39faa2104822654b913284cb36a955ae 0.00 MB 3 0
79,199 79,199 00000000001649bb8825617df398c70e6cdf2a13fb332cc99d028791d529efe5 0.00 MB 1 0
79,198 79,198 00000000000304982ccd791c4618e6d32deafeddaf37d8426101fc02188a3a56 0.00 MB 6 0
79,197 79,197 000000000006d21b04fd906928ff9d4334b90c816f470f984b499dcc9d1e9fc4 0.00 MB 4 0
79,196 79,196 00000000001c7cc32af3a6571b2232050b06b7cecb24d7860367e858173a2b1b 0.00 MB 1 0
79,195 79,195 00000000003e2e446e6b853406bb4b82a2c0bac788c68ae7cd34d9e22559c4f5 0.00 MB 1 0
79,194 79,194 0000000000286a599f35d904e4deedb18738bef1e781c918b5c5cbf270534e39 0.00 MB 1 0
79,193 79,193 000000000019ff0a80738924a4765e599850c7def3081f20cb5b7d5c8d62650a 0.00 MB 1 0
79,192 79,192 000000000031c817c3c4aaadf115233b9606d8becb3d20b4ad9b326576b91b4c 0.00 MB 4 0
79,191 79,191 000000000058b3824b2fd6137755bc632685518b3ac5d42af7e18f09c551ca40 0.00 MB 13 0
79,190 79,190 000000000004d6cead2b1c891784ae9752a93551854e0f489b90b59c0a8cb148 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 772.59 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,089.71 GB sent, 111.21 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.