Current Height
-
Latest Block
-
Node Status
-
Latest Blocks
| Height | Hash | Timestamp | Transactions | Actions |
|---|---|---|---|---|
| Loading blocks... | ||||
#!/usr/bin/env python3 """ AITBC Blockchain Explorer A simple web interface to explore the blockchain """ import asyncio import httpx import json from datetime import datetime from typing import Dict, List, Optional, Any from fastapi import FastAPI, Request from fastapi.responses import HTMLResponse from fastapi.staticfiles import StaticFiles import uvicorn app = FastAPI(title="AITBC Blockchain Explorer", version="1.0.0") # Configuration BLOCKCHAIN_RPC_URL = "http://localhost:8082" # Local blockchain node EXTERNAL_RPC_URL = "http://aitbc.keisanki.net:8082" # External access # HTML Template HTML_TEMPLATE = """
Current Height
-
Latest Block
-
Node Status
-
| Height | Hash | Timestamp | Transactions | Actions |
|---|---|---|---|---|
| Loading blocks... | ||||