Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

505 transactions (0.16 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,127 000000000000000000022cb30000000000000000000000000000000000000000 0.16 vMB 498 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,126 (846,069 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
64,057 64,057 000000000a8327d6c97a0acb78d640f8298928ff5fbb2ba08f0c16efe707f04b 0.00 MB 1 0
64,056 64,056 00000000097818c5d4c562102cb0df174c5c5b5aedb5cd59dd1e2eac060d1042 0.00 MB 1 0
64,055 64,055 000000000875b10b91e404aaf27602f508eaf5209249b9e5d7088d9a9c70e52f 0.00 MB 1 0
64,054 64,054 00000000033750aa477c845a65d0acb5efbba010b1069eb3c67fbd1399b85ced 0.00 MB 1 0
64,053 64,053 000000000b497f9cca8f3742be9bd12248f90f226166d0127f1fadf1499d6db5 0.00 MB 2 0
64,052 64,052 00000000023c640002c5966d8b965ba42970acc38ee18e4660f7215d46ab02a5 0.00 MB 1 0
64,051 64,051 0000000001eadabd5e0e0b0f2251c68a3b7c879fd41a3b9d6d8181e0c378bdf8 0.00 MB 1 0
64,050 64,050 000000000b946cea184239a01886a140f27fbee2658697956a2949a8472972f2 0.00 MB 1 0
64,049 64,049 0000000001224c8acd46cc41ab4af0f947c8ac7d5ab24e0dbf625aad22880bcb 0.00 MB 1 0
64,048 64,048 000000000ac534d7c2fd7ea7502dd97a9853bb28ec5b387edb2c8ab23f7964ad 0.00 MB 1 0
64,047 64,047 000000000b037a9c785cf46ea07f558157e50c1abf7419b1fdd9b1fc68b7ee9b 0.00 MB 2 0
64,046 64,046 00000000071de9547bfcbe4b38d9471a7ae09cac4317118e1a72cec698f44405 0.00 MB 1 0
64,045 64,045 0000000003f529cf2ee452bed55a26945351babbb947a98ea77266e6acd91060 0.00 MB 1 0
64,044 64,044 00000000094ad2a0457865dbba50ea54f93180daedb85a3962e80c55c46bb4a2 0.00 MB 3 0
64,043 64,043 000000000ca3d92879b553d2413ce7c49e82222fde0e4674c415f0a47edda797 0.00 MB 2 0
64,042 64,042 0000000005493090809800af19bab0b46fa37091b5ba68d6ec1eca817399ccb0 0.00 MB 1 0
64,041 64,041 0000000008504df839346ed729bbbfde8ed3ee0fdd517fd1c650a263248f5fb3 0.00 MB 1 0
64,040 64,040 0000000004d69e5a1dfc732cd7fcddee261102d47553b4ba85c028eadd1c893e 0.00 MB 1 0
64,039 64,039 00000000046a566439407488d2ea50c9025ba6e4c7d1d54fe305eb65cd047768 0.00 MB 1 0
64,038 64,038 0000000002d1c9d12ae727a0da25f9c957d94d194b1a0fbeb77aa10b01753ec5 0.00 MB 1 0
64,037 64,037 000000000969a59da0f02098df06a5f54eef65e5e912a297944cc5e196da8f3c 0.00 MB 2 0
Previous 10 blocks ↓
Total Size: 773.62 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,191.26 GB sent, 116.60 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.