Loading Tool

Explorer IconExplorer

Memory Pool

19,580 transactions
4.15 vMB
0.03217798 BTC
  • 1 sats/vbyte = 2 blocks ()
Random Selection Loading Transactions
Max Size: 31.69/200 MB

Candidate Block

Mining Attempt 7b2268e34b04cc85993b9024f58253c754ce67926629ef8955f31076983107b4
Version 20000000
Previous Block 000000000000000000008ab4cfa569924283cb8b2627149910f447cf8291bc7a
Merkle Root cde49d395a90d7a677184d4279d4e3c81a28f740a4b08040bc3a75053b8a03d7
Time ( ago)
Target 000000000000000000022b910000000000000000000000000000000000000000
Nonce 0
Transactions: 2,458
Size: 0.67 vMB
Total Fees: 0.02310108 BTC
Avg Feerate: 1.21 sats/vbyte
Show Transactions Loading Transactions

Blockchain

Blockchain Refreshing
Tip: 912,895 (572,070 blocks away) ⇈
Next 10 blocks ↑
Height Block Hash Time (UTC) Size Txs Avg Feerate AFR
340,825 340,825 00000000000000000fd689dfcdb73596fdaf70a0137492fa31db031469224a25 0.05 MB 98 26
340,824 340,824 00000000000000000ab099547e4d79febf97a526bb911570fda6a0c5547c107a 0.00 MB 1 0
340,823 340,823 000000000000000014fd1e59be1fefc70cf9b1413ba13db1b83cc7676f070245 0.02 MB 51 17
340,822 340,822 00000000000000000b5b950a85316ccd92b9690b4809137a0d0ac33a7823b83b 0.12 MB 257 42
340,821 340,821 000000000000000017ea58d26b54f44d2acb207020fe26e0bdf24794459f6a79 0.18 MB 279 21
340,820 340,820 00000000000000000702bebded45a105f162abd04080816c154036ec495b5702 0.10 MB 119 20
340,819 340,819 0000000000000000185e2a30540211a1f0269957ea1f3821efd6e23768e5673d 0.27 MB 618 28
340,818 340,818 00000000000000000a73d64062f04a8a931acb152a82f96680c1fa4c73a1415c 0.18 MB 282 93
340,817 340,817 0000000000000000191bba056d018f3e1c90a7ea23b45e93a4122dcb70b18061 0.05 MB 97 26
340,816 340,816 00000000000000001250adbf45a74436cc2f962e1820f29f30b62f4bd2d4e87a 0.11 MB 157 19
340,815 340,815 000000000000000016bc60f0e5668e0dfddf47de699317332f17a777392f897a 0.08 MB 234 39
340,814 340,814 0000000000000000187a17e94204fc9834281393998513ea46a6ae04c3327ec2 0.52 MB 1,047 29
340,813 340,813 000000000000000009804c01305187ca44627391526ef87672e48c7d0ae975fa 0.06 MB 140 23
340,812 340,812 00000000000000000970322cfaada98ac513987761aa2f023a7dba0fa5bfe5e2 0.10 MB 90 10
340,811 340,811 00000000000000000b812fe1a36caddcfc39ffff26b016b9c94accd0d9a70612 0.27 MB 456 28
340,810 340,810 000000000000000013d2a662d39848f97c18d37d3f35a3061ab75da7a0b9a3ba 0.64 MB 1,391 28
340,809 340,809 000000000000000005d803d5272e85f6359566402a27e1286382027c58a760d6 0.19 MB 365 23
340,808 340,808 00000000000000000bbe82bb2e772e51c1f39ad3fe4f7da5178179724b07bad0 0.26 MB 425 23
340,807 340,807 00000000000000000db28dedfd546d5afab689dc992f73bafc8821e09652ea2d 0.17 MB 393 30
340,806 340,806 00000000000000000196304006126b86f4490a74e4358745a37be8c42e6b02a5 0.39 MB 551 20
340,805 340,805 0000000000000000181e9efc4bf53128292b413d028bdbfd9150067c3e39b37b 0.03 MB 49 12
Previous 10 blocks ↓
Total Size: 778.66 GB

Node Details:

  • IP: 162.120.69.182
  • Port: 8333
  • Version: 290000
  • Subversion: /Satoshi:29.0.0/
  • Connections:
    • Incoming: 114
    • Outgoing: 10
  • Data Transfer:
    • Sent: 277.14 GB
    • Received: 2.52 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.