Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

3,978 transactions (1.27 vMB)

Priority:

  • 1 sats/vbyte = (4 blocks)
  • 2 sats/vbyte = (2 blocks)
Show Random Selection Loading Transactions
Max Size: 7/200 MB

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,639 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 3,177 3
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,638 (897,700 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
11,938 11,938 0000000071a589f5333ac05d809c1a1bed8e98a0c52abe8f413908ef162b906b 0.00 MB 1 0
11,937 11,937 00000000049070f9ccaa209e14969cb924ff4d905671e20a305dcacb4a919f22 0.00 MB 1 0
11,936 11,936 0000000058816a08f76de9453d6cd0e8bb99bbe05ce2b94637c41e518471ed54 0.00 MB 1 0
11,935 11,935 00000000482dfbf48f37876c31f2b9ddecebede72c780b8dbd786720a5d89c2f 0.00 MB 1 0
11,934 11,934 00000000f497e5bdf11d4bd7503ea6ecb954f9915a1cd6bf686e2f736a6e4a8f 0.00 MB 1 0
11,933 11,933 000000001f7e32427ce59b361a8dd41043d8310468ed1cbcd506fdfcd1456a79 0.00 MB 1 0
11,932 11,932 00000000f98d67b3e78fa47d95618afe4f016e319f03caa8d88232509ab8e034 0.00 MB 1 0
11,931 11,931 00000000d8a225aa6647e3ba80877599becf09f2e25a2eca8de1a5068ddf06f7 0.00 MB 1 0
11,930 11,930 00000000e80c898abefc712289259dda9e5caa55167495551c5583d3bfb8f42a 0.00 MB 1 0
11,929 11,929 00000000b6f21ff8672399948a23c8c9c6f30b6646f6d19716448fa1a57e768a 0.00 MB 1 0
11,928 11,928 0000000051d936c48eba0319dc4bf0b8308fa1375dbb4ef3be812d8ad73120c4 0.00 MB 1 0
11,927 11,927 0000000018c677d96faba65f3485c907a1174696b5b784aeba51b60a63facded 0.00 MB 1 0
11,926 11,926 00000000b967ec16f8db7b46bb4d4e7b53cf8bba00c6020b91eed7e50133c770 0.00 MB 1 0
11,925 11,925 00000000e24dd6792a3397257efb26a87b960463a47d8ee249154a7ce9f435d9 0.00 MB 1 0
11,924 11,924 0000000007d0174f4acfb87d3ec1502475961eb38905eb83fe20663f4fc056a1 0.00 MB 1 0
11,923 11,923 00000000fda34ca18342ea0329b33fec83271d3b2e2ffe0cf3e8510e0efca154 0.00 MB 1 0
11,922 11,922 00000000f5d341fcc096f4c6e578eb033b8ae88d300de311f14ac2538b8f4eca 0.00 MB 1 0
11,921 11,921 00000000519686f3bb027005bc4c54cb96f97dcd3348aba5fcce50b6f81886b0 0.00 MB 1 0
11,920 11,920 000000000f0ce2b8b78ae22fdb9bbe04e077b791dd3e12c197f19cc4bbb7adca 0.00 MB 1 0
11,919 11,919 0000000011c1ea888a898618ef5f286a89ee14a479afc6aed2133da33fb7b1e6 0.00 MB 1 0
11,918 11,918 000000002a8d0cbe17ab20a1519431a780ad1833720af8b7f615c7c461e99ddc 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 772.74 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,116.96 GB sent, 112.02 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.