Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

3,252 transactions (0.85 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,081 000000000000000000022cb30000000000000000000000000000000000000000 0.84 vMB 3,238 1
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,080 (886,304 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
23,776 23,776 0000000011d802875f950e9dc7891f666cb2a9f38a388e01a913d18455c6fb25 0.00 MB 1 0
23,775 23,775 000000009929469a187105df41b701bee8e76ddd9bed33c3e54ee2768961c9f8 0.00 MB 1 0
23,774 23,774 00000000d22a014ced9f420f12eaac4d583fdaf7588f19cf6432c35c052d3f49 0.00 MB 1 0
23,773 23,773 00000000353af4e42bb503f09559c72dc100e7c52503f3b7299cce7bf0b5db07 0.00 MB 1 0
23,772 23,772 00000000b70d7ddfaa1cc728fe9354367a1dadc573706f8ef3c92af089027f67 0.00 MB 1 0
23,771 23,771 00000000e9fb0d570237cc443b07893ee0903627664b99450b601d64557bf7a0 0.00 MB 1 0
23,770 23,770 0000000092a0ab15958f41a808626c28be0f684692f35e1459f8a1618ac23032 0.00 MB 1 0
23,769 23,769 000000004952bde84459181621f6faac23f0968a6f69e5110076a3f7d2585ed8 0.00 MB 1 0
23,768 23,768 00000000ebc7b517e1c9385addb5f8ec7b84840c905d2486a1b2e8dc2da653e8 0.00 MB 1 0
23,767 23,767 000000006a132affb448960bb8b72eeba1682e55bafa9f343f221eb597c60131 0.00 MB 1 0
23,766 23,766 000000007ae496d11b883274a8321cada13b2bc79e2ffd1601a1b40bdc7a11fa 0.00 MB 1 0
23,765 23,765 00000000b53524af01c82e02b67bd27b9a71d82b69ce8b45620e19e5981934bc 0.00 MB 1 0
23,764 23,764 00000000c49bb72f5564933b380ecf99127cbf1dc61f9252cc7add24edfcba57 0.00 MB 1 0
23,763 23,763 0000000033889acd0d89f4c8cfc79cb667164cb1a7927f287a37db5183fac111 0.00 MB 1 0
23,762 23,762 0000000045a7cf195c150fea3888a79b354f3fbf695d839ccf71dcb366526164 0.00 MB 1 0
23,761 23,761 0000000026400f4542033100eaeb14e4f18060ba3ac17cb88370ed25037f9b8a 0.00 MB 1 0
23,760 23,760 000000000143d58ca4f0c6a6ada617a5b276a31c65104bb39865f16c6b8f30c7 0.00 MB 1 0
23,759 23,759 000000005dbf2bfe69da52c73b6652438b0193afa045768ca61f7a83c78da4b5 0.00 MB 1 0
23,758 23,758 00000000097f61208b5ee28756a427144e7b94267c97bbba7a56db3cf839d50c 0.00 MB 1 0
23,757 23,757 0000000088f249ab6c88d093e573b776f40c6c8a116e6c80cb0b2cd83aaef7e1 0.00 MB 2 0
23,756 23,756 00000000ac9c06c51116423e5ca6a2f2c6b40c8ffcd19b2c52c69cb3ff7f582b 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.55 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,187.70 GB sent, 116.19 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.