Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

3,006 transactions (1.08 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,139 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 2,975 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,138 (867,500 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
42,638 42,638 000000000736ee3a61edbb9aa945126c792936fb168cf2cf36c548009c1bf2db 0.00 MB 1 0
42,637 42,637 000000003e606b7b117d13eee7dc200e2c314d815206edd15cc4502a6585ecee 0.00 MB 1 0
42,636 42,636 000000000c73fe1f93476c3eaec8e8658ae7f7bb4db8364e65919ea1b6dfb0db 0.00 MB 1 0
42,635 42,635 000000001cb5d0181b04baa634f471bcce8f630ce6308f7956eb84d9d8597897 0.00 MB 1 0
42,634 42,634 000000003ac8693b09f92bae53b896de5d330e5f842f1bf3111d61b4e8743d97 0.00 MB 1 0
42,633 42,633 000000002fde689d95c0a92b86172433fca4d4bb3757fec758237d292a77d871 0.00 MB 1 0
42,632 42,632 000000001d0df43e0413a0f792b6f78d30c1f028eaecb8228991e6e086f9656e 0.00 MB 1 0
42,631 42,631 000000003dac1eb3da917971a1e54a1c1debe63787606266511d6f9cbcd3f1a8 0.00 MB 1 0
42,630 42,630 00000000152f5df1705c054d3ef2c4c573a6e6b0c8ea3aeeef9cb3f02f70e927 0.00 MB 1 0
42,629 42,629 000000003d956504222fb118cf7d73367857e19ca239311a6abac9f469bd7700 0.00 MB 1 0
42,628 42,628 000000002fd827a11be2089aa450de92fcd6f4c0e2bac5ffefc383f8eb9fbb70 0.00 MB 1 0
42,627 42,627 000000001c4136aaca885e37c884a5fe203739efc5dc87336e1ca285e90dbb13 0.00 MB 1 0
42,626 42,626 0000000035117916ede718d2aaec1251c2c1f78c038fb9f8a0e9efb01abf97f3 0.00 MB 1 0
42,625 42,625 000000000dca2a924ce07e1ab59c69f162522348fab93d42e7e4492f94765343 0.00 MB 1 0
42,624 42,624 00000000340d7fc2938385d5731987c6e61db983e25066d7b017b4f9868a98ab 0.00 MB 1 0
42,623 42,623 000000002d33bfed38c00fcfb39b5f3d2877e495c81f3b0e44187ebc6fb64aeb 0.00 MB 1 0
42,622 42,622 00000000030a5824472a21d71353c2d7db84d82f9bce6b9cf28d577b08f3cc24 0.00 MB 1 0
42,621 42,621 0000000009d51193d46983319be25e579901bae84eda1c9bb9e166b0c7f4ad23 0.00 MB 1 0
42,620 42,620 000000003c2af9bcbfdb636c1c34703fa070c9ed14282c3a0e705b0be1246ed4 0.00 MB 1 0
42,619 42,619 0000000034309365239bf6db8f9f6c4e8540efe61f6f4c27fa84105cb4a50da6 0.00 MB 1 0
42,618 42,618 0000000040c4f002698ee5d62ab1bfe385e4033dab83fbb88755d901b1d7ded8 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.65 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,193.00 GB sent, 116.74 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.