Loading Tool

Explorer IconExplorer

Memory Pool

69,210 transactions (17.86 vMB)
  • 1 sats/vbyte = 30 blocks ()
  • 12 sats/vbyte = 10 blocks ()
  • 13 sats/vbyte = 8 blocks ()
  • 14 sats/vbyte = 4 blocks ()
  • 16 sats/vbyte = 2 blocks ()
Show Random Selection Loading Transactions
Max Size: 125.61/200 MB

Candidate Block

Height Target Txs Fees Size Avg Feerate AFR
912,733 000000000000000000022b910000000000000000000000000000000000000000 4,402 0.14688767 BTC 1.00 vMB 13.07
Show Transactions Loading Transactions

Blockchain

Blockchain Refreshing
Tip: 912,732 (755,764 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
156,968 156,968 00000000000009aebcf755a499c3c0d4dbc1f4992ec73a23d286f29b3a4c0d61 0.02 MB 41 58
156,967 156,967 0000000000000c9cea7548b057b3e05c856d2a2058b71cbf1a476b47a524f3ba 0.03 MB 84 65
156,966 156,966 00000000000002f25aff7169d087d459feb23e750dbc020f74673fa46d14aa8b 0.02 MB 36 81
156,965 156,965 00000000000009f9d839ec9fabeafff512669db8264d5adfef35c5bae787bfe5 0.01 MB 9 52
156,964 156,964 000000000000000cc4b0110e58f5e8a9afa0d5ff3a6d7aefb7a8d79ae50ac5e3 0.03 MB 78 10
156,963 156,963 000000000000055bf22476f7426badf376dfb5177c9ae251ba22d595105b9bda 0.01 MB 35 0
156,962 156,962 00000000000001eafc9723494b03f75a4e739a6e4f83c2637b0a9afa46689241 0.05 MB 124 224
156,961 156,961 000000000000063734a4c7fdba24db8bf1fecdedc6718d76123ce5d83e22ebc2 0.05 MB 116 28
156,960 156,960 0000000000000772f54489e1d60b372d28b949a527a07248ef5ec894bcd245c3 0.04 MB 109 57
156,959 156,959 0000000000000ab654da9557bc5497b7863b9d8fca2a251b6375ce96662119e0 0.00 MB 1 0
156,958 156,958 000000000000053b9b5b98c38382ad83692f282fa03f94b7a18f71b380f7524e 0.01 MB 10 834
156,957 156,957 00000000000007b9541864584f772fc1a943a1f0dac2c0b41bea4315ea87713d 0.00 MB 14 301
156,956 156,956 000000000000079394b98d001c362fbc4277dfc462afa742aa318fdedd9b20ec 0.00 MB 10 337
156,955 156,955 00000000000001777bd6022c43a20b1412df0e615a4f1578d3fb9f0b513dfcc2 0.01 MB 16 128
156,954 156,954 0000000000000318e4e95bc89c5ce84be1ebee4148a67551ca3a97c09e66b819 0.02 MB 57 19
156,953 156,953 000000000000046ee9691de374ed6a43f44aade36a725d73246b68eb32f6d71f 0.00 MB 11 366
156,952 156,952 0000000000000a8c2872ab029b42568e8cd9772e89b881742447d9771255e13a 0.01 MB 31 129
156,951 156,951 0000000000000bfddbd2a20d4e4675567a091e37000aa0c0e379a7daaa24ee6a 0.01 MB 27 131
156,950 156,950 00000000000009ee68d0882bd94c77521ae59d0ef587c498b6393dc3178a48ea 0.01 MB 19 116
156,949 156,949 0000000000000b3b2936dee404ec6375da6ca024b24d690bef492b0790dc781d 0.01 MB 26 131
156,948 156,948 00000000000004e2c5c45875a6a7607006cbcbdcdc45f3a899bc8ea0d1335fb7 0.00 MB 12 0
Previous 10 blocks ↓
Total Size: 778.36 GB

Node Details:

  • IP: 162.120.69.182
  • Port: 8333
  • Version: 290000
  • Subversion: /Satoshi:29.0.0/
  • Connections:
    • Incoming: 83
    • Outgoing: 10
  • Data Transfer:
    • Sent: 132.30 GB
    • Received: 1.38 GB
  • Uptime:

Notes

  • 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.