Loading Tool

Explorer IconExplorer

Memory Pool

1,279 transactions (0.31 vMB)
  • 1 sats/vbyte = 2 blocks ()
Show Random Selection Loading Transactions
Max Size: 1.90/200 MB

Candidate Block

Height Target Txs Fees Size Avg Feerate AFR
912,391 000000000000000000022b910000000000000000000000000000000000000000 1,272 0.01059443 BTC 0.30 vMB 2.01
Show Transactions Loading Transactions

Blockchain

Blockchain Refreshing
Tip: 912,390 (704,455 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
207,935 207,935 00000000000001fbdac9694346d3a27079f5f6b98b121458e0f9475e96320fb8 0.05 MB 160 84
207,934 207,934 00000000000000b7361254f47a2f2ff5fd900036676013c553732cde2c5a2c15 0.02 MB 64 83
207,933 207,933 00000000000004ec5ad4a6b723717ebf51f9e195c8e20f9db2176273cd10d24a 0.25 MB 540 187
207,932 207,932 0000000000000413e530cc2a2fb8dfa31fd517536a199fbb037cb0836f36bdd8 0.12 MB 234 186
207,931 207,931 00000000000002a94c7fe1019a49ccb9f04d994463b03caa06a6e424eef2d58c 0.10 MB 238 114
207,930 207,930 0000000000000328e563fcda69c94c32b59d4d6166208d3907055afcaa078b71 0.17 MB 512 416
207,929 207,929 00000000000003be57a678f9417184169c51f3bb5305c316a5852f46966390bc 0.09 MB 161 244
207,928 207,928 00000000000001551c114fa9e914dd6e20a22b95b69a1472108785338fe0e3ff 0.08 MB 185 201
207,927 207,927 00000000000001908fc5e2b896d454e87599725f938cc1525974c46143acf0c0 0.04 MB 61 131
207,926 207,926 00000000000000ac21a1bfa1cb02c105ba0279b27136b2dc0852ba147ebe4b5f 0.01 MB 34 162
207,925 207,925 000000000000032de5e4989075f66842977aeffe3a3b9667d547e3cde4703a47 0.01 MB 34 177
207,924 207,924 00000000000001f7dc2a9bb4857bb322d928fbf33431ebce15943dad764f4bc1 0.06 MB 132 154
207,923 207,923 00000000000004b7d713e464af153bd25ef85feaa2c02bd246d9d8fb991c8ca6 0.20 MB 429 100
207,922 207,922 000000000000007028b3e7fa6006e4338528b14b30cbb6ff309b9596753948d9 0.18 MB 407 178
207,921 207,921 0000000000000110e6ab6180304f8821bf29cbcc5ae5a6a10c9e1c367b1f29d9 0.24 MB 675 237
207,920 207,920 00000000000003f92f2637d9b380ab83ff57acd73a78d26e5f4f5fb42d60ecc4 0.05 MB 140 169
207,919 207,919 00000000000004b0fd84700ca7f1864d4ceaf853475e9581900582e66ec0a4dd 0.05 MB 142 95
207,918 207,918 0000000000000041b566b6344b5ceb9c07f548fc723ab270c96a25c617074b79 0.02 MB 55 197
207,917 207,917 000000000000007ebdfdab8d639f8e341a472a1182bef3f026c5967f438683e2 0.08 MB 223 170
207,916 207,916 000000000000004f67f9579237eaf5d61d0d7d6339ada6a41acc63d1d542bd7d 0.13 MB 363 200
207,915 207,915 00000000000001f9665ffe38622320d7822ccc39e1bc5a27e45fcdb7cf4977cc 0.05 MB 131 125
Previous 10 blocks ↓
Total Size: 777.78 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,549.06 GB
    • Received: 137.20 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.