Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

6,393 transactions (2.01 vMB)

Priority:

  • 1 sats/vbyte = (3 blocks)
  • 2 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,694 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 3,797 3
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,693 (893,930 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
15,763 15,763 0000000072386bc7f2408c5b216b93080dd36bcf91736675e0addf9f025a3620 0.00 MB 1 0
15,762 15,762 00000000a0108bef0253bc00c2fbec986bbb4e71faf0a6406f99efe92bde898f 0.00 MB 1 0
15,761 15,761 00000000e43b2f00ce5854cc01a92a7468a846cbc26303d2ea8a9b6387d7fefe 0.00 MB 1 0
15,760 15,760 0000000027e5f6177b33905a1e36c3bbd9acac0bb749a53a4e4e4c06ac15aaec 0.00 MB 1 0
15,759 15,759 000000002f775a8adebdb43c41645bf660a7ac522eeaca1c68785305195d2000 0.00 MB 1 0
15,758 15,758 000000004cabcc4e0560b775270399b9ab1badffbecbdacc2b6ef20f2819b29e 0.00 MB 1 0
15,757 15,757 00000000b2e1f8d11821edbd998d094e91bee5cefcab257c0c0b90ca8a8682b9 0.00 MB 1 0
15,756 15,756 00000000debc286f8d2128ce830ed4915163b53634b88a513abbc6d1e04f20ae 0.00 MB 1 0
15,755 15,755 00000000c3403f286acf8c18e812b0149239a0728a8aaa616089b6e792fe0d97 0.00 MB 1 0
15,754 15,754 00000000493b2f0f13eae2d51ec48ac4c2656ccceb42f5c3d475b27914b1cd7a 0.00 MB 1 0
15,753 15,753 00000000036a6db536acd7fd883617941b4ee89cd56c15a17dbceeede42cdc54 0.00 MB 1 0
15,752 15,752 00000000a45b998dc9c9298d049460298dc410f8bc3f6aed49c34d2ea86f2e79 0.00 MB 1 0
15,751 15,751 00000000229a904341a6d6801344110cae2bd27fa0a7a5210d9af301c78b83d0 0.00 MB 1 0
15,750 15,750 000000000fbaff5232d18859a34f294f7dd86b2c2e1ac1aeab4d08179723f1f7 0.00 MB 1 0
15,749 15,749 000000009552f1d5fd5eedadb4fc47cb19a770089e587fd7de3989c9854bb7fb 0.00 MB 1 0
15,748 15,748 000000008b6962dd900fe59eecf235b8131fa821dc96ecf9f2a8c01396d1a97f 0.00 MB 1 0
15,747 15,747 00000000d7586b1a3828ff60fe5180950393221daeead66bca619d5c51dd276e 0.00 MB 1 0
15,746 15,746 00000000061e6ffa7004028b4d271b68f0756af704052997c4fd34ba6fa4ab16 0.00 MB 1 0
15,745 15,745 000000004d8c2a80652a35f1a11415f0e3ed7c6b4cd29277b4e70c0921cdb404 0.00 MB 1 0
15,744 15,744 0000000097bef23293bc90c99e08ee03e82c54c991708dccb28d609036297d06 0.00 MB 1 0
15,743 15,743 00000000386f8c0a84cf4b273a29c42fd48ee6298794ba0b727b57c1775e5881 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 772.84 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,152.67 GB sent, 112.53 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.