Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

1,707 transactions (0.52 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
911,943 000000000000000000022b910000000000000000000000000000000000000000 0.51 vMB 1,706 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 911,942 (210,162 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
701,780 701,780 00000000000000000006c8005e19cd0425debb04a0a9b237d70b31e0d61d7b77 1.27 MB 2,524 11
701,779 701,779 000000000000000000070b816b3d802fac6f58a71a8aa36405ff7db610b988ab 1.05 MB 1,906 11
701,778 701,778 0000000000000000000c3b5e85e96b5b184e5634c9f49b9c9ee694d0127191df 0.63 MB 1,292 10
701,777 701,777 00000000000000000007fa1114694843ada528ff8b4497b2dcb11b66e3509368 1.28 MB 2,475 12
701,776 701,776 0000000000000000000ac01057d88798d4599b2a63a13ef8529ba160a7e1fa69 0.65 MB 1,053 18
701,775 701,775 00000000000000000002be786bd97ae61caffe5a7f2c7f2fa66406e61ca27442 0.32 MB 629 6
701,774 701,774 000000000000000000080226888bc2517ad6b840e84696f67f06d9741f072900 1.24 MB 1,686 6
701,773 701,773 00000000000000000001cd1fa5881f06a8bb4308365a037cd968b0ce525e60dd 1.31 MB 2,165 16
701,772 701,772 000000000000000000038ed45d4c5a46ceea51e5cd8985db5a2258ea1bb8275a 1.35 MB 2,443 14
701,771 701,771 00000000000000000002ca2a25eb9c2169f274a374317a750cdda185720773b6 0.10 MB 261 15
701,770 701,770 0000000000000000000e78c14f6eb8bdf3dbbba22fde24d7dde91367f5e5e0cd 0.41 MB 628 10
701,769 701,769 0000000000000000000bd581f855064d7326e7796a8bccf656e6d222ac69be7f 1.03 MB 1,770 15
701,768 701,768 000000000000000000026479bdb966b320dcf47019a11d75e2eca391cacefb77 0.92 MB 1,627 8
701,767 701,767 0000000000000000000985b9bfbc48347cb59cd2eca5d8fdec7f092612870250 1.35 MB 2,122 15
701,766 701,766 0000000000000000000dc0e1ea7bfb993dfce8bb062ca3aa9521ef8b5f663079 0.28 MB 573 13
701,765 701,765 0000000000000000000a6ff2cf7c18a2f39d93a08d95830270ca6ad1bd21ed91 1.17 MB 1,927 13
701,764 701,764 00000000000000000002a4aa4f308f0bc2ff02166b7fdf4f1a94a01498861717 1.24 MB 2,404 4
701,763 701,763 00000000000000000004a98efa4facbbe70f7f7a138e2b2dcae02aad819fa4ef 1.17 MB 923 7
701,762 701,762 00000000000000000009c64b72a7441b1540d40195ad20983218dbcf702b6e01 1.35 MB 2,107 18
701,761 701,761 0000000000000000000c3be95b4a17adaa1b7fc784a18ec5e3ff65a8033dcc3d 1.77 MB 1,937 18
701,760 701,760 00000000000000000003960ba5eb0e1e877e558085499d1f39bcc43791e38be1 0.34 MB 534 10
Previous 10 blocks ↓
Total Size: 776.98 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,493.92 GB sent, 133.37 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.