Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

6,245 transactions (2.13 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

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

Blockchain Blockchain Refreshing

Tip: 910,217 (880,287 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
29,930 29,930 00000000924f4db21e864df0d9ebb51a530fc5ec1afe2244736e91869d627c04 0.00 MB 1 0
29,929 29,929 0000000033c368df7b2f70eeb1d57674c6cfeacbdfa632fa05ad0e09041912fb 0.00 MB 1 0
29,928 29,928 000000007b32650df297239be3756e72c4b4a7da7f4e55d12fbe538b145b82f9 0.00 MB 1 0
29,927 29,927 00000000175760b604c3ddf2ac9cadc5a9b32ea575df6bcee47eef319a41f362 0.00 MB 1 0
29,926 29,926 0000000077fba99871193529b4120a28d189192c5e982d1b9d590089e15365e6 0.00 MB 1 0
29,925 29,925 000000005b93b3fa8c3674835010ad447f1cd03a7e526081678d6dd0f5ae0711 0.00 MB 1 0
29,924 29,924 0000000040d785ccf76794ec79e88ab3bbbd1ee64082115b382391db01a89055 0.00 MB 1 0
29,923 29,923 000000003e7311b5bca71f5457a9b42b0bb6717f180803c0cbf3a73a2b322a3b 0.00 MB 1 0
29,922 29,922 00000000269ab83401d0c9a00061f3faa31ad13d6d6ae40d0d34d7af544defbf 0.00 MB 1 0
29,921 29,921 000000004315d801947197029859c4fc177cdb0edd9bb49e2c67330ba3041a38 0.00 MB 1 0
29,920 29,920 00000000b123cae347074779e8e12feefac21cc08d5048e729be3bf00e9f773b 0.00 MB 1 0
29,919 29,919 0000000000167a0ac1681ac3ad6d085ac5e6c1450a5420f59bb6d3843a5322d2 0.00 MB 1 0
29,918 29,918 00000000f1555824a08636ddcac6c909edbf4fef772a789ef5df086baddff8b9 0.00 MB 1 0
29,917 29,917 000000006bf6af6984944c1a2f8e4a4ddeb92117eae206a5f99401851c80c49f 0.00 MB 1 0
29,916 29,916 0000000090460659d35773c160180c86e8c4d9dedf3c255bbb66f844bd6b9352 0.00 MB 1 0
29,915 29,915 00000000675ad927143afc095e13e751c765dab48666d2bd18e2aa7af33959b0 0.00 MB 1 0
29,914 29,914 000000000f02ae6ef60c7cb10bb7e2b22d38e0d61d9afea51f8deb287efd14a8 0.00 MB 1 0
29,913 29,913 0000000070035f64aeb81fe960c60470a5be5560f61037e68f7a0d7842eda193 0.00 MB 1 0
29,912 29,912 00000000eec1fde870b8e8f3c2ba8d1ca0d7ba5e99ebfd128f4a7e0144b57b35 0.00 MB 1 0
29,911 29,911 000000004fd20411a45f79860e2f66c88bb30627bdf2eb9f6d18666de0fa70a9 0.00 MB 1 0
29,910 29,910 00000000392f1989fbcdc39cd3ac8582377647fdb7f49e4e9cd4441086a78e62 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.80 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,199.64 GB sent, 117.61 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.