Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

7,381 transactions (2.88 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: 16/200 MB

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,878 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 2,425 3
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,877 (883,072 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
26,805 26,805 0000000085811e25709d73805f723e230bc6d686a02b39f0e22ca11b2d204ebf 0.00 MB 1 0
26,804 26,804 00000000b0aba90105c183c9b2f4ea8fca028518c1989159679d6572e1707c7e 0.00 MB 1 0
26,803 26,803 0000000026241c6498de9594240968f7fbd5594826e2b71c86b4816797ec5574 0.00 MB 1 0
26,802 26,802 0000000015a7e37b68969f1cc7ee01efa7e8b76b7bb47c473a27ee702cfd4e20 0.00 MB 1 0
26,801 26,801 000000005494f6a43f7d2f28a1a6354b0702a246417837f19ed3993c22f66758 0.00 MB 1 0
26,800 26,800 000000006c7709d67f4d632a1a5220d925d9c3a9ae00bf42b2365dc0a54a23b8 0.00 MB 1 0
26,799 26,799 00000000b012fb2517eb1de804988145f23b582c3f34e2055438b2462adb71ec 0.00 MB 1 0
26,798 26,798 000000006429c2a29ca1096c74629eebb115218987c91484e6fd8fb3847b16e0 0.00 MB 1 0
26,797 26,797 00000000db38aaa6c7818390558ea272040b72c6d1e204877b5a9a3e3a7a6c7e 0.00 MB 1 0
26,796 26,796 0000000026b2a1ec8a76f46562414ecb23a109892b732083473a50206b0f4bdd 0.00 MB 1 0
26,795 26,795 00000000f69459cae85a83e59b2b8594c4768763e5c938f1852d4c2f236fa692 0.00 MB 1 0
26,794 26,794 000000000b0af5448e846080fc84d47b014601ce1319a3153068a23492cccde0 0.00 MB 1 0
26,793 26,793 000000004289d0adf42a7323ea14308400cc50aa5d8f90abc7f25de0218efed4 0.00 MB 1 0
26,792 26,792 00000000047b9dae9bd356b68488aefe4f4b6a386790b60b7297d36f436bd2bf 0.00 MB 1 0
26,791 26,791 000000009e579907d385bbe3c27db7b7ffcd8d22d3779a8ad889697ab68b31da 0.00 MB 1 0
26,790 26,790 00000000ffb6c4107cbfe90cd60e610de37bcba3ae63a4320d9df3dd904b0001 0.00 MB 1 0
26,789 26,789 000000000b8a8a6a5cdb3643ee69ef4144792430347377aca029cb0a27e8a955 0.00 MB 1 0
26,788 26,788 00000000ee00c0ccd586ee254b80e6c41af89c62243205a6d1f62e6a8f2fc444 0.00 MB 1 0
26,787 26,787 00000000b5f1884c2197b660590f1ed426a6a3b2c6575c37ffe5a189e6d4ddf1 0.00 MB 1 0
26,786 26,786 000000001478251a29d0ca13222fa957690fe07de5eb2817111a9fd1552f54df 0.00 MB 1 0
26,785 26,785 0000000092bfd471d118a628235fc6694fe37c42d11af249a126835d6993c631 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.17 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,170.67 GB sent, 114.24 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.