Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

1,004 transactions (0.25 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: 2/200 MB

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,888 000000000000000000022cb30000000000000000000000000000000000000000 0.25 vMB 998 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,887 (891,163 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
18,724 18,724 00000000afbf3e02c82c2c9e07a3df2b7f4fc075b13d3da400244d7f7d4eb65b 0.00 MB 1 0
18,723 18,723 00000000b7f2c147b48ade42034dddff847e636bfef13cc7ee8b2767ba6a4e2b 0.00 MB 1 0
18,722 18,722 0000000096e5029d44c20be6443753c0d607f0125ea242cbf9c61aaa1098b525 0.00 MB 1 0
18,721 18,721 0000000018a46cb68220fda3beae43d7f3881c46140b6b06e5a947b3e449abb2 0.00 MB 1 0
18,720 18,720 00000000aaf2e566b1f4ab22a3ba909116e03c6c9e04d66ab972c38b8b1c8334 0.00 MB 1 0
18,719 18,719 00000000bcc07dbac63bba4e797703fbcc833804786c6c68b686fa3bcf91e2a1 0.00 MB 1 0
18,718 18,718 00000000c5efc74275b96ba54805c33b9b428ac92efb259e73ca4c90ea8a4eac 0.00 MB 1 0
18,717 18,717 00000000835f1f2d922f127f1d1a01c3d287b4896648d52caef79ab8aa19bb2b 0.00 MB 1 0
18,716 18,716 00000000e5efc64b70d9d11a8977805a6a8d28a3ea7bb9096bd2900da86a88f0 0.00 MB 1 0
18,715 18,715 0000000044ce5badb2ecb7376fa234b6820ac9b9f52ee3d8c59efe3f18d959ab 0.00 MB 1 0
18,714 18,714 00000000b6145e3a629f066a8d49d19b04238490ede5a8f822c2607ae6680f3b 0.00 MB 1 0
18,713 18,713 0000000028c4643fe8dacf68e28bca71b7909d25fa78ecbd652e705b1fdd5094 0.00 MB 1 0
18,712 18,712 000000002638383ee9b5c9ca509efeb9000b1da2c549dbed27d2f32997588534 0.00 MB 1 0
18,711 18,711 000000009bb767b7de4b77da93a54f09ae7ff942a3ef723464acc1ed543671a4 0.00 MB 1 0
18,710 18,710 00000000c8332e192a4be6bafc17dab8c6bcf2c4d82135dd5bc2ff370c361e66 0.00 MB 1 0
18,709 18,709 0000000023210d57940a779cd0fae028ade3e8907b01d9c76cf79c6c6c507e5c 0.00 MB 1 0
18,708 18,708 00000000a38e093375e7b35477512dae3173b515dfa4304043db002ca3663464 0.00 MB 1 0
18,707 18,707 00000000e48be783058d2e82fe28a7dda24540ef79a5835f852cb5c54b6f7ab2 0.00 MB 1 0
18,706 18,706 0000000011e0d1b7d2cac81d000a6489b26f203151b5cd3255a48432f515939b 0.00 MB 1 0
18,705 18,705 00000000e6a34bbae8938b88bdc6188896cf6144eee998fd277b2e7d5cc308f2 0.00 MB 1 0
18,704 18,704 00000000f39441ef0aee4c1f11e3e83005f2fbc512451c35ffea96a8e2ab7650 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.19 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,170.99 GB sent, 114.31 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.