Memory Pool Memory Pool Refreshing

7,080 transactions
11.46 vMB
Show Random Selection Loading Transactions
Max Size: 63/200 MB

Estimated time to get mined based on feerate:

Feerate Blocks Time
2 sats/vbyte 2
2 sats/vbyte 3
1 sats/vbyte 6
1 sats/vbyte 12
1 sats/vbyte 144
1 sats/vbyte 432

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
883,736 0000000000000000000277260000000000000000000000000000000000000000 ago 1.00 vMB 3,446 3
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 883,735 (529,824 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
353,911 353,911 0000000000000000037dba3bff048099b667c81171de813527d64038842db96f 0.43 MB 809 26
353,910 353,910 00000000000000000d6a33351c345a6335f8f1d0c5ce6a722debe7d49a177730 0.10 MB 231 27
353,909 353,909 00000000000000000614225d5398eeab47d418c56af9edae52d70f62ca517387 0.47 MB 878 25
353,908 353,908 00000000000000000ba1b0b90781793eb404a750dde612874ae28407aa5540bb 0.37 MB 727 25
353,907 353,907 000000000000000016550079d11cbabd9b6a24898805d149ad2475702859fefa 0.41 MB 571 14
353,906 353,906 000000000000000016921bf6d525055b5a540342c2ad4a80903ed84e68141963 0.75 MB 1,576 30
353,905 353,905 000000000000000004ea44cfe7ea46384dcd80c19eb14671b9a376d4e4a5dbe8 0.75 MB 1,116 19
353,904 353,904 0000000000000000130c57441a3ba6128afdbecac3f19002909383df5def2877 1.00 MB 2,260 33
353,903 353,903 00000000000000000343bb69f015799dd1322d8c73e66243b3782fb65aed6cfd 0.51 MB 811 22
353,902 353,902 000000000000000015ceeba43b46bd68fc1a17a0b481f7f0bb5748a9f90bb22a 1.00 MB 1,889 27
353,901 353,901 0000000000000000013bced982aa38c9a1e4eeabfd038aad95821cbaafc6c2ec 0.75 MB 1,442 26
353,900 353,900 000000000000000004c6d49f2f147022933c3cb3b7fc29c7b57296fbefb9d422 0.75 MB 1,383 25
353,899 353,899 0000000000000000085b4849e2de66f76fe7c545d78c4cf1cb1717bf90a9c4ac 0.37 MB 495 19
353,898 353,898 0000000000000000041f54161e2b3c0b3a11e4e8e1e85c5c9f2e55c158d54b4d 0.80 MB 1,741 29
353,897 353,897 00000000000000000bf90e2203deb14efc188c44e6b7900d05ff529abdbd6ec2 0.47 MB 901 27
353,896 353,896 0000000000000000014fbb92e132354a1f6a7cfbcf3173da383e6a0de3c3a851 0.19 MB 302 19
353,895 353,895 000000000000000009a9c486dba6d0c933119df4a5a46c82679f266fd6ac27da 0.08 MB 256 42
353,894 353,894 0000000000000000117ae93bfe3b1dba24666ff668b5925e64600ca0b84b89b0 0.10 MB 213 27
353,893 353,893 0000000000000000167948e7ac4521c64dec7d0473e511052e26413cf568d256 0.29 MB 349 19
353,892 353,892 00000000000000000b071675162a5e51e5dca967a8019e9d14a6b673faef9d76 0.40 MB 746 30
353,891 353,891 000000000000000010380dd0947fb2730d81bbf9be7085c9fbc12c830123d350 0.51 MB 721 17
Previous 10 blocks ↓
Total Size: 725.96 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,341.26 GB sent, 92.38 GB received

Notes

About

This is a basic blockchain explorer for exploring Bitcoin data.

The main features of this explorer are:

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. Electrum Server. This is used to get information about address balances. Bitcoin Core doesn't keep track of addresses, so you need a separate database running alongside it to store address balances and activity. This information is retrieved using the Electrum protocol.

    Electrum Server is what wallets like Electrum and Sparrow Wallet use.

  3. SSDB. I'm using a simple key-value database with a custom script to store the spent location of each output. This allows you to move forward from the output of one transaction to the input of the next transaction (if the output has been spent).

Limitations

If you're looking for an advanced explorer that offers more features, try mempool.space instead. But if you hate beautiful websites and only want to dig around raw data quickly, this explorer should do the job.

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:

  • 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.