Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

7,250 transactions (2.84 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,878 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 2,416 3
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,877 (856,219 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
53,658 53,658 0000000006be989d567ff941bb002062f0e73419e51938473adc5f205e5845e1 0.00 MB 1 0
53,657 53,657 000000001616e828f1b39f1fb6d8f30ed604e6c3dc6628b81962f69f4b173f18 0.00 MB 1 0
53,656 53,656 0000000008dee397b061931717c2ffab4e8a4948193fe93231a912c7a7e770e0 0.00 MB 1 0
53,655 53,655 0000000015a9e286e7804d407853d4fe8b77ef7cc976eed81407fd731b4de884 0.00 MB 1 0
53,654 53,654 000000000bddce8b8774e782698ef6f7e16e8e1b0f818d9d6a2024a756e64f46 0.00 MB 1 0
53,653 53,653 00000000122f35761584877e02cb55bd3871df5b1bed8aeec66b8fc5dd7df906 0.00 MB 4 0
53,652 53,652 0000000013689cd5d59fa024b7bdb8403af836ed7856df88a14247e63968cf41 0.00 MB 1 0
53,651 53,651 0000000015d04319bdb4cf7b6393b8325431f9bd9d6e3ae0202a8904ad5f6931 0.00 MB 1 0
53,650 53,650 000000001041adb8b0b66d4f254f295fbaa54dcab3077af666f3c9fc0f035282 0.00 MB 1 0
53,649 53,649 00000000005fdc5461f846a64eb9421e5db142052c5f45869eda3e6caf975da1 0.00 MB 1 0
53,648 53,648 000000000e54f403d86584a9b10e8c3394be0af444a6819f0205f49e30fd4291 0.00 MB 1 0
53,647 53,647 00000000113744d61b610e2bc6b152a7978abe631a4997232884ce3dd5b7c09f 0.00 MB 1 0
53,646 53,646 00000000081f529e96fbade9c40687e783164c634252de01d4610303a113f6f0 0.00 MB 1 0
53,645 53,645 0000000000073159abe28a117168a9acc0c05aa7e16fd5b9721935a7f6d60d32 0.00 MB 1 0
53,644 53,644 000000000e307fda6a5da9b116a8d3b96f3e420d7efd8ea389e0d6cde5b0b430 0.00 MB 1 0
53,643 53,643 000000000cb7f191f0234d31694035dfddc0c21e2c13283d68ec7bb45a3053e9 0.00 MB 1 0
53,642 53,642 000000001623d40f370f465a89c383a13099e82831311fc7d8dd9db35a9589ad 0.00 MB 1 0
53,641 53,641 000000000cb2ddfbc7d102f3955ba3088ed08127198937ca262f6f23b102f07c 0.00 MB 1 0
53,640 53,640 0000000006228f8d729f16b7313c908000fcfe853f1c9728ec5f8f3f8ff4fa2d 0.00 MB 1 0
53,639 53,639 000000000e4d68af100f7d56df3dd91fbc2f2a0ed4443206d3323a7303d4ad8f 0.00 MB 1 0
53,638 53,638 0000000002da811bcb2371cfc17dc65cd3aec56731c9d43b9acc024cb6bd74fa 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.17 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,170.67 GB sent, 114.24 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.