lthn.io/app/Boot.php
Claude 41a90cbff8
feat: lthn.io API serving live chain data
Fixed: basePath self→static binding, namespace detection, event wiring,
SQLite cache, file cache driver. All Mod Boot classes converted to
$listens pattern for lifecycle event discovery.

Working endpoints:
- /v1/explorer/info — live chain height, difficulty, aliases
- /v1/explorer/stats — formatted chain statistics
- /v1/names/directory — alias directory grouped by type
- /v1/names/available/{name} — name availability check
- /v1/names/lookup/{name} — name details

Co-Authored-By: Charon <charon@lethean.io>
2026-04-03 17:17:42 +01:00

37 lines
898 B
PHP

<?php
declare(strict_types=1);
namespace App;
use Core\Boot as CoreBoot;
class Boot extends CoreBoot
{
public static array $providers = [
\Core\Storage\CacheResilienceProvider::class,
\Core\LifecycleEventProvider::class,
\Core\Front\Web\Boot::class,
\Core\Front\Client\Boot::class,
\Core\Front\Cli\Boot::class,
\Core\Front\Components\Boot::class,
\Website\Lethean\Boot::class,
\Website\Explorer\Boot::class,
\Website\Names\Boot::class,
\Website\Trade\Boot::class,
\Website\Pool\Boot::class,
];
public static array $modules = [
\Mod\Chain\Boot::class,
\Mod\Explorer\Boot::class,
\Mod\Trade\Boot::class,
\Mod\Pool\Boot::class,
\Mod\Names\Boot::class,
];
protected static function basePath(): string
{
return dirname(__DIR__);
}
}