- 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>
26 lines
1.1 KiB
PHP
26 lines
1.1 KiB
PHP
@extends('lethean::layout')
|
|
|
|
@section('title', 'Register a .lthn name')
|
|
|
|
@section('content')
|
|
<div class="section">
|
|
<h2>Register a .lthn Name</h2>
|
|
<p style="color: var(--muted); margin-bottom: 2rem;">Claim your identity on the Lethean blockchain.</p>
|
|
|
|
<div class="card" style="max-width: 500px;">
|
|
<h3>Check Availability</h3>
|
|
<form method="get" action="/names" style="display: flex; gap: 0.5rem; margin-top: 1rem;">
|
|
<input type="text" name="search" placeholder="Enter a name..."
|
|
style="flex: 1; padding: 0.5rem 1rem; background: var(--bg); border: 1px solid var(--border); border-radius: 0.5rem; color: var(--text);">
|
|
<button type="submit" class="api-link" style="margin-top: 0;">Check</button>
|
|
</form>
|
|
<p style="color: var(--muted); font-size: 0.8rem; margin-top: 0.75rem;">
|
|
Names are registered via the <a href="https://order.lthn.ai">Lethean order portal</a> or the API.
|
|
</p>
|
|
</div>
|
|
|
|
<div style="margin-top: 2rem;">
|
|
<a href="/names">← Back to directory</a>
|
|
</div>
|
|
</div>
|
|
@endsection
|