Explorer IconExplorer

Memory Pool Memory Pool Refreshing

20,984 transactions (5.69 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,310 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 4,542 5
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,309 (872,271 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
37,038 37,038 000000009f5a085ec1ed4fcf9998368eb91c0b8a808a2b23b19b7b7533504151 0.00 MB 1 0
37,037 37,037 00000000b43e3fbec2c6302f843bf752479050223b03b7decaca8843ee90f6c9 0.00 MB 1 0
37,036 37,036 000000004f8c7f7649375f2f679b1688a17a20b2f9555189ac533976c6986c0a 0.00 MB 1 0
37,035 37,035 000000005444de31c504d7bfcf57cef53ca5071ff06762c9541ca4c861212f9e 0.00 MB 1 0
37,034 37,034 0000000090afc7702cb156fa8c92c400cfb61791219557c98fea6446aeb3ee61 0.00 MB 1 0
37,033 37,033 00000000b653cdbe256076d1847c40e5a3bd50378f766487f67550f71c0ca218 0.00 MB 1 0
37,032 37,032 000000001a348b03688bcc100246b2cfe411a59a35f36b15d4dbddabb55865bd 0.00 MB 1 0
37,031 37,031 0000000038a6a17d7caf276905246151bfa8e64839f1f29bbb9dc6be086dbf72 0.00 MB 1 0
37,030 37,030 000000000b3c06f4df2f31acecf58fe093a862a24702688349396394c885e85d 0.00 MB 1 0
37,029 37,029 00000000baa8768e63d03ab23c4694b4b97f7cbbf17bccc452d7bbc2f7e1829a 0.00 MB 1 0
37,028 37,028 00000000a5f7c3d3f75da65028965f8609b26c40325e810251a0d686d02e1edf 0.00 MB 1 0
37,027 37,027 000000000587589365a81c3f568256be9773d7d509be12346d37f705f5fe53a6 0.00 MB 1 0
37,026 37,026 000000003cf1f363af4027f69ada9e0a33d0078251b1fd0865de87164148ea1a 0.00 MB 1 0
37,025 37,025 0000000010208c9ba9a1a2ba26a21532d49ccb12f20c09e1fd0e49ff9c9081a5 0.00 MB 1 0
37,024 37,024 0000000091fb402a43662bdccdd7a308ff3d59ad9ed7a934f1f1e899b10d350f 0.00 MB 1 0
37,023 37,023 000000009a972bf520ef4f52df2e3c7ca325d8a53c5c0796c1ce9dc7ae596aa8 0.00 MB 1 0
37,022 37,022 00000000329db3d183820739759a4261d85bb9da62346568b3c896a4f65ff78f 0.00 MB 1 0
37,021 37,021 0000000004d3fcda99d5a1494df4a5b1e0b8fd503ad1221e67adae241ba91eb8 0.00 MB 1 0
37,020 37,020 000000000e1c92446141828a0028e33a6a265242bc3e664f6a93c62c3e64f92d 0.00 MB 1 0
37,019 37,019 0000000098ba1ec12ff923f8af33bc21f8cfa699136485e4ac032e9828e9fd20 0.00 MB 1 0
37,018 37,018 0000000086e89b388332135864a7821970866b1bf7ed6b7c4dee7aa3f6d02990 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 772.11 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,066.22 GB sent, 108.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.