Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

4,396 transactions (1.31 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,104 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 3,225 3
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,103 (884,240 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
25,863 25,863 000000003d3448d0e57902dff0809a6bb3b69490ea094974781a1ce651ffcd8b 0.00 MB 1 0
25,862 25,862 0000000042e132dcd6a1a2344be52a92a06c09df02e27f6f53ebd3ec116f946e 0.00 MB 1 0
25,861 25,861 00000000c0b0ba1399d9b94d2360c831fc460dca9509fcec4cd3f25296d07d61 0.00 MB 1 0
25,860 25,860 0000000091680fb85e54f8aec65bb618f119ddd7c717716532b9bb8c85658e49 0.00 MB 1 0
25,859 25,859 00000000de7b3a13ba1c496da61172bc2fbbc4c5a5f8a67782bb8133b5dbabaf 0.00 MB 1 0
25,858 25,858 000000008c2e9df488f22625d3653ed4cdb793a44be83263f56bc2cf12acc90f 0.00 MB 1 0
25,857 25,857 00000000cbd01e3dabeab56f51b1441ce47f8d6b43bd9073ac599d8ee34a9410 0.00 MB 1 0
25,856 25,856 00000000191e24aa61fe85751ef5744c993b60eb5d98bfcf6b5c6d602714fe02 0.00 MB 1 0
25,855 25,855 0000000051f2e98d73f7120d1025180044cc5fed54eafaea8782bfe98188c5f1 0.00 MB 1 0
25,854 25,854 00000000f4fa96bafb1d908fdadb2e0d235fe126f400adf7dd4527daf416c8a2 0.00 MB 1 0
25,853 25,853 00000000d0d496e32cc0546a8ffd36b89f47024f26a66fe3563e8d87e3a9a50c 0.00 MB 1 0
25,852 25,852 000000009704e0cd773301db4a3df9b5d7e688e9cbe61f44768a6248ac4fed2b 0.00 MB 1 0
25,851 25,851 00000000faf8c2afbb0f1951e91f61a5837fd2a341089995426d74b136a7e23f 0.00 MB 1 0
25,850 25,850 00000000753b14c8af3390c5c35cabad8a904fdf68ba619e01acf14a46c5f870 0.00 MB 1 0
25,849 25,849 000000000ac2acc45f686a9b49509373b7973e86729b105e5056639a58675332 0.00 MB 1 0
25,848 25,848 000000003e2e5b974cbb863bdd0967462a78297f33085111d48c58e04f6f73cc 0.00 MB 1 0
25,847 25,847 00000000bb316c92087b420b81c23802d833c51ef848d851ae553ba874f7c42e 0.00 MB 1 0
25,846 25,846 00000000552c6ae7d6c1508432ad00f7d92e98331273b97fe5fb7efbe0b8558d 0.00 MB 1 0
25,845 25,845 0000000077ac48d82fcc4f181ccca65a00ee4d454844d1447d4c602e0f6d14dc 0.00 MB 1 0
25,844 25,844 00000000e2192dc53b90027330c6193b2fefeadad5a2b77cc245e33c6b41adb8 0.00 MB 1 0
25,843 25,843 00000000195eeb259f65c53e0922896a5386637ab52ccd0f2c5ea842e61885d0 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.58 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,188.62 GB sent, 116.41 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.