Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

13,753 transactions (5.38 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,699 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 3,515 5
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,698 (833,967 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
75,731 75,731 0000000000707b79b2e968802f0170eae73bbc641d0b5e00e379866489776c16 0.00 MB 2 0
75,730 75,730 000000000066083f002bc902a85ce18543f1f4dd7e10ced44f259d4d4cde02ae 0.00 MB 2 0
75,729 75,729 0000000000038e4b2f15373d326688bb3db3658821c8f956e9156afb601ded51 0.00 MB 2 0
75,728 75,728 000000000015af3d8c2008f604e349a0f9fe83e7535fba3bcb8712ebd1d810e6 0.00 MB 1 0
75,727 75,727 000000000036eec289956a0020bd34859d0e32cca2b23f2293cf1685c4c020a3 0.00 MB 1 0
75,726 75,726 0000000000662e39fa0a308d249a700b6871d9636f206208da481abf491fd2ba 0.00 MB 1 0
75,725 75,725 00000000004bd0badb41481738b85dbdd7229bff4c2bf3600abc49dc0cbd7d73 0.00 MB 2 0
75,724 75,724 000000000031fa82d1954ca7677dfdcd34a1b0055a671edb14c00d99ccea845d 0.00 MB 4 0
75,723 75,723 000000000038663015ab9bafa2d360a5cd9220a3ce6964e48410ab5dbf879329 0.00 MB 1 0
75,722 75,722 0000000000545450bb4602855e24500591896b1b9f84a2b5f0e1c3f853cc920f 0.00 MB 1 0
75,721 75,721 00000000006d20ed41e0e8165abc2682f299bf0c799b3b63abdc929d5230aee6 0.00 MB 1 0
75,720 75,720 000000000063e5d290982daed82f878ec674d42ebf3b9c8a6d93a67ccfe2e46b 0.00 MB 1 0
75,719 75,719 000000000026cbeba2c4007c4d8c650bdafe406a4102dba771e1e18fd874956f 0.00 MB 1 0
75,718 75,718 00000000001fd8c2a499aa794f2b715cef80b571509a48d1b31ac5e2f42d1961 0.00 MB 1 0
75,717 75,717 0000000000121c57c03eae0b4a235ad1cb13241aef7acdbe80248cb26dbd3aea 0.00 MB 2 0
75,716 75,716 0000000000590c648f9a7e4d4cee7969f17317d830f8f4736bf4c021ce67c038 0.00 MB 1 0
75,715 75,715 0000000000682d88a9fec90e7324b9b0db1c33b081732b91df0cc97d07a35059 0.00 MB 1 0
75,714 75,714 00000000007ca094f5c2caf41415c010dcd6ebc63d987bf97e33572a15ed0e6c 0.00 MB 2 0
75,713 75,713 0000000000654547a46c38e40665809d8cb82f87b2c0cecf06c7bfd6ed5901e3 0.00 MB 1 0
75,712 75,712 00000000003c1ebbcf234ca9f08f4232a582a28dd75b1a74167ca81775e7e9c8 0.00 MB 1 0
75,711 75,711 00000000004714e909472589cfd4582f61019dd22b8f39288f9266784500b5f9 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 772.85 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,155.84 GB sent, 112.64 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.