@extends('lethean::layout') @section('title', 'Explorer') @section('content')

Block Explorer

Live Chain
{{ number_format($info['tx_count'] ?? 0) }}
Transactions
{{ number_format(($info['height'] ?? 0) + 10000000) }}
Supply (LTHN)

Recent Blocks

@foreach($blocks as $block) @php $isPos = $block['is_pos_block'] ?? false; $h = $block['height'] ?? 0; @endphp @endforeach
Height Type Time Difficulty Hash
{{ number_format($h) }} {{ $isPos ? 'PoS' : 'PoW' }} {{ isset($block['timestamp']) ? date('H:i:s', $block['timestamp']) : '' }} {{ number_format($block['difficulty'] ?? 0) }} {{ substr($block['hash'] ?? '', 0, 16) }}...
View all names → Name directory →
@endsection