Loading Tool

Explorer IconExplorer

Memory Pool

2,012 transactions (0.70 vMB)
  • 1 sats/vbyte = 2 blocks ()
Show Random Selection Loading Transactions
Max Size: 3.98/200 MB

Candidate Block

Height Target Txs Fees Size Avg Feerate AFR
912,412 000000000000000000022b910000000000000000000000000000000000000000 2,006 0.01739745 BTC 0.70 vMB 2.01
Show Transactions Loading Transactions

Blockchain

Blockchain Refreshing
Tip: 912,411 (879,747 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
32,664 32,664 00000000c0ac9b012e4173d24d801cdce6f466eff98811b3df63bf9acbef9645 0.00 MB 1 0
32,663 32,663 000000004c6a3b7a13e257501af1ecfa6e34d9cdbe0ee3e9e7124dcb0942a78e 0.00 MB 1 0
32,662 32,662 0000000012e18e604e9a06573e39b12a2b88b2421460e271d2d294839b32b55e 0.00 MB 1 0
32,661 32,661 00000000d013eccae958512bafc80676ee563c2e96a8a63add0d59563d8432d7 0.00 MB 1 0
32,660 32,660 0000000086352b7965f022a37de434a8a9366694c0757e756978eefe56d684c1 0.00 MB 1 0
32,659 32,659 00000000d45c9d4b51068bfeba2ba5b21f9eea4f7268cf6d2de2247ad0d02122 0.00 MB 1 0
32,658 32,658 00000000a50a2f17b053b6759e74fbd1a14c43cc5c7258d4ec69b8b3a972d1c3 0.00 MB 1 0
32,657 32,657 000000008a2f9a662f60d4a11a8c631fbd041e8bc66ae375207f3f47dcd6a682 0.00 MB 1 0
32,656 32,656 00000000a98d5931cab33e33ff48aff9d07ace775e6115c31608394e7f48d1cd 0.00 MB 1 0
32,655 32,655 0000000024756a36a5447053074526a54eba762d0a7123dac4f27e6f188b9159 0.00 MB 1 0
32,654 32,654 00000000a8ca119413f14850695334afbfd55f1dc1ff3b41eae98f27cc5c4ba2 0.00 MB 1 0
32,653 32,653 000000002f3aa1265ed94e42bd5cb2a3a9a9afa966f7594b62edeb7e530d6420 0.00 MB 1 0
32,652 32,652 000000009676c97f4c918ba9e1f53d975a308a5c38c45c5ce35f7d9ed12c9ff1 0.00 MB 1 0
32,651 32,651 00000000662ce55915f7af55bae3d7e6f1c06fd6430e83f7b9d17e6f6919dcc3 0.00 MB 1 0
32,650 32,650 0000000082a8a3c3b71c81cf910a1a5c72c025906babeb0492cbf1f85b164bde 0.00 MB 1 0
32,649 32,649 000000008d8bf142c7ef3058b16e2e75d5c9268975f83af6099e6baac3f937ed 0.00 MB 1 0
32,648 32,648 00000000c9a47602af2d6bf65e8723b621947486a442bb7a2c8f160691769160 0.00 MB 1 0
32,647 32,647 0000000096c542c509e47b78b25d4d3a46c837e8b30011c65f0c2d7c547c484b 0.00 MB 1 0
32,646 32,646 0000000072e767e1ccf2b1ac0c2ec016b97878238dd21a61e1625efcc311a527 0.00 MB 1 0
32,645 32,645 0000000091b6eb24e8ad8b0b701cb312e2b8d1aa7d30a79effa0ce16ccdc9c56 0.00 MB 1 0
32,644 32,644 00000000220b38aef3b66d9ecc9877360b3ed966dd088eae5e3947cb8477d3a9 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 777.81 GB

Node Details:

  • IP: 162.120.69.182
  • Port: 8333
  • Version: 280000
  • Subversion: /Satoshi:28.0.0/
  • Connections:
    • Incoming: 114
    • Outgoing: 10
  • Data Transfer:
    • Sent: 2,551.66 GB
    • Received: 137.37 GB
  • Uptime:

Notes

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