lthn.io/app/Website/Docs/Content/getting-started/quick-start.md
Claude 63447cba2a
docs: 23 additional content pages for docs.lthn.io
Complete documentation across all 6 sections:
- Getting Started (4): introduction, quick-start, registration, dns-management
- Chain (5): overview, daemon-rpc, wallet-rpc, mining, aliases, hardforks
- Names (4): overview, registration, dns-records, sunrise, sidechain
- Services (4): dns-hosting, ssl-certificates, proxy-network, gateway-operators
- API (6): overview, names, explorer, proxy, gateway, authentication
- Governance (3): cic, wallet-holders, economics

28 markdown pages total, covering the full Lethean ecosystem.

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

1.5 KiB

Quick Start

Get a .lthn name registered in under 5 minutes.

1. Check Availability

curl -s -H 'Accept: application/json' \
  'https://api.lthn.io/v1/names/available/yourname'

If available is true, the name is yours for the taking.

2. Register via Website

Visit lthn.io/names/register, enter your desired name, and submit a claim with your email address. We'll notify you when it's approved.

3. Register via Blesta

For instant on-chain registration:

  1. Visit order.lthn.ai
  2. Choose "Domain Registration"
  3. Enter your .lthn name
  4. Pay with BTC via BTCPay
  5. Your name is registered on-chain within one block (~2 minutes)

4. Manage DNS

Once registered, manage your DNS records through the Blesta client portal:

  1. Log in at order.lthn.ai
  2. Go to Services > Your .lthn name
  3. Click the "DNS" tab
  4. Add A, AAAA, CNAME, TXT, MX, or SRV records
  5. Changes are written to the ITNS sidechain

5. Verify

# Check your name is registered
curl -s -H 'Accept: application/json' \
  'https://api.lthn.io/v1/names/lookup/yourname'

# Check DNS records
curl -s -H 'Accept: application/json' \
  'https://api.lthn.io/v1/names/records/yourname'

What's Next