- 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>
24 lines
1.2 KiB
PHP
24 lines
1.2 KiB
PHP
@extends('lethean::layout')
|
|
|
|
@section('title', 'Aliases')
|
|
|
|
@section('content')
|
|
<div class="section">
|
|
<h2>Registered Names ({{ $total }})</h2>
|
|
<table style="width: 100%; border-collapse: collapse; margin-top: 1rem;">
|
|
<tr style="border-bottom: 1px solid var(--border); text-align: left;">
|
|
<th style="padding: 0.75rem; color: var(--muted); font-size: 0.8rem;">NAME</th>
|
|
<th style="padding: 0.75rem; color: var(--muted); font-size: 0.8rem;">ADDRESS</th>
|
|
<th style="padding: 0.75rem; color: var(--muted); font-size: 0.8rem;">COMMENT</th>
|
|
</tr>
|
|
@foreach($aliases as $alias)
|
|
<tr style="border-bottom: 1px solid var(--border);">
|
|
<td style="padding: 0.75rem;"><strong style="color: var(--accent);">{{ $alias['alias'] ?? '' }}</strong></td>
|
|
<td style="padding: 0.75rem;"><code style="font-size: 0.75rem;">{{ substr($alias['address'] ?? '', 0, 16) }}...</code></td>
|
|
<td style="padding: 0.75rem; color: var(--muted); font-size: 0.85rem;">{{ $alias['comment'] ?? '' }}</td>
|
|
</tr>
|
|
@endforeach
|
|
</table>
|
|
<div style="margin-top: 1.5rem;"><a href="/explorer">← Back to explorer</a></div>
|
|
</div>
|
|
@endsection
|