Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

2,273 transactions (1.14 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: 6/200 MB

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,599 000000000000000000022cb30000000000000000000000000000000000000000 1.00 vMB 2,111 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,598 (874,001 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
35,597 35,597 00000000133d95496a3527c5201eeb8780a5e73e84ea3eff0f03150d7e0ec0db 0.00 MB 1 0
35,596 35,596 0000000044855e17ed6884251d33e00008257af32cb75f71810728c1f2ff961e 0.00 MB 1 0
35,595 35,595 00000000b40b9a3172b5a24702114563bb499ce75c0fe3745419a8c4449a8d9a 0.00 MB 1 0
35,594 35,594 0000000055864bc6993719472554674976fba84e98183c0466d3001c966714aa 0.00 MB 1 0
35,593 35,593 000000005dc573e733ef39e1ba3d9631e9eef0f6fec7ed25a005e49e4050ef6f 0.00 MB 1 0
35,592 35,592 000000002faee76b17eaca1c0db192cb304abfcfcfff98554f4cb6831c753e0b 0.00 MB 1 0
35,591 35,591 000000002ec037a1ee160000b1db98fd8a561274b786652c0067508f1440f810 0.00 MB 1 0
35,590 35,590 00000000856f569f9a70a3162e20a8c71c1ad7b27a51f056730121b92f4ad5fc 0.00 MB 1 0
35,589 35,589 00000000174d3c953ee8742b778ab2069ef93057cc86b9fcc422f10054da4dbd 0.00 MB 1 0
35,588 35,588 000000007d7f2fad8b7011ed887506ffd4d71ff573e949a7c3642cd376087995 0.00 MB 1 0
35,587 35,587 000000009f261e04df2051700c1bda3bbe28431e31efe6c8cf14e550836b4692 0.00 MB 1 0
35,586 35,586 0000000003f94bcbe0dff3e3d561a765cf35edd5d82c3c5bd1060e6527137844 0.00 MB 1 0
35,585 35,585 00000000a70a22711d58158b1f7d7e76dbbd29fe8ef62bfbea3ed4621c11aaae 0.00 MB 1 0
35,584 35,584 0000000064149ec6b3ccab2019c4ebcfd69f4568f4311f43fc7e883a5f8784f4 0.00 MB 1 0
35,583 35,583 0000000027603109ba10be13af4412598a63a71f5bd578a037412bcfaa569e17 0.00 MB 1 0
35,582 35,582 0000000050a60f71d2d23dbe2f0c82a7ee5d4a6a63cad06855df27f8061ebe06 0.00 MB 1 0
35,581 35,581 0000000042a1e0f91f3f5a2a2c42a0d8baef2ec93703c5a94540a8ff4eb7c96d 0.00 MB 1 0
35,580 35,580 00000000752af0cd530c913180652f64c475afb3cf309749972302745c7c62bd 0.00 MB 1 0
35,579 35,579 00000000643cc2bd03b43300750a1aac91e8fe9e6a97b0fe8f6660a061f7ce33 0.00 MB 1 0
35,578 35,578 000000005fc8ca773d98f61fc6e2668e1613f13510d887d4dcd3da25c5a1f5d3 0.00 MB 1 0
35,577 35,577 00000000927ef08a1ad6527b6521693f0c54357a35b18e9238bc37b61dc7cb4d 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 772.66 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,098.70 GB sent, 111.63 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.