Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

6,151 transactions (1.86 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,102 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 3,791 4
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,101 (845,368 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
64,733 64,733 0000000007764c2463e7b2c104830b335f8f033b96a36cd09af20274577cabdc 0.00 MB 2 0
64,732 64,732 0000000004ab9cc5394f3983b5b8f90d0af730c5db58356ecd6da959b4392f1c 0.00 MB 3 0
64,731 64,731 000000000216224026bf9e331adae517301325809bda3e0851149c572a40430f 0.00 MB 3 0
64,730 64,730 000000000870e79dbaa8380494a0c93fb0d0fb8442f6f1600ab126102999c865 0.00 MB 1 0
64,729 64,729 0000000008b34044775a8e221511ccaaeee04571fe63dc3b7d5ac997f860e615 0.00 MB 1 0
64,728 64,728 00000000057a0d23cbfaa264cbf353ce4d04d8c0e5b6e34eba11b8e3be7ff703 0.00 MB 5 0
64,727 64,727 00000000027f0d9469e314599d57e33b67aa65ebf71b12171ce402a3dc7f6ec1 0.00 MB 2 0
64,726 64,726 000000000adbc424316ff286fc9615c777a121f4a26f2f04c3267edc06c6bbd6 0.00 MB 1 0
64,725 64,725 0000000006ffcacb9499f369da3cb2a941690f4f4fbb7b6e8d8bdb4a106f0d2f 0.00 MB 1 0
64,724 64,724 0000000009dd019e81b60a0eabf0a09de2859a6983f56cba10db58625bc274eb 0.00 MB 1 0
64,723 64,723 000000000001610e29282ac3a1f43b05cb2b7bda52cac07f4a046fe04e5bceeb 0.00 MB 1 0
64,722 64,722 00000000078ee1ab01371de79b2d93e7fc50dab3eca6f05fd956f30a2bbbee8e 0.00 MB 1 0
64,721 64,721 0000000009eedbd735b2bb65ced2f8d6481bbe6b5cbefbd720e3d27af7742d30 0.00 MB 2 0
64,720 64,720 00000000029076cd9c0e7a2e68c575698811226d8366d1fdc2560babacfcb490 0.00 MB 1 0
64,719 64,719 00000000004cc0ac022500bf4b072db28c9a13e5312942ca21752acb5f2ec874 0.00 MB 6 0
64,718 64,718 000000000619f0150b0f86c09d755676ad72361d196abb43aeb6645f2df5f8ca 0.00 MB 1 0
64,717 64,717 0000000008095cc27f878452ab77f0daf33d766a4183430d401297d51bfb45eb 0.00 MB 2 0
64,716 64,716 0000000004c4f13b319b8e8b2a15070ed1f050279540793e19da210431347ea0 0.00 MB 1 0
64,715 64,715 00000000074289354c4dc2e9031b9108fc0319d7f1b9b8659984ff876ca368c8 0.00 MB 1 0
64,714 64,714 0000000006ff322decd2d099b65fad5c55a9d43793f97f060d3c003c3159412b 0.00 MB 1 0
64,713 64,713 0000000007624bf5133cae24086252c72387b0acaf2ca51c1a15e712ade75605 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.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,188.34 GB sent, 116.39 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.