Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

5,126 transactions (2.40 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,914 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 1,749 4
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,913 (851,221 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
58,692 58,692 000000000095a6745aecd06fb2c73185583c040f0c4fb081c3277394e7a998ec 0.00 MB 1 0
58,691 58,691 00000000068eea1395267f6263079a7a6abf39a474efc449a5378306a0a6996d 0.00 MB 2 0
58,690 58,690 0000000003ff925e165e36374cea4d9a16d0b8ff7cad9367bb74478a94ea11bd 0.00 MB 2 0
58,689 58,689 000000000caf72ab2148fc3af698c8f3a70d96da2cc260ab46d9ee12c7f2d084 0.00 MB 1 0
58,688 58,688 0000000005a78f3163a1463a9dc8ddcb603f3836d3db40cc3e60393543de7f7b 0.00 MB 1 0
58,687 58,687 00000000070a8738fffa9280bc43f2c42928b75202931586db13c629c7a38a0d 0.00 MB 2 0
58,686 58,686 000000000e64c4b4c74669340fc4c9a844a2705fd271af2f2ee5aa7ca121eb92 0.00 MB 2 0
58,685 58,685 00000000036eb3945363709ceb57198dc569ca6077ddcc0ae523362dc4d5e7c8 0.00 MB 1 0
58,684 58,684 0000000002174ddba304e6b0e459663fde3859f357f79e86db2bb2c4ba595333 0.00 MB 2 0
58,683 58,683 0000000008e20031df4afcf45c9c71b13b663008236accc63d2f68cd899b295d 0.00 MB 1 0
58,682 58,682 000000000322e2f43ab804da63c9316a94b9a36976eab66d6409d4a932e67a57 0.00 MB 1 0
58,681 58,681 000000000a506d9fd1b8f087ae13951400eaa3eb0e3686b93affcc022de02821 0.00 MB 1 0
58,680 58,680 000000000065fcf1ae66c847404948afcb1bca0c8c7b14d0cb63887e478604af 0.00 MB 2 0
58,679 58,679 0000000004fc7920997d7c3801d08e461b4a5fae8fb1570175fe6cb230c9b4fe 0.00 MB 1 0
58,678 58,678 0000000002d5f6e4944fec19573858da13425ff498d697850d963d0a83d587e9 0.00 MB 1 0
58,677 58,677 000000000daaf588f5570c9bfd1dd2f08695b3629382857602d244099d1c0d2a 0.00 MB 2 0
58,676 58,676 00000000025a0791a66fb62304ecd7398f4c5501a025324a1a286a37019fca47 0.00 MB 3 0
58,675 58,675 00000000091c125d0f596099db476c0d9ecf65ebb9a119b4e1ffa1a931b236a1 0.00 MB 3 0
58,674 58,674 0000000003aaa20f1357a5a27b94ebc8e8f936f6160c97902714fe4f4f0bb087 0.00 MB 2 0
58,673 58,673 00000000082361a8531b1f8c0f0648a20e9cabfead2b8314bc298a88be9238bb 0.00 MB 1 0
58,672 58,672 000000000525fe05e2c4026484e8e43689963e800ca547a18fc58e022d255200 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.24 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,172.71 GB sent, 114.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.