Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

2,472 transactions (0.77 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,654 000000000000000000022cb30000000000000000000000000000000000000000 ago 0.77 vMB 2,453 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,653 (841,835 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
68,818 68,818 00000000001fcfa3c2b735505909161a2e1c9aaecbca4dbeaeadd28c17dbf747 0.00 MB 1 0
68,817 68,817 0000000000288da0b295ba7574898cec2f4fb1025ced07793939c0916e3d4b8a 0.00 MB 1 0
68,816 68,816 000000000135acf2f38bae6e1f96563ccd1540c3eab14db40b3c730e577f2681 0.00 MB 4 2,583
68,815 68,815 00000000009bcb7c9b880ef8da749cd3e27603446d2e2fca58874908e5a710e0 0.00 MB 5 1,939
68,814 68,814 00000000002187319c60b2a596a38abcf45eb7cfadd6997689c24f4a28e87614 0.00 MB 2 0
68,813 68,813 0000000000c8284532a8b1e7648a8b029fa18b013c9ba47e653f68780aa337b3 0.00 MB 3 0
68,812 68,812 00000000012068fb79c87642ae3f7dbc2c90790356f8c13b4257577b763c5a52 0.00 MB 2 0
68,811 68,811 000000000070232df4ce44595b9a95031d161970feec7ef8aad15b4649f69409 0.00 MB 1 0
68,810 68,810 000000000069a9a320f87a23aa8e876c3183b087c7d23536d7e1466cda91d815 0.00 MB 1 0
68,809 68,809 00000000002d9cc571c71cfb6ee52730bc2e275bb0ff5768b37d886ac64cdc1d 0.00 MB 2 0
68,808 68,808 000000000066b5aa2f3212ce0b1f51360ac9642d116a538a015ce388c507be40 0.00 MB 1 0
68,807 68,807 00000000010a3a1a963615b3c0ad6389150ed1df5a7bdfb231eebac5e656c88c 0.00 MB 1 0
68,806 68,806 0000000001405c232b4b702f730bfb118c85ac163f411b65fbd491d2fb223ff1 0.00 MB 1 0
68,805 68,805 0000000000f68cb6198460a3d8e6b2ffc3b05f67d8aa706bc370a1e540277fc8 0.00 MB 2 3,861
68,804 68,804 0000000000988109595568b4e969ea91a580fa4314f99f7f4a45a3550372bff1 0.00 MB 4 2,583
68,803 68,803 0000000000cc8c783362629757dbd0510f37c64032553aea5bb3b13a4651ab12 0.00 MB 2 0
68,802 68,802 00000000000af8caf7c9602f93361e6d03fb6844e4e417ceb55d185513513257 0.00 MB 2 0
68,801 68,801 0000000000eae65ff451a5a7a1c2b4d8a7ad7c56572c75dcb038048c0909c220 0.00 MB 2 3,875
68,800 68,800 00000000003515086581c50fd2611642776439720c647aac9b8f6d600087f7f6 0.00 MB 1 0
68,799 68,799 0000000000496060c07a0b7cdc9b3b81398074aa14a6e9d4fe52fd9d0be13937 0.00 MB 4 2,583
68,798 68,798 00000000009198998a385934ed94aad7d4f3522c494071326c0841d3da4da20e 0.00 MB 3 0
Previous 10 blocks ↓
Total Size: 774.58 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,280.03 GB sent, 121.51 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.