Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

7,381 transactions (2.88 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,878 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 2,425 3
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,877 (852,642 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
57,235 57,235 000000001235347a4f1f9a5261e25855cf9499c68fb21bb0bf4d6530694c406f 0.00 MB 1 0
57,234 57,234 0000000002f28c609ded303c16d47545545f82012978bb689b63647562650f79 0.00 MB 1 0
57,233 57,233 000000000673f5b032ae2bca0d13ea3b2092f9bf17dacbf9660eb06b59d8323b 0.00 MB 1 0
57,232 57,232 0000000004db14311795bb888dda76f2fd9ae8494e5a7f818088048d2bb8b663 0.00 MB 1 0
57,231 57,231 000000001159c069e14f3ef79fdb20de27266cf032befd39e3daf4d2683b8d78 0.00 MB 2 0
57,230 57,230 000000000e52821aed2df04df3849a5c6ea71e7b68d4f66055e55ba278e5f475 0.00 MB 1 0
57,229 57,229 000000000254e297dececd32442677dca82518c548fdd31c1dc149271565ce70 0.00 MB 1 0
57,228 57,228 0000000005e0dde861c5f80e0cca3f5d4042081d5fe9e183b495e0cfe3bc0d09 0.00 MB 1 0
57,227 57,227 00000000097d797ae84a320d583ce9c662013c441b6a5b2cca284dfe226b3044 0.00 MB 1 0
57,226 57,226 000000000ea618ff384dbc20799787d9785a6c0ef8afb731ffb58cd7eeeb6fda 0.00 MB 1 0
57,225 57,225 000000000324d30cdb5a007c537d4c7409148eeebfe76e07727a030a12dae02b 0.00 MB 1 0
57,224 57,224 0000000012fd570618c389fa7ef891cb93ca43e60ffc7005763ddc99cf47332e 0.00 MB 1 0
57,223 57,223 00000000094d0ff6f22cd24db6f3e642a796ca98ce29e7f358b310bfd3e785a2 0.00 MB 1 0
57,222 57,222 0000000000b5cafb0061e951d0e170df8811db6059f72c623d5ee83c3ac833a2 0.00 MB 1 0
57,221 57,221 000000000914980d4c174880591eeef012aae3a5c1d84acea2fec17db7eda0e6 0.00 MB 2 0
57,220 57,220 00000000071717580381d6e43a2c18ea41c2099a077c220532e85d7fb781eea0 0.00 MB 1 0
57,219 57,219 0000000013ab9a5facc3a6c36c1162446632b742d1398c2782debb91759ea454 0.00 MB 1 0
57,218 57,218 00000000092973f4aa3be669f60c793dabb514464da0525131929952f047c167 0.00 MB 1 0
57,217 57,217 000000000a6584863433130fb3a1b879ecb2bc7b75bb88c95eb34c8abbf656ed 0.00 MB 1 0
57,216 57,216 0000000012813a3b735b9157e13dba76fdb5c5504c345a04e8ab28e8ffd6db40 0.00 MB 1 0
57,215 57,215 0000000006911bf759273c78c088da3c837d83d1201a564c8f0681abf5e85286 0.00 MB 2 0
Previous 10 blocks ↓
Total Size: 773.17 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,170.67 GB sent, 114.24 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.