Memory Pool Memory Pool Refreshing

23,809 transactions (5.89 vMB)
  • 1 sats/vbyte = (36 blocks)
  • 2 sats/vbyte = (3 blocks)
  • 3 sats/vbyte = (2 blocks)
Show Random Selection Loading Transactions
Max Size: 36/200 MB

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,186 00000000000000000002349e0000000000000000000000000000000000000000 ago 1.00 vMB 3,985 6
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,185 (836,978 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
72,207 72,207 0000000000a191ce9ac9dcc6ba42df2b513d48279fa16b98939a50a183bbf20f 0.00 MB 1 0
72,206 72,206 00000000008e684a77012e48ed0481b975842639181ad27285ac54132c131200 0.00 MB 1 0
72,205 72,205 0000000000e568e33fed88c43dc14d1049c472a84369704d28cefc1eeaddc49d 0.00 MB 1 0
72,204 72,204 0000000000466a0f32a6fc363745ea3a7a064e7e30b66bffcd845d45f35abd59 0.00 MB 2 0
72,203 72,203 000000000010350293f6904a6066fd0562681558de9ed893716f0d620b962530 0.00 MB 2 0
72,202 72,202 0000000000be7abde9a5d6728163ebe14f5e681439869e7edba2362386e9d131 0.00 MB 1 0
72,201 72,201 00000000006e64e29c9e9a93727754ff63e36c2f2c5c6f318c21b5c36646d692 0.00 MB 1 0
72,200 72,200 00000000002ab91a874ad050a902473581b1fcbfbcfbd8b64b0a0ba76f025a0b 0.00 MB 1 0
72,199 72,199 0000000000dc50f0bea7128f8826da874310453bd33573ebb4d19b9bf3384490 0.00 MB 1 0
72,198 72,198 00000000010531575e7deae780704caafbe38ca0f729d43348056e2427f7b3b2 0.00 MB 1 0
72,197 72,197 0000000000629105f559a4f63e73a336724ae7b724921eeeb1c9814fad4078f6 0.00 MB 1 0
72,196 72,196 000000000066b4512a922222fd0f1293f25d952adf7d3f63e23b60f2c9d95baa 0.00 MB 1 0
72,195 72,195 0000000000a9b6d308ae3b5cf70a336a085a747c9cec36375ce5f6a4668d6c69 0.00 MB 1 0
72,194 72,194 00000000005b7f986c7653cf45f41639a8ef85934039386d463b51d8486f683e 0.00 MB 2 0
72,193 72,193 00000000001d6f819c0090fe3489d968b0d7e9326851c1f887924e39404763cc 0.00 MB 2 0
72,192 72,192 0000000000344b16676a53ba75ba197ccf8ded2eac37d2944c45ebf0e089968c 0.00 MB 1 0
72,191 72,191 0000000000db7480d3e4c6cbb660b26ce2ba510c33b7ccfb9c9a5cf44956e8e9 0.00 MB 2 0
72,190 72,190 0000000000a8e671c2226dfdd510d0c547348c8be76942d09c5dab912e96faea 0.00 MB 1 0
72,189 72,189 000000000106513207c03d37e38386cce41373b187511d9fbfa673cefec50758 0.00 MB 1 0
72,188 72,188 000000000063a898d61402547e557bc144728b72b31aac51817789d502e9504d 0.00 MB 1 0
72,187 72,187 000000000051564b2470a18939fb50f22159e05bfaa51d55e5e695d433fc64c4 0.00 MB 2 0
Previous 10 blocks ↓
Total Size: 771.88 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: 1,993.59 GB sent, 107.21 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.