Memory Pool Memory Pool Refreshing

22,198 transactions (5.55 vMB)
  • 1 sats/vbyte = (36 blocks)
  • 2 sats/vbyte = (8 blocks)
  • 3 sats/vbyte = (4 blocks)
  • 4 sats/vbyte = (2 blocks)
Show Random Selection Loading Transactions
Max Size: 34/200 MB

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,197 00000000000000000002349e0000000000000000000000000000000000000000 1.00 vMB 4,170 4
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,196 (833,504 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
75,692 75,692 000000000009b929627927bf93c7f602a7d4903a7041325155e7beb2db0e9d50 0.00 MB 4 0
75,691 75,691 00000000001aa786705d06fa8a8ffbc5cd3d41fcba60c5bad6af4bc4d65b9374 0.00 MB 3 0
75,690 75,690 0000000000317b326791d1dc54a7f87bd98907d260ec7e33d2070db8a5d8c615 0.00 MB 2 0
75,689 75,689 00000000001c4eea829893dddd4cd8dd0d76d678ce6a5dc423b9020e28622371 0.00 MB 1 0
75,688 75,688 000000000062ed65b756c6ee4dcd6fa69a4afb5af99dd6126bc26899e6d18fae 0.00 MB 2 0
75,687 75,687 00000000002f7a4884f52b15758a98698ca3e910ea1a97ed074e8db64854543e 0.00 MB 1 0
75,686 75,686 00000000002ebce39a58fc7836a987ae25349eb20040ac15d02b35a644d01553 0.00 MB 2 0
75,685 75,685 00000000000e86004a153166fc0c7d176702300e6a5b87e56e03cb3eea3914b9 0.00 MB 1 0
75,684 75,684 000000000007d713002e7235d483504f8de7ff0e0c64f7e021e0e73e6ff3ddfa 0.00 MB 6 0
75,683 75,683 0000000000739e20373897e1c63d4e59766b1b6055181e6ad82fb311bc79c156 0.00 MB 2 0
75,682 75,682 000000000000e7e86597d639b86a6b37e2fba1405d914a2cf4b5408bb3be1126 0.00 MB 1 0
75,681 75,681 00000000006c334af16076c33598b243734078b485d818ed9a219555018ee5f5 0.00 MB 2 0
75,680 75,680 00000000003d24427de893c24d1f87e22938b890628c0dbd18bdd07dd5bbe686 0.00 MB 1 0
75,679 75,679 000000000038c14c64a9341b7bd9d227a9d93efc72aa886af9ede27d6b2798aa 0.00 MB 1 0
75,678 75,678 00000000001224410b3a19bbb77d0aed3ab436eb67f303fab964a177c47e3288 0.00 MB 1 0
75,677 75,677 0000000000666822ca8070ccfe42b07d3a9bd30cdd2bcb3cb16d3e51a6c31619 0.00 MB 5 0
75,676 75,676 00000000005202af66f0b8cada2a34985abcd65de7c4bce0b0433a356eaaebfe 0.00 MB 1 0
75,675 75,675 0000000000187077974159695b4c1d63927363b23be170ce31b1ca2ac20c50af 0.00 MB 1 0
75,674 75,674 00000000004c68f1065148abb8b0e46602778e3804a7795b565daf372cc6c9fc 0.00 MB 1 0
75,673 75,673 000000000075a0c68c94491e9b414a2326d32b46445ea6aafaab5fb5344eca74 0.00 MB 1 0
75,672 75,672 00000000001ae61c3186dd8f99fa0a9791f99f9b50171f248c6e3c8621d67a2e 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 771.90 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: 1,999.65 GB sent, 107.34 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.