Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

7,958 transactions (2.24 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,669 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 4,750 3
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,668 (867,373 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
43,295 43,295 000000003505690d608d276e967d9b430725d3f63526f2e7d2eec5676b58cb5c 0.00 MB 1 0
43,294 43,294 0000000028ba0dfbce2ec4a56fd7c8ea4a8bd390b4d66b249f006b2169502bfd 0.00 MB 1 0
43,293 43,293 00000000194dfbde69a91e005a6ccb6d46dec0a2c28cf10b0d0ba513ebdb0875 0.00 MB 1 0
43,292 43,292 000000000a06d07d76c3f54b6c89ddce413757274a272c95eaa23b834e2311eb 0.00 MB 1 0
43,291 43,291 0000000011fb65ab07a1771c5ac72623f1d2ba3ca0da99b55c0398c9045257ac 0.00 MB 1 0
43,290 43,290 000000001a0952c684cdc880bdb0b7a9ba285289838ed11a5caa50b5ec50f9a5 0.00 MB 1 0
43,289 43,289 000000000103d37fa4ff9f0fd985346a3c0f4288895fd319860a9d89823e940f 0.00 MB 1 0
43,288 43,288 0000000033b4f4eebc9c8f5fdfccdb9c45faccb7e6b51f2fb45623b93614ff34 0.00 MB 1 0
43,287 43,287 00000000027ce14d7a443f4ea5f6b652ec3305e98dd6d56eacf2b55fe8a9c525 0.00 MB 1 0
43,286 43,286 000000001cb06d67bd1811f8f3edf6f92ff9207e20b8cb0fc13056d3f2dfbc5b 0.00 MB 1 0
43,285 43,285 0000000037e56b0ca652c6ae3a6c35892df1273512abed98fe4b41bba95151bf 0.00 MB 1 0
43,284 43,284 000000002b8afb85c24fb80e64427f43d261445abcb1516bec332091a86f8f39 0.00 MB 1 0
43,283 43,283 000000003f8641f0dcd35b9ffd18aed5b625ca05684d0cebd1ee64545872e95f 0.00 MB 1 0
43,282 43,282 0000000031d0efe174268fbd62b96eac354b0722fcbcb06bb61f6e73a1cd638e 0.00 MB 1 0
43,281 43,281 000000003a8c1fc8180c3943c83674aebcbdd9f0abf41a87e9c23747a2c777ea 0.00 MB 3 0
43,280 43,280 0000000009838e565c4d56e0ad17d23db0c6486187a3eab7d28648796f1a314d 0.00 MB 1 0
43,279 43,279 0000000032db903337158d518d35a92db697f14cd92fa6852ef34d58d64c7b3b 0.00 MB 1 0
43,278 43,278 000000001c34faa115242435552e359cf35c9e6295713d0eb41a86babb82c9b1 0.00 MB 1 0
43,277 43,277 0000000008e632ccc9723c76f4ed1e0e99e9f19660e835ea56cd08f9d4c0acfc 0.00 MB 1 0
43,276 43,276 0000000043658ae2f5c9972486466378c3b346d7393c2c2f827bdb8c15fd536a 0.00 MB 1 0
43,275 43,275 0000000017f802d121c0817ff68a1043d938b8b9fafb00901f355cef5e4950b6 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 774.61 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,285.68 GB sent, 121.71 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.