Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

6,530 transactions (2.79 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,876 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 1,870 3
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,875 (818,953 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
90,922 90,922 0000000000045d81db51979a03edd2902ba61b41dc12bc55ff65b675578bfaa3 0.00 MB 2 0
90,921 90,921 000000000002ed00ba79700bcadaaeb0b70d3245066edb1dfb98f66daeb8d067 0.00 MB 5 0
90,920 90,920 000000000001187e7d7fce3eae05b5e81e2096aa7ae0b47ede5fa9b5574ca8a3 0.00 MB 1 0
90,919 90,919 00000000000d9106216948046a0b1d4a343ddabbce02be6124c9f8b0e7a56c8a 0.00 MB 1 0
90,918 90,918 0000000000083401830ddd86a2ae69902ce8df6be78e6b9e059f42e72a5d9e7c 0.00 MB 1 0
90,917 90,917 000000000003e4ec698e1d680a927c483d1e08a0cb16fc8f9d4745fdda9b67b6 0.00 MB 1 0
90,916 90,916 00000000000c0a3118eb2049ecb251b64893f9eb683917349aa0bee917b00131 0.00 MB 3 0
90,915 90,915 000000000008b8a5aa0b034c38f9160512496aeba3e918fdf92a9b2f7a6d0999 0.00 MB 1 0
90,914 90,914 000000000006887c3639dd300cbaf3712b862f1fc0ac546a0c76825a0214def7 0.00 MB 3 0
90,913 90,913 0000000000011f76c0a981f6fe30e77cf8e6f66cde83453b6d28e1aeeaf6e819 0.00 MB 1 0
90,912 90,912 0000000000097e4eb6433ff0fa5d5a055dfe41c931e00a44007f2188559c71c2 0.00 MB 1 0
90,911 90,911 000000000007ffb5f6f500bb425f2d5bd35286a29ce82938ba65916621cf2f51 0.00 MB 1 0
90,910 90,910 000000000006fa9d0e01382d82bec2562af2fd6d11424011ab40ab7cd30f00ff 0.00 MB 1 0
90,909 90,909 0000000000062e07bdbc58a67bc5c91b48002ea61914f0c29f3e2a69f644435f 0.00 MB 2 0
90,908 90,908 00000000000a009cf6234f24e3d750bc537037e5f106c8be76a8b93112f81608 0.00 MB 1 0
90,907 90,907 000000000002a9a64a616a4e323938f2d43f1de491019dd5dba692e70e4ebc5a 0.00 MB 1 0
90,906 90,906 000000000005c0262b64ae620d309146dd762a7568bbe5e7107bd4d9369df49d 0.00 MB 1 0
90,905 90,905 0000000000033c4acaa768ceab919cf960a40912162bfa7efc43aaf9b78892eb 0.00 MB 1 0
90,904 90,904 00000000000a6d875f59d2baf58fdc90c2a124b935868e0421d8146f90e71c00 0.00 MB 2 0
90,903 90,903 0000000000072b5f14b60080d07370e99b40b4bbcb217684b6b16fd3149a47e6 0.00 MB 3 0
90,902 90,902 0000000000010fc2b59fc47d3b97db6e5c394c98d6b36618f24179adf9bf275e 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.16 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,169.17 GB sent, 114.21 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.