Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

7,066 transactions (3.07 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

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

Blockchain Blockchain Refreshing

Tip: 910,183 (849,193 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
60,990 60,990 000000000167dada34b779c60f315265bfb1f9a918db3fd46fdf9b9ac5aed872 0.00 MB 1 0
60,989 60,989 0000000003abfe9bc3b1ffa041ef8762a0bf4eeacd22d7e4a0bae7103f833a9a 0.00 MB 7 0
60,988 60,988 0000000003f4c841cc9f28d2fea6c01110532c3fff0f6e7dc4d2c8098aaac941 0.00 MB 2 0
60,987 60,987 000000000b247e5b96483f651811e20546c2f76968dc7ac91463dfb00e2bb055 0.00 MB 1 0
60,986 60,986 000000000789b65640422e375687f8c0c85816bfd6f527491d62ce7b4ef1f9e4 0.00 MB 1 0
60,985 60,985 0000000009625b3164f9dc2c6e37050e4a84eaa38b35736ca0f889a6b4446011 0.00 MB 1 0
60,984 60,984 0000000001fbf8d089376924c27496845a91816de4281e31d66d55f244530cc8 0.00 MB 2 0
60,983 60,983 000000000df5991aed5c474b9e90260926603043f338c2031d73be3a9334fffe 0.00 MB 2 0
60,982 60,982 0000000000506b5bafe79bd033322169c1f9c2785b23ebdbf685cd46c82dc644 0.00 MB 2 0
60,981 60,981 0000000009c2bf44623f1f58f717d066fac7afe256384d667d2c7e8da31cb8ea 0.00 MB 1 0
60,980 60,980 000000000b418fbec8d4fd3663ad420c59558f82b37b2404d77e42875e1eea5b 0.00 MB 1 0
60,979 60,979 00000000037497c6994075768deae816bb26a21fabac7184506188368bbb029d 0.00 MB 1 0
60,978 60,978 0000000006c091075e20275e53d04b974ddb955196276672e0a02ba8ae5a0b4d 0.00 MB 1 0
60,977 60,977 000000000bac55c0347c92f2d4a08dc51ac6e1021ed06c0909c735f460a74fd4 0.00 MB 1 0
60,976 60,976 0000000009f3f97f56dc4934c2ad7ecc602299908b61f9e7a8353bc06d7fd17d 0.00 MB 1 0
60,975 60,975 00000000084cac3b36f7a7e817026ff7ce79e604f82977e5220f3ab086d2b335 0.00 MB 1 0
60,974 60,974 0000000004b7f582f1d5f64c7d66c2ed04f59dc48b92a49ed5060bfcf8d906d1 0.00 MB 1 0
60,973 60,973 00000000081ea2c31e6d6b9d0ec376fceebc2a758dbd683cf934e3f2c7bbc136 0.00 MB 2 0
60,972 60,972 0000000003202d4c8503420dc496e43e093c31a97d0ff693f47d6a7b3892fe8e 0.00 MB 1 0
60,971 60,971 00000000007135940572854b059b47fa3886d89a68a6415e3101b953cd3d8fb2 0.00 MB 2 0
60,970 60,970 000000000d8f7cf5fec39ec74f711cee355ca76e3fa18809d645b549ef4543b7 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.73 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: 2,194.97 GB sent, 117.25 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.