Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

10,548 transactions (3.21 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,868 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 4,496 3
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,867 (847,072 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
62,795 62,795 0000000001044b992559c0cd213227df8a9071597183d8c8e0a5bfa36a9836ba 0.00 MB 1 0
62,794 62,794 00000000004565d9df1c0ebf1fbfb4fbce5db8970c4d4a52bce80aa7bef7d8c5 0.00 MB 1 0
62,793 62,793 000000000a73130a159d62d695cbb70ffc035809dce8a290afbe02952919c104 0.00 MB 1 0
62,792 62,792 000000000b754c3fff57a907128c166bf10593e0ac91edb97161260ed15ffefb 0.00 MB 1 0
62,791 62,791 0000000003199b6d110f92c51d5addc91d8865a6eaa0b7cccc55429af58ea9e8 0.00 MB 1 0
62,790 62,790 000000000371592943e78f8c7a360dc2820fe64415cecaf907d090ffc9bb82c1 0.00 MB 1 0
62,789 62,789 0000000002dd6b987ef6a72b0e25433b38188e21994841cc36e725c2a1195556 0.00 MB 1 0
62,788 62,788 000000000416102942aba49dcbe923bb9536ba2e313183e6aa0bf017ec7d8936 0.00 MB 1 0
62,787 62,787 0000000003dede9e8a594440b3d9f52cbadf212ec2fdbd6c03c9d370aaae2a1a 0.00 MB 1 0
62,786 62,786 000000000d15569d4aad699bdf14a13123f5c0505017e2edaf5bd2ff8f7b505f 0.00 MB 1 0
62,785 62,785 00000000083f2d1e90ef4b1aa73faaff4953afbf541b8e2e9a530cc24e676a18 0.00 MB 1 0
62,784 62,784 000000000bdd77c33a6fae65273129aa5dae87da295fb4beabb01ea0bc5007d7 0.00 MB 1 0
62,783 62,783 0000000009715c92b633554e564a015fe40a0cb2ca5b6b7de41a56f2fb99436d 0.00 MB 2 0
62,782 62,782 00000000083cc54c6e10b79304700f980344aaa5b93f433b268ff15190fa29bd 0.00 MB 1 0
62,781 62,781 0000000004d72eddae817b2cdf3da3e476d6c7d6eec28603430e6d34ad344f51 0.00 MB 1 0
62,780 62,780 0000000009ddbb3ad80ba7ba9ceb30242e5dfe63c3fb5a312b1b3ef782f06565 0.00 MB 3 0
62,779 62,779 0000000009ea194516d41cba05bad30be559160cb1c5d3315cfc23913040cd33 0.00 MB 1 0
62,778 62,778 0000000003eea24ad7827a97d2120a78b36c900308b235fc3347bee5f56ad3cc 0.00 MB 1 0
62,777 62,777 000000000bdf7cad26d637c9561693675ebb54f1d97cd59c6946f4715fa9edff 0.00 MB 1 0
62,776 62,776 00000000047d72161f354655f94b22593629f88889397d048c2d8390771239ab 0.00 MB 1 0
62,775 62,775 00000000041018bb20e94ecd33df24a1cc9e1b4742b4c9e4e76b7217f9a73dfa 0.00 MB 2 0
Previous 10 blocks ↓
Total Size: 773.15 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,167.93 GB sent, 114.12 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.