Explorer IconExplorer

Memory Pool Memory Pool Refreshing

9,340 transactions (3.58 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
909,284 000000000000000000022cb30000000000000000000000000000000000000000 ago 1.00 vMB 3,853 4
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 909,283 (873,935 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
35,348 35,348 00000000b78b2e20fdbc90cbff515121bc568139cebe1ffa3594c328020292d7 0.00 MB 1 0
35,347 35,347 0000000049802c2a2c339e67f643fd5405204cebc04bf667b4523ba00e21203b 0.00 MB 1 0
35,346 35,346 000000001aad266602cf974ea4ce2c469b6c630ae39504b649d449406298937b 0.00 MB 1 0
35,345 35,345 00000000aa0f21bb0e17ee4d301023d9010d0a9eca2b6746af46ad56ec5811ab 0.00 MB 1 0
35,344 35,344 000000002319a8699d15371a16ff7ac1aa3b312cda2d476a129f2fdc9187d8d6 0.00 MB 1 0
35,343 35,343 00000000a59c450c28141b9514395686437032208bfcba3596e8d6cc87efb867 0.00 MB 1 0
35,342 35,342 0000000075a0893d26dca3b6efbdab87ada85d18ffb8ea2999f87a64eaf9d714 0.00 MB 1 0
35,341 35,341 00000000715ebeff906eaf922a08cb7a6eac2e1753a3138511353acab35bb5d7 0.00 MB 1 0
35,340 35,340 00000000189e0639f805755864641964e24649b99e38ecd54a3ed8ddaff4763d 0.00 MB 1 0
35,339 35,339 0000000079f8d1aef1af744d2156ee8449ae72aa54d118cb016a97b9bfaa9b0e 0.00 MB 1 0
35,338 35,338 0000000063393c5fa999de727ce2cdebc0f388bd56dc6d1d9ae34f3e08cad68d 0.00 MB 1 0
35,337 35,337 0000000099e09d8f0ab0da9307cbad777428533e598d40b7cf0b75f1963adffa 0.00 MB 1 0
35,336 35,336 0000000099bd74a43107372a76594b1c7edadaddeb78d32c3d8c6b51288a83ca 0.00 MB 1 0
35,335 35,335 0000000045bd3006bddf56124ce7c91a93881362f11e0c55b24557d6b9f4bb70 0.00 MB 1 0
35,334 35,334 000000008e2b81165ae5369ca3e7703c03f87714136525e2223ab29a652facc5 0.00 MB 1 0
35,333 35,333 000000004595efeb143208b7939729633b0029288d6d8a11bed99c2e6061f339 0.00 MB 1 0
35,332 35,332 00000000180dad016b96ed2cc0735c510e2dcf0f87fa13184d2c38a6f6cc8f2d 0.00 MB 1 0
35,331 35,331 00000000968a038c8b3aa226e08db3fcbb21eb58d73f699d30bfbd129f9987f6 0.00 MB 1 0
35,330 35,330 00000000943e741f9e06b907e056c1012d929a5fec547ec1db4ea79b8e9b8bc2 0.00 MB 1 0
35,329 35,329 0000000051559105b198e88953e3c622c8d088ac7acec7e3124931db26996eda 0.00 MB 1 0
35,328 35,328 00000000af63ed34da96b0511cbdb34dda3bd3fcb94f649e4566eaf0ec9cff3b 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 772.06 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,046.96 GB sent, 108.39 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.