diff --git a/app/Mod/Chain/ChainService.php b/app/Mod/Chain/ChainService.php new file mode 100644 index 0000000..8646b62 --- /dev/null +++ b/app/Mod/Chain/ChainService.php @@ -0,0 +1,38 @@ + 'chain', + 'module' => 'Mod\\Chain', + 'name' => 'Blockchain', + 'tagline' => 'Lethean blockchain daemon and wallet RPC', + 'description' => 'Core chain infrastructure — daemon, wallet, alias management, PoW+PoS consensus.', + 'icon' => 'link', + 'color' => '#34d399', + 'sort_order' => 10, + ]; + } + + public static function version(): string + { + return '1.0.0'; + } + + public static function dependencies(): array + { + return []; + } +} diff --git a/app/Mod/Names/NamesService.php b/app/Mod/Names/NamesService.php new file mode 100644 index 0000000..004319e --- /dev/null +++ b/app/Mod/Names/NamesService.php @@ -0,0 +1,38 @@ + 'names', + 'module' => 'Mod\\Names', + 'name' => '.lthn Registrar', + 'tagline' => 'Blockchain domain name registration and DNS management', + 'description' => 'Register .lthn names on-chain, manage DNS records via ITNS sidechain, sunrise period claims.', + 'icon' => 'globe', + 'color' => '#818cf8', + 'sort_order' => 20, + ]; + } + + public static function version(): string + { + return '1.0.0'; + } + + public static function dependencies(): array + { + return ['chain']; + } +}