Modules: - Chain: daemon RPC client (DaemonRpc singleton, cached queries) - Explorer: block browser, tx viewer, alias directory, search, stats API - Names: .lthn TLD registrar portal (availability check, lookup, directory) - Trade: scaffold (DEX frontend + API) - Pool: scaffold (mining pool dashboard) Replaces 5 Node.js containers (5.9GB) with one FrankenPHP app. Built on CorePHP framework pattern from host.uk.com. Co-Authored-By: Charon <charon@lethean.io>
19 lines
523 B
PHP
19 lines
523 B
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Admin Menu Configuration
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Configuration for the admin panel menu system.
|
|
|
|
|
*/
|
|
|
|
'admin_menu' => [
|
|
// Disable caching to avoid serialization issues with closures
|
|
// TODO: Fix in core-php by evaluating closures before caching
|
|
'cache_enabled' => false,
|
|
'cache_ttl' => 300,
|
|
],
|
|
];
|