> ## Documentation Index
> Fetch the complete documentation index at: https://docs.teqoin.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Block explorer

> Track transactions and confirm explorer availability for the TeQoin ecosystem

# Block explorer

A block explorer helps you inspect blocks, addresses, transactions, and verified contracts. It is also the fastest way to confirm that a transaction actually landed onchain.

## What to verify after every transaction

Check these items:

* Transaction hash
* Status
* Block number
* From and to addresses
* Gas used
* Event logs

## Current TeQoin status

As of April 22, 2026:

* Testnet block explorer is live at `https://testnet-blockscan.teqoin.io`
* The older hostname `https://block-explorer.teqoin.io` did not resolve in DNS from this machine

For testnet activity, use the live blockscan URL first.

For any environment that does not yet have a public explorer hostname, your safest confirmation path is:

1. Save the transaction hash from your wallet or deployment script.
2. Query the TeQoin RPC directly.
3. Recheck the public explorer hostname later if TeQoin publishes it.

## RPC fallback for transaction lookup

Use `cast`:

```bash theme={null}
cast tx 0xYourTransactionHash --rpc-url https://rpc.teqoin.io
```

Or call JSON-RPC directly:

```bash theme={null}
curl https://rpc.teqoin.io ^
  -H "Content-Type: application/json" ^
  -d "{\"jsonrpc\":\"2.0\",\"method\":\"eth_getTransactionReceipt\",\"params\":[\"0xYourTransactionHash\"],\"id\":1}"
```

## What to expect from a future explorer

The current testnet explorer should support the usual explorer workflow:

* Address search
* Block and transaction search
* Contract verification
* Token transfers and logs

## Team recommendation

If you operate internal services, treat RPC receipt checks as the source of truth and treat explorer pages as a convenience layer.

## Related pages

* [/tutorials/deploy-first-contract](/tutorials/deploy-first-contract)
* [/resources/support](/resources/support)
