Memory Pool Memory Pool Refreshing

29,003 transactions (8.21 vMB)
  • 1 sats/vbyte = (36 blocks)
  • 2 sats/vbyte = (6 blocks)
  • 3 sats/vbyte = (4 blocks)
  • 4 sats/vbyte = (2 blocks)
Show Random Selection Loading Transactions
Max Size: 50/200 MB

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,211 00000000000000000002349e0000000000000000000000000000000000000000 ago 1.00 vMB 2,499 13
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,210 (885,710 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
23,500 23,500 0000000056f7036d31b8f919075b91118460197edf852c2df61f267ea0ebcf5e 0.00 MB 1 0
23,499 23,499 000000001959c479fbb36af8361053655e9327719d2f5ff7b513a5c3e60a30d0 0.00 MB 1 0
23,498 23,498 000000004302b3be44cfb9491c7402b4b4780f8ebde6f0d39dbc3a729705f96e 0.00 MB 1 0
23,497 23,497 00000000f6074a81d7ad8515cd6a2b042b0b16d451bda772d51133600241f793 0.00 MB 1 0
23,496 23,496 00000000e61fce75854b12f8a2d2aa46f3c5a2a64a9c372491cfc0a66c8b6e87 0.00 MB 1 0
23,495 23,495 0000000088741618f31d5b812a04d52f5e5bdc6589932322f4944f14fded85e0 0.00 MB 1 0
23,494 23,494 0000000030334e1dfb3e88eb2750ccc7af41d21095e99295fa9f99262171a793 0.00 MB 1 0
23,493 23,493 00000000a3e59960c2dc6be4b57479af2e6323e4d9f503d17379935220504ab4 0.00 MB 1 0
23,492 23,492 000000000ceb3e1b72a6e546da66600265a5a190f3569ac5dc535afa99fe8512 0.00 MB 1 0
23,491 23,491 0000000098b4a23838e0f22302d6b0f4f3691a72ed9e868805aa48dafd3690dd 0.00 MB 1 0
23,490 23,490 00000000cb5bfb0fe1a8c1544ed7ae82de477ef40a117272ebb8c93dc039bf2d 0.00 MB 1 0
23,489 23,489 00000000aaa80555aec005ab61892886b3d486078af30d060d04b8b11df7e496 0.00 MB 1 0
23,488 23,488 00000000098055e03cebfae52258cf2676e936fdfee57f52c8afbb8d03b174d9 0.00 MB 1 0
23,487 23,487 00000000f03256ab5e87a59edc0a2d07bea34d4a8e4c08ed3a3051881f458d31 0.00 MB 1 0
23,486 23,486 00000000efe3f85e345bd1902c8a23b75038cc758dd5f6fc9888511212a402cc 0.00 MB 1 0
23,485 23,485 0000000056e207d61f1311bcfcbaf2383e384486e3cf7a81493541b8fbfda08d 0.00 MB 1 0
23,484 23,484 00000000ffb874ed66ee7a872921177ea3e96d281c78902e21e497b45aec9785 0.00 MB 1 0
23,483 23,483 000000005bbf1bffc1df82ef867873ec86f752c7b0df470f59daf3e91e6bd50e 0.00 MB 1 0
23,482 23,482 00000000bf1e37aea6319170680778c59dfe71c108b3582ac56185d6dc1dce77 0.00 MB 1 0
23,481 23,481 00000000cd959ae8273e3b1ea7da3b3cce9bb6d5e98cd5035c434f105d1f0c6d 0.00 MB 1 0
23,480 23,480 00000000ac77b64ee50b0f5977472c024082b03934f7dea557b34d71bd926e31 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 771.93 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,006.31 GB sent, 107.55 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.