Explorer IconExplorer

Memory Pool Memory Pool Refreshing

3,766 transactions (1.67 vMB)
  • 1 sats/vbyte = (36 blocks)
  • 2 sats/vbyte = (6 blocks)
  • 3 sats/vbyte = (4 blocks)
  • 5 sats/vbyte = (2 blocks)
Show Random Selection Loading Transactions
Max Size: 8/200 MB

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,245 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 1,765 1
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,244 (898,480 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
10,764 10,764 000000000b23fd9cc8313129822a0ac33086c5787a1f9f2796ae3a918de87cd1 0.00 MB 1 0
10,763 10,763 0000000059522b4ec01b70005179ed1e88dfa7aaf31558068e0f2f4ec6ac06eb 0.00 MB 1 0
10,762 10,762 00000000ec9ec19a8b71731905f549f8bfe74244c68426061e8a8122ec5889c9 0.00 MB 1 0
10,761 10,761 000000002b08a625996ec81329b2f73ec09ff9cc516b3172d54c89630f46d7d5 0.00 MB 1 0
10,760 10,760 00000000d466239e85bd15ccb8e2c5e87fc8dc8a543870c182e729aff15a115a 0.00 MB 1 0
10,759 10,759 000000001f953ad59fa19029d3416227ccaa077f997231ca5c67e035c88d2348 0.00 MB 1 0
10,758 10,758 00000000d63eacca4fb08f0963364496e2819345536d4ff37568b0770ad6de7e 0.00 MB 1 0
10,757 10,757 000000008326a7de0df15f33b0db36dee755fb8dcec5f1f830a848860c9e0b20 0.00 MB 1 0
10,756 10,756 00000000505d8a62ac674eef7b7b7f50e0d7b4c24d92a8d20b48aad533718513 0.00 MB 1 0
10,755 10,755 0000000061fdcfc4415fc50a4b2a3ee1a34fd59f5937c88dc2e0b07b132aafa7 0.00 MB 1 0
10,754 10,754 0000000044613257f61a53b2d3e141cf5501b177a3000b898e936dcd7194947b 0.00 MB 1 0
10,753 10,753 00000000262b26c0a2b54149884d1b23a58b726280cb9dffb6cbe0d6e6709589 0.00 MB 1 0
10,752 10,752 0000000066fc8e3523fff95473b6055892c53e2482221ddd0748e47db98ca6de 0.00 MB 1 0
10,751 10,751 00000000761be88bb2572760e132afb82194f5bbc9e32cdc3dc11a9cd3b4757b 0.00 MB 1 0
10,750 10,750 00000000210be1fabafc6ec5961af967fc1456cc48d4ff22d5164ab8e2cb40a8 0.00 MB 1 0
10,749 10,749 0000000058c423112470d52fbd8172d539866d4405c960e1b18410416ccc1d8f 0.00 MB 1 0
10,748 10,748 0000000029c8c2bc57612d71966975c7547b14bfe79813e20d420d885a5cbdc0 0.00 MB 1 0
10,747 10,747 000000000d823035c2f33556038503db7873a1c6b65ea68f25091e7e99a592b9 0.00 MB 1 0
10,746 10,746 000000005a58937b38f7b575b1efd4ac7e0cd8af897626c301bf4f8629b693a0 0.00 MB 1 0
10,745 10,745 0000000008481b12ff6a4b14a16d108e445f584443cdde4a66092740665bd685 0.00 MB 1 0
10,744 10,744 00000000cd2dab0239ef8db147a38a80b4ff87f2f08241b14f3d55ea8c26ea74 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 771.99 GB

Node Information

  • IP: 162.120.69.182
  • Port: 8333
  • Version: 280000
  • Subversion: /Satoshi:28.0.0/
  • Uptime:
  • Connections: 10 outgoing, 114 incoming
  • Data Transfer: 2,019.59 GB sent, 107.91 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.