Loading Tool

Explorer IconExplorer

Memory Pool Memory Pool Refreshing

817 transactions (0.36 vMB)

Priority:

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

Candidate Block Candidate Block Refreshing

Height Target Expected Size Txs Avg Feerate AFR
910,109 000000000000000000022cb30000000000000000000000000000000000000000 0.36 vMB 813 2
Show Transactions Loading Transactions

Blockchain Blockchain Refreshing

Tip: 910,108 (864,869 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
45,239 45,239 0000000028a62aee637bb2b5b735664809f2ac6ba33ca7d9da3f92f241874b28 0.00 MB 1 0
45,238 45,238 0000000012f3fd1e5a8b47ef1386a5378f011ef2bb4d5080e5e83861abbcba54 0.00 MB 1 0
45,237 45,237 00000000370b73a9bdf02a88e8c845d32460d83e583cf5436b5eca8df15cef91 0.00 MB 1 0
45,236 45,236 00000000164a02550840280d9f3f7f44b73d07857d2afe4315113f0323dcd2b3 0.00 MB 1 0
45,235 45,235 0000000014b8aeee3cccbb3ac91c306782c2e250d33a17744b43b9369411cab3 0.00 MB 1 0
45,234 45,234 00000000116f64c77630dffc0469588828f5ac5880ed0e01730b45e6f370244e 0.00 MB 1 0
45,233 45,233 000000003595da695d939799679bd8442e654df2e38c59537ab8275c9da6dc78 0.00 MB 1 0
45,232 45,232 0000000007b3638119309c35b9303f5a3cb1b69fbbc7f7e1ef59e98644ecca65 0.00 MB 1 0
45,231 45,231 0000000038239540c2d3d9205e85064568f522f8c0624ad658acdb06850993ef 0.00 MB 1 0
45,230 45,230 000000001229dbcf0db7f971dc6a380e5219c4771e136ad107b09bbc806cc5f0 0.00 MB 1 0
45,229 45,229 0000000016c6a8396102414d4fb955cc1d572e31ecaf252988ce818ced56f4f9 0.00 MB 1 0
45,228 45,228 000000000d6096d33ca1ca2e5167ade6471fa4170cfbd2cec1b367f5d276fbc1 0.00 MB 1 0
45,227 45,227 000000001286493a424abeb897dbd5a007ce71ab0a91ce8c73e76745811a11a5 0.00 MB 1 0
45,226 45,226 000000002287401ddcb88b2ad0da991cd5ff66b82b2d7134132014689f75160c 0.00 MB 1 0
45,225 45,225 000000003461f7c2e5db715a0b97fe4bc5e7e94857f5cf97fd372be89d883b5c 0.00 MB 1 0
45,224 45,224 000000001552db0103560cafdba74a94f5b2cbbc926cc4eea0782e8b264bb6a2 0.00 MB 1 0
45,223 45,223 000000003330637d46e28568ba454ba7c1cb082a2a1dda0ef9437ab0ba08ca26 0.00 MB 1 0
45,222 45,222 000000000617bde1d0219773b9a9fc4dc7193d9fc7d1a0615f55e046f37f515c 0.00 MB 1 0
45,221 45,221 000000000d27a1fc43e98c958a05444b7d236f4f529863ede72d9067ae9fe3ae 0.00 MB 1 0
45,220 45,220 000000002ab6a01fa5a10f6cdc333f2e11c8d55fb7066ae492214ac7d8c330cc 0.00 MB 1 0
45,219 45,219 000000000d5c35efa463a30d82b17da62fba14dab4b1525c8e4b396d67fce925 0.00 MB 1 0
Previous 10 blocks ↓
Total Size: 773.59 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,189.56 GB sent, 116.45 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.