Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

4,329 transactions (1.73 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

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

Blockchain Blockchain Refreshing

Tip: 910,040 (886,235 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
23,805 23,805 000000004916ff5c0f0624c2046b09df0fca1872fb178cfc95178c4c6df4c1f4 0.00 MB 1 0
23,804 23,804 000000004c4d79cd1b17a84479f5b6a760c0434ac3dc12488abc2a58e7bc66fb 0.00 MB 1 0
23,803 23,803 0000000055596f6de3de5f2c574c896f3f158dd5b70ee3819c994b705639290d 0.00 MB 1 0
23,802 23,802 0000000007075693515bb2cffb3dc30776d8a12a7de95ac0400e43b20383f1cf 0.00 MB 1 0
23,801 23,801 00000000ce34f4bc124f14e6200821e04ccf7c00a1641c0063ba0d38d9e3c01f 0.00 MB 1 0
23,800 23,800 000000007a9ea937de2bcea319f1476e3eca0404d8ee15f781c575e9aa6def08 0.00 MB 1 0
23,799 23,799 00000000cbbad9c9e78ba119727cc8be6d4f72d1c372c1733854a71753fbb4ac 0.00 MB 1 0
23,798 23,798 00000000f7c3881d30de60126d1a7464e51c7371c9849adf3c13a0517d342096 0.00 MB 1 0
23,797 23,797 000000003724d0191c81a3ed7052588c664853e9fe299b35b6e1925c765bd60a 0.00 MB 1 0
23,796 23,796 00000000cdb92a8c0fe5fc3803a96aee7438f5a5f3a5d5cc3e1d100c0fea2d3e 0.00 MB 1 0
23,795 23,795 0000000045e3a218f6238115819f9330e0a3b1100c14354d0d6110f252db904e 0.00 MB 1 0
23,794 23,794 000000003a5b4e196c733a9282e19b58ee436b13685ffc002ebb381729ffbfd8 0.00 MB 1 0
23,793 23,793 0000000050992a9f495d7d8d507eea1a5b505d5fa852b84bc8cdd3d5eae49263 0.00 MB 1 0
23,792 23,792 00000000612827c17a5e9d52b2b8c81405d05bd2a2047aafbe945e68bafef750 0.00 MB 1 0
23,791 23,791 000000001671a3efe49ceef0e93dbdbe1cce47042a1f9942573508ead0e10957 0.00 MB 1 0
23,790 23,790 00000000565c4387ba54a7dbd0b962fd91f93da0283baa49bfda198615dfa10b 0.00 MB 1 0
23,789 23,789 00000000ca75471fc96c45d0d2076015beaecfb40db311b939cb2fd6c977ef89 0.00 MB 1 0
23,788 23,788 000000009d453f310464d495bf2b511ecb58361bc2bc02f1a59c749b0c0aebce 0.00 MB 1 0
23,787 23,787 00000000cebffb64aa8a48e0f8807efd0b7479081ae476c1d335281fb0fcb1a1 0.00 MB 1 0
23,786 23,786 00000000fb572378b9bccfcf4c47144d809fa5de9d185b2a3d0d143e74e77ed6 0.00 MB 1 0
23,785 23,785 00000000c19489773f90adb8bce3df99f3783d2fe64fa6ffe69a31da0eee42ac 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.47 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,185.64 GB sent, 115.68 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.