Explorer IconExplorer

Memory Pool Memory Pool Refreshing

3,299 transactions (1.75 vMB)
  • 1 sats/vbyte = (36 blocks)
  • 2 sats/vbyte = (5 blocks)
  • 3 sats/vbyte = (4 blocks)
  • 5 sats/vbyte = (2 blocks)
Show Random Selection Loading Transactions
Max Size: 8/200 MB

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,247 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 1,121 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,246 (820,691 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
88,555 88,555 00000000001db893f721499a9b3b42ef2af75edd7e42084b086e04a569bd0d92 0.00 MB 3 0
88,554 88,554 00000000000980b28398a1e70bf4667bd81ff886d94af3e05aaf8a7a6bbd2b5b 0.00 MB 3 0
88,553 88,553 000000000013be4ffdbe85509e6d7c3e322d6673f3607f4570662c216a92f57c 0.00 MB 1 0
88,552 88,552 00000000000c53380c7faf76d9decaebbc8097acbb2b2163b6d01ac87d5c07db 0.00 MB 2 0
88,551 88,551 0000000000144b3b64c2e1abea74227f8dd98caa7964afe226614f8b076f9abd 0.00 MB 1 0
88,550 88,550 00000000001add3db44e69fe38162001ee21694da049ed38477ce413ea25609e 0.00 MB 2 0
88,549 88,549 00000000000c0cd4cd89610ef45a0132e8cffdbbe1ecf0f07fa36b1499da811c 0.00 MB 2 0
88,548 88,548 000000000004a268f79801be03ae8c08eb2e64bb949c60c4c5c4ed506972f8f7 0.00 MB 1 0
88,547 88,547 00000000000fa6a087cf68af23006858265aaf9fe7dd8b9a678c89220eacc847 0.00 MB 1 0
88,546 88,546 00000000000059525919dbbd65d057ddc3d69a0d1aeb58d0d6592a94665495e6 0.00 MB 1 0
88,545 88,545 00000000001e5238bed4e279f201f0eab84a0e6d6ceece8eadf2183b41c78cb7 0.00 MB 3 0
88,544 88,544 000000000007ebc68dff2b250624f2bc9b834018331bb2be7c819e940f251c24 0.00 MB 3 0
88,543 88,543 00000000000778695d386f74247227489a08498af89016739e4b7010236d6e7b 0.00 MB 2 0
88,542 88,542 00000000001142f09b9561d3a94ce1974405a59a0c62eed242226d83d310dc45 0.00 MB 1 0
88,541 88,541 00000000000cb2ddda5f25a6e8fc4e4a3555d5a2e22242fa02bd4e4a5ab7406e 0.00 MB 1 0
88,540 88,540 00000000001974da9c6165ed7c2ab4a0539792bdf56c4029616131e56b4d5876 0.00 MB 1 0
88,539 88,539 0000000000126299bfcf8323b451fb5bda50a101e3bf7e17e7bf95e5b685f784 0.00 MB 3 0
88,538 88,538 0000000000114a53fe5d62ae9c77895d760b923e9f6caa2be29ede3d39c5c70d 0.00 MB 4 0
88,537 88,537 00000000000c65b053925b2b98be3bc3faf78529df5422fd4fd4be46b564acf7 0.00 MB 4 0
88,536 88,536 00000000000d41d51fb9ab127a302f7fc8b7be41ba0140213d4d297c65538bfa 0.00 MB 1 0
88,535 88,535 00000000000f6c950b62ffd167f8b12c67546ed0344c4499bfe7bafee77e5a69 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 771.99 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,024.52 GB sent, 107.93 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.