Loading Tool

Explorer IconExplorer

Memory Pool

1,102 transactions (0.35 vMB)
  • 1 sats/vbyte = 2 blocks ()
Show Random Selection Loading Transactions
Max Size: 1.96/200 MB

Candidate Block

Height Target Txs Fees Size Avg Feerate AFR
912,491 000000000000000000022b910000000000000000000000000000000000000000 1,089 0.00750343 BTC 0.34 vMB 1.99
Show Transactions Loading Transactions

Blockchain

Blockchain Refreshing
Tip: 912,490 (653,489 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
259,001 259,001 000000000000001dbaadb858f4f69c326c2ccb7fb6e570914d2744bce424a52a 0.03 MB 79 80
259,000 259,000 00000000000000169684a5a1760023e1c7481373f3488c3c21793ed4fb3b6682 0.10 MB 257 123
258,999 258,999 000000000000001b87d2420632c967ddddc6c84e27fd15638a2cde117ae59ba5 0.18 MB 47 18
258,998 258,998 0000000000000005fcd1d62600f480b5037437ae91d36df27a771fedf3e8b783 0.22 MB 475 93
258,997 258,997 0000000000000006232d041ea8d8c124078625597347ea156db7fa07082c11d1 0.12 MB 293 113
258,996 258,996 000000000000001f1418ecac03e1579b09b6ee58c77f7e40c5655cf2a279fa07 0.05 MB 93 85
258,995 258,995 0000000000000004d255cf3a6e8c9ed66ee772e7cae36aeaf15f84fbe484e314 0.15 MB 412 109
258,994 258,994 000000000000002428d1b0097137c6b5912fff1ad97e9c1078232c8a17d9164b 0.06 MB 145 113
258,993 258,993 00000000000000148c0bc74168a184edbf7dd5b48b5599a1d47ea7cbca05b51c 0.05 MB 122 133
258,992 258,992 0000000000000011abe5cc518f6f0a927dddfd1aa116c9688b874f672e3de875 0.08 MB 184 113
258,991 258,991 0000000000000001a6fe773d122b31d9f58ddab31afb19ccb3a32f16efc7b9ae 0.02 MB 54 79
258,990 258,990 000000000000001c3b516aa3d128038a87db9dcf1218d5f9c078d261fcbf49b8 0.24 MB 658 118
258,989 258,989 000000000000001675e1c80dfe8e99a12fb4a35fdc5878667de0f8069bb9b0c2 0.02 MB 55 91
258,988 258,988 0000000000000019fa34415ff54d0ba4ddde66fb350994a765629ddb3d29980c 0.10 MB 260 100
258,987 258,987 000000000000001264054b265e73e797e3a8bd18dcb0114c173d0cde11ec2e1d 0.06 MB 177 96
258,986 258,986 000000000000001152bf38e7b2840dae40c6f95c9349e77294c79935cedd34af 0.25 MB 614 118
258,985 258,985 0000000000000015b6fed67f02d428cf35a1ca8d27ea53ccf364862c46bb8c94 0.10 MB 215 97
258,984 258,984 000000000000001e9a326fb297d3df86f0cffd49bf4b71c54b790234e3f8bd97 0.25 MB 697 134
258,983 258,983 000000000000001463bb863fef9bb073fcdceaaacfa3358cf3975803d9480e17 0.15 MB 352 108
258,982 258,982 000000000000001826d0cd7bfa02386c29523abcd0045200bddaf15d71c14bea 0.02 MB 68 143
258,981 258,981 0000000000000011635d3ad19194e6a4d2c7d39019d8231f73611b5180cefeff 0.03 MB 76 109
Previous 10 blocks ↓
Total Size: 777.94 GB

Node Details:

  • IP: 162.120.69.182
  • Port: 8333
  • Version: 280000
  • Subversion: /Satoshi:28.0.0/
  • Connections:
    • Incoming: 114
    • Outgoing: 10
  • Data Transfer:
    • Sent: 2,557.64 GB
    • Received: 137.99 GB
  • Uptime:

Notes

  • 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.