Explorer IconExplorer

Memory Pool Memory Pool Refreshing

5,319 transactions (2.47 vMB)
  • 1 sats/vbyte = (36 blocks)
  • 2 sats/vbyte = (5 blocks)
  • 3 sats/vbyte = (4 blocks)
  • 5 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
909,246 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 2,528 3
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,245 (885,734 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
23,511 23,511 0000000005ff0e5410ef9f4032c1c0495449748e33d5aafb57b39a71a4e08dea 0.00 MB 1 0
23,510 23,510 00000000d696ea3635d3d30f946b7100af7a927c471b89bec8ef0ba9a31372fd 0.00 MB 1 0
23,509 23,509 00000000951d0621131c05cfd3b8a154da65c37b98e94ad3c7b304c0cca1465c 0.00 MB 1 0
23,508 23,508 000000004f5239cd99ea408c74e2bc91deb9ccf9d08560db3f843cd28484b808 0.00 MB 1 0
23,507 23,507 00000000571173e989f331dad68af59d68ca1c320e516dc460e86bfbd715681b 0.00 MB 1 0
23,506 23,506 00000000653c74065d011eaebd5f89053d15c55c0df81ad894ecfd4eccdd5882 0.00 MB 1 0
23,505 23,505 000000003fce1ae3cb49deb52e89ace09404570c40c0009c0b3feec182890824 0.00 MB 1 0
23,504 23,504 00000000f6d4b15147348e0f19dcde6a0f5c2eb4abffa4893eb79cc676107a07 0.00 MB 1 0
23,503 23,503 0000000064b877feb19330cbaa11967c7c3da72165106465f64abd4efd48f37b 0.00 MB 1 0
23,502 23,502 0000000033cf9a463d3caa4527ea7b51a71e6e821ac5a2b4a3d63b985f13cdf1 0.00 MB 1 0
23,501 23,501 000000006567276231ba29858357853105d4da8f34ce592dceea6c269be353b2 0.00 MB 1 0
23,500 23,500 0000000056f7036d31b8f919075b91118460197edf852c2df61f267ea0ebcf5e 0.00 MB 1 0
23,499 23,499 000000001959c479fbb36af8361053655e9327719d2f5ff7b513a5c3e60a30d0 0.00 MB 1 0
23,498 23,498 000000004302b3be44cfb9491c7402b4b4780f8ebde6f0d39dbc3a729705f96e 0.00 MB 1 0
23,497 23,497 00000000f6074a81d7ad8515cd6a2b042b0b16d451bda772d51133600241f793 0.00 MB 1 0
23,496 23,496 00000000e61fce75854b12f8a2d2aa46f3c5a2a64a9c372491cfc0a66c8b6e87 0.00 MB 1 0
23,495 23,495 0000000088741618f31d5b812a04d52f5e5bdc6589932322f4944f14fded85e0 0.00 MB 1 0
23,494 23,494 0000000030334e1dfb3e88eb2750ccc7af41d21095e99295fa9f99262171a793 0.00 MB 1 0
23,493 23,493 00000000a3e59960c2dc6be4b57479af2e6323e4d9f503d17379935220504ab4 0.00 MB 1 0
23,492 23,492 000000000ceb3e1b72a6e546da66600265a5a190f3569ac5dc535afa99fe8512 0.00 MB 1 0
23,491 23,491 0000000098b4a23838e0f22302d6b0f4f3691a72ed9e868805aa48dafd3690dd 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 771.99 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,023.50 GB sent, 107.92 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.