Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

21,694 transactions (5.20 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,068 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 2,292 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,067 (888,257 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
21,810 21,810 00000000b938b26a8a483cb6e61fe968c7f51a89da1348c45051a98d35218597 0.00 MB 1 0
21,809 21,809 00000000b7c3fc455bf3bdb24b73cf299986ae996004952367124063f2888da9 0.00 MB 1 0
21,808 21,808 000000005fd35259a4ae1ef682244a71e372a712558a89222c4a6effc4c40cca 0.00 MB 1 0
21,807 21,807 00000000a103f4328764e834a7a198a7fa88be08598883aab5d925af29da0615 0.00 MB 1 0
21,806 21,806 000000002c827c1077d26c267460e8b66ca2699fd8b1983f08f4db3270f1c63a 0.00 MB 1 0
21,805 21,805 00000000e7d8c956df99586351f3083f1fc45937179251bcc6a1dfa346a6da74 0.00 MB 1 0
21,804 21,804 00000000e13f039cc1c45986fea5b886146e1548c0a3e6b2cca825e9aa1ca0ff 0.00 MB 1 0
21,803 21,803 0000000006c43bbabe1761e412570d9ccd9d593c48acec0e7d71bcf58fbd12f7 0.00 MB 1 0
21,802 21,802 000000002899f370587a1246f6fedc465f12091390f61c71e2e22940700cdb48 0.00 MB 1 0
21,801 21,801 00000000ccb77294f9b9f07bcf006d9f58c23f690da35f48df31c0c2dec650b7 0.00 MB 1 0
21,800 21,800 00000000d4fe2d10393178fc184b1fa2285389092b561f1b00e4a5bdcd79589c 0.00 MB 1 0
21,799 21,799 00000000cbfc5d1fee81511ce944592ddb488f6ce6fcdc6e97cd150233754e33 0.00 MB 1 0
21,798 21,798 00000000a1aa97aabc5cfde1fc12af41aa256c29c7dd7481e6b6a78e1d31e570 0.00 MB 1 0
21,797 21,797 000000004d64dec354a29d845a6a2677547d8143a8415d88205e1faaf8f74780 0.00 MB 1 0
21,796 21,796 0000000071a75b65f1c0976b60b48f7b1c65e4cf2371ff3604ade358fcd7dcf9 0.00 MB 1 0
21,795 21,795 00000000cfd51c09fd4b4afb4f25239a226a1fc15c989ddcb1a19aec73b6987b 0.00 MB 1 0
21,794 21,794 000000007418402205f3058a5657515d6f78eef3027a172696ca39345302743e 0.00 MB 1 0
21,793 21,793 0000000072d10bed99b8393b019e85a4d653b9ff24496927de40795f1cd6b269 0.00 MB 1 0
21,792 21,792 000000007102279176beb8a14af9e74dd08a9a651eda4c296c5f31386157c89d 0.00 MB 1 0
21,791 21,791 00000000d3eb35321335c82f345ba9744eed73d43217b04740ac052e76f3bbe0 0.00 MB 1 0
21,790 21,790 0000000080e09f5ae42ada5922406e6af6ce0ccf91c7bff47f914322438287c9 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.52 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,186.63 GB sent, 116.08 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.