lthn.io/app/Mod/Explorer/Views/transaction.blade.php
Claude 0899881138
feat(lthn.io): name registration API, Blade views, wallet RPC
- POST /v1/names/register endpoint with wallet RPC integration
- WalletRpc service for alias registration via daemon wallet
- Blade views for homepage, explorer, names directory, network status
- Explorer and Names modules with view namespaces and web controllers
- Pool endpoint graceful offline handling
- Explorer block detail, aliases, search views

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-03 23:04:27 +01:00

15 lines
449 B
PHP

@extends('lethean::layout')
@section('title', 'Transaction')
@section('content')
<div class="section">
<h2>Transaction Details</h2>
<div class="card" style="margin-top: 1rem;">
<pre style="overflow-x: auto; font-size: 0.8rem; color: var(--muted);">{{ json_encode($tx, JSON_PRETTY_PRINT) }}</pre>
</div>
<div style="margin-top: 1.5rem;">
<a href="/explorer">&larr; Back to explorer</a>
</div>
</div>
@endsection