Explorer IconExplorer

Memory Pool Memory Pool Refreshing

20,608 transactions (6.03 vMB)
  • 1 sats/vbyte = (36 blocks)
  • 2 sats/vbyte = (9 blocks)
  • 3 sats/vbyte = (4 blocks)
  • 5 sats/vbyte = (3 blocks)
  • 6 sats/vbyte = (2 blocks)
Show Random Selection Loading Transactions
Max Size: 36/200 MB

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,230 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 4,009 6
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,229 (874,471 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
34,758 34,758 000000006d80c7af876c0fadb6cf8004b7dcfdc1aee5b3ffb00614ccd8230a5f 0.00 MB 1 0
34,757 34,757 0000000064f46e66ba2c0c9cb0d02bd49482e60e1859d9d7cab53c314138c302 0.00 MB 1 0
34,756 34,756 00000000c02df7987f0a1ea93d14bd9ca777d5325c26ad3d8b52e758ef241240 0.00 MB 1 0
34,755 34,755 00000000ad3700cb03d240956ee696ebeb228c3258ab58c52bdbf04bfc6c5676 0.00 MB 1 0
34,754 34,754 00000000098295c83848600242d36b8a266626c07c40e4326db42f204d167099 0.00 MB 1 0
34,753 34,753 0000000034c2b448898216dd60e13e9ec5e637be65b5565d0d4902bdc618665b 0.00 MB 1 0
34,752 34,752 00000000367220a9d572b9f8d214b03b2ab5354af68c2b31f40d062c475f577b 0.00 MB 1 0
34,751 34,751 00000000b44d11d1117966c8048b826d1da83cf9c1e90b9482feed78b4310900 0.00 MB 1 0
34,750 34,750 00000000577e1f5bce9d15c24c407e9f24dfd5f6b34072be530c4bd807010d2f 0.00 MB 1 0
34,749 34,749 0000000082dfffced8950c9679ca9009da085f13f3c72ddea107d1d40b4a9707 0.00 MB 1 0
34,748 34,748 0000000046b0e2c017ffa1be65fa7727c8a5b97796a3ad5a43725ae9c3de50df 0.00 MB 1 0
34,747 34,747 00000000543143ca02466d627bc580d80cc7c794bb19fa86ae5a3c766b034395 0.00 MB 1 0
34,746 34,746 000000008639da633c618545eeafbd4976c2170f3584cfebabfb14a503a7f1c1 0.00 MB 1 0
34,745 34,745 000000008404b77421d7826bf4271bf471c7cfcd8c061ad0aa60d0078db258ce 0.00 MB 1 0
34,744 34,744 0000000019953a7063429278af787b75f4486674751190c74272f8e809a150b4 0.00 MB 1 0
34,743 34,743 00000000a00989d28707207817f58749e59f921d093bf9dff7d62b7ffa2f93c9 0.00 MB 1 0
34,742 34,742 000000002e8f4534ca5f439a0ef2980bb3707c38aa51ed6909ea735e97acd76b 0.00 MB 1 0
34,741 34,741 000000007d2d39e1c70678a44fada2c62e945bcbf8c17bd8dd2468a4330bfb23 0.00 MB 1 0
34,740 34,740 00000000ad3311b9952f1ea2a15b3ae50b7492183a13debe9ec0a2e09905ebb0 0.00 MB 1 0
34,739 34,739 00000000191722d2e6601b90115570b7b883629c0cf05e1bb3e861fe1d0d622f 0.00 MB 1 0
34,738 34,738 00000000ac482c8090ff5d002000ad536dc604335abfeb6f2081b31e2b239dec 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 771.96 GB

Node Information

  • IP: 162.120.69.182
  • Port: 8333
  • Version: 280000
  • Subversion: /Satoshi:28.0.0/
  • Uptime:
  • Connections: 11 outgoing, 114 incoming
  • Data Transfer: 2,013.57 GB sent, 107.76 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.