Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

1,116 transactions (0.33 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
911,943 000000000000000000022b910000000000000000000000000000000000000000 0.31 vMB 1,089 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 911,942 (838,745 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
73,197 73,197 000000000054578ed6168704eda5a2d7e387fa6e7afb2549912191a18a25c783 0.00 MB 1 0
73,196 73,196 00000000007fb899542b80c9895f06e83825a44a70613c0307f6ed31114908aa 0.00 MB 2 0
73,195 73,195 00000000003574b65af0b15f620fbd5c283ea4dc9d89f38eed6b43fda16d5060 0.00 MB 1 0
73,194 73,194 0000000000486e8b9c7092ae2b7f340143872e907db0140d745367aeca4f1372 0.00 MB 3 0
73,193 73,193 00000000003f10014e3a0691e1896b1772eea506f03cf33edf9c4827eff1d6a8 0.00 MB 1 0
73,192 73,192 0000000000130ff1691bd08b4a183cacff92a3567ce60a89ab68e7b5c95a3c68 0.00 MB 3 0
73,191 73,191 0000000000aeb3343eb2148660f9cae3c8ddc3025faecb344bcf0481e2ac4461 0.00 MB 1 0
73,190 73,190 00000000000a19e9771e9e30ad692c14cdc4849679062bfb102d292c7f287f74 0.00 MB 1 0
73,189 73,189 00000000003f8514705a4cd67eee2cd607b297111d8b0539ca6c857bc5a7d122 0.00 MB 2 0
73,188 73,188 00000000003a2ef01014a13751498fbd5114eb7ccd7a664061941ca312a391a2 0.00 MB 1 0
73,187 73,187 000000000059cf9607cb930a683dee224a645ea7501f18c51505225fae40f0ae 0.00 MB 2 0
73,186 73,186 00000000009de1eea7d7ddb9651c66194e1847c969a0355b75e2898d5b214ad6 0.00 MB 4 0
73,185 73,185 00000000008412a056a3de6e946e486cf65389429230a0744597775b3ec2b2ec 0.00 MB 1 0
73,184 73,184 0000000000634c5ef19b9bf02c0d29897d960d6940eb1692ee4a96e3194d0543 0.00 MB 3 0
73,183 73,183 00000000009351839d0cbdd56ad889e68e31c78ceec9109ee6813d95445a24af 0.00 MB 1 0
73,182 73,182 0000000000044de2dffe206ac43a46e6f091b7de4f1eb9ce3b890bff137bcdee 0.00 MB 2 0
73,181 73,181 0000000000410c0ba007bb9e151ff1d93ff83ce388a3c48e846fbc2f0c4d93b9 0.00 MB 1 0
73,180 73,180 0000000000857124b9685a53e9afd2201c0c07278765f27a1ff6e7890b78d0fc 0.00 MB 1 0
73,179 73,179 0000000000434eaf5eb86eb1342d5def56e6f8e03f88f45c910a78118701feb5 0.00 MB 1 0
73,178 73,178 00000000003f897fe9244db2d53a449217fe2e9ffd03fe2f5f8712bf678b017f 0.00 MB 2 0
73,177 73,177 0000000000a0acb72ab24467cb4d6b07d14c4da9c2eeac0a442a6e2bc7bed702 0.00 MB 3 0
Previous 10 blocks ↓
Total Size: 776.98 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,493.92 GB sent, 133.37 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.