Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

1,247 transactions (0.45 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,925 000000000000000000022cb30000000000000000000000000000000000000000 0.44 vMB 1,213 1
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,924 (847,699 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
62,225 62,225 000000000eb9541e108e7c8c7301bbfea9f6295425957e1e5c4e3872782a5d01 0.00 MB 2 0
62,224 62,224 0000000001e7e7896b658f569d2ecda30dd7d10a5d56a970cba7d5b0e9d1fcea 0.00 MB 1 0
62,223 62,223 000000000174f9e5af63be2f40b6446181ece6bd041a9c33e0dfaac60dc75669 0.00 MB 1 0
62,222 62,222 00000000056e25ae39b52c947003f8961810e41641727ddc7c567003e20c1507 0.00 MB 1 0
62,221 62,221 000000000935a76d4ccf26ee832498457d889dbf828756a9b101ce5f95a26e66 0.00 MB 2 0
62,220 62,220 000000000c90cf5f59916706d93c7a6c6ff78d7431e7a8b4a4c06c59827d54b6 0.00 MB 3 0
62,219 62,219 0000000005307fb15681dc610c2c05146f8170bd87337f9aaa39b96017519026 0.00 MB 2 0
62,218 62,218 000000000c305664ed6a56640d449df0f6bace4e5a9e82a99d314d25a9714164 0.00 MB 1 0
62,217 62,217 00000000074b822ce6fc03354ef3897e6b0017b574d306bf5e0aaa89ad9188ad 0.00 MB 2 0
62,216 62,216 00000000097cea3fb741fd928e415b35b57014d054283a1508c5c0c70f8408a9 0.00 MB 2 0
62,215 62,215 0000000002e423e423700f3ee7f51d45ee6bdbde15b765b170ac5a80efa92c2e 0.00 MB 1 0
62,214 62,214 000000000c8be982f404e4b873c083accbda12aff39370186f1b084646e656b8 0.00 MB 1 0
62,213 62,213 0000000000cae0115a39acd59a4bcd60f588e2560d76876dca30b530ec6cbe5a 0.00 MB 2 0
62,212 62,212 000000000277361804435cde1fae179496c58e3c225086c1a938a8c83fb8290b 0.00 MB 1 0
62,211 62,211 00000000059f48e1a578b7a4e559c92e2e08c2fa0c13a07dd7412a57b0524176 0.00 MB 6 0
62,210 62,210 00000000002fcf9beb1e69e735b36cd37f992bae11c987d35ebfca1abb25be16 0.00 MB 1 0
62,209 62,209 0000000006607fb1c5b41cc252a513aa49f1585dfabdb9e80fa6192dd6f26602 0.00 MB 1 0
62,208 62,208 00000000096e8d6935cb97ae47d3e099aac7c9d70d8c7f79246a88977fbd9972 0.00 MB 1 0
62,207 62,207 000000000aaa3c780c90cc862dd00094cebe066eedda5beb3ad4130ef0cacf05 0.00 MB 2 0
62,206 62,206 0000000007bbbb342a75580b80a90d30ca52a9d284d2482a81cc0c48d8aa8ff9 0.00 MB 1 0
62,205 62,205 00000000043a3cec5d5cfb07fde7a3a2d879c6c2b00a8c9155f0bd6319644b86 0.00 MB 2 0
Previous 10 blocks ↓
Total Size: 773.26 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,173.12 GB sent, 114.70 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.