Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

6,365 transactions (1.92 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,102 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 3,679 4
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,101 (857,009 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
53,092 53,092 000000000312a6f33b8946bf36961ea6ebeae5f5572a9c6fc5d972f2e2cf2717 0.00 MB 1 0
53,091 53,091 000000000b10fbccd69af2231780d1bd48114a6e69fa374f87de1c500f28733b 0.00 MB 1 0
53,090 53,090 00000000001c0c8e4518c53336b5dcb570809ad87fa5ff630440ee04edc74478 0.00 MB 1 0
53,089 53,089 0000000000b8b46b4572db8d5d937b7f79209dfd096f4bf53a0949a1f4bed1ec 0.00 MB 1 0
53,088 53,088 0000000001ce74c4b69817d2a2fb5d784dafeaa809cfc87cf9b5b2dffb70a8ba 0.00 MB 1 0
53,087 53,087 00000000088bc76e22fbdc3d5f2c815995d40ddf29e02eae37e8e5532fc32b96 0.00 MB 1 0
53,086 53,086 0000000001c681158e30a75e0ecafccd049aad0b591ca13931f85705e23d00a1 0.00 MB 1 0
53,085 53,085 0000000001c821871a8a297be7313ed3caa29102fdd83d0dd42213d03c913539 0.00 MB 4 0
53,084 53,084 0000000003ac06907bc55cabb587f36ae38332ce3fe68972ebeddc7414fd60f5 0.00 MB 2 0
53,083 53,083 00000000076a2a4922ccb8c9de626858909aaf1133f3c117f68e643b7724b9b6 0.00 MB 1 0
53,082 53,082 0000000009e5e19633b7f9c612240a1e0b4a83544ff4a8e87dd96293184353ee 0.00 MB 2 0
53,081 53,081 0000000001e7d10addd10694ff37bd754e2549e5ea34886f073c1ff603a37ff4 0.00 MB 1 0
53,080 53,080 000000000995046afcf5bdc8a8443efba2099d705c3ba10836501f27c28f4df6 0.00 MB 1 0
53,079 53,079 0000000005b9348b65e3eac79d79775eda464428b51362c2baf1f0ad6aa1474e 0.00 MB 1 0
53,078 53,078 000000000b23b23aa65af4ae7b77436189254b4fbbf823e3ffa0cfca65baf880 0.00 MB 1 0
53,077 53,077 0000000010396efd3233dec3b708d01e0b989542fc352be6034c67d537011412 0.00 MB 1 0
53,076 53,076 000000000f267318b02004263d97a4d92061c34f0355258cc56883952e03a79b 0.00 MB 2 0
53,075 53,075 0000000010d401752ec674b4b3ebfe4207bfce18ee6bd89a27a255f88cb943bf 0.00 MB 1 0
53,074 53,074 000000001167f4f2d49a02313ff53107cce0461a6483b2e4ab3432333b0fc1d7 0.00 MB 1 0
53,073 53,073 000000000dd534b4f9bf4d1565fb0e416305cfe8345a0c34052f11394264d71b 0.00 MB 1 0
53,072 53,072 000000000c73f53c9254eed8979671008f91ec7705f8ba8f09a9f4ec7541d417 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.58 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,188.36 GB sent, 116.39 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.