Complete rebranding of all components: - Core miner: xmrig -> miner (binary, version.h, CMakeLists.txt) - Proxy: xmrig-proxy -> miner-proxy - CUDA plugin: xmrig-cuda -> miner-cuda - Heatmap: xmrig-nonces-heatmap -> miner-nonces-heatmap - Go CLI wrapper: miner-cli -> miner-ctrl Vendored XMRig ecosystem into miner/ directory: - miner/core - XMRig CPU/GPU miner - miner/proxy - Stratum proxy - miner/cuda - NVIDIA CUDA plugin - miner/heatmap - Nonce visualization tool - miner/config - Configuration UI - miner/deps - Pre-built dependencies Updated dev fee to use project wallet with opt-out (kMinimumDonateLevel=0) Updated branding to Lethean (domain, copyright, version 0.1.0) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
37 lines
1.3 KiB
JavaScript
37 lines
1.3 KiB
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
import { Route, Switch } from 'react-router-dom';
|
|
import NoMatch from "./components/NoMatch";
|
|
import WorkersContainer from './containers/WorkersContainer';
|
|
import SettingsContainer from './containers/SettingsContainer';
|
|
import ModalContainer from './containers/ModalContainer';
|
|
import ImportContainer from './containers/ImportContainer';
|
|
import NavbarContainer from './containers/NavbarContainer';
|
|
import WorkerContainer from "./containers/WorkerContainer";
|
|
|
|
|
|
const routes = () => {
|
|
return (
|
|
<div>
|
|
<NavbarContainer />
|
|
|
|
<Switch>
|
|
<Route exact path="/" component={WorkersContainer} />
|
|
<Route exact path="/worker" component={WorkerContainer} />
|
|
<Route exact path="/worker/edit" component={WorkerContainer} />
|
|
<Route exact path="/worker/config" component={WorkerContainer} />
|
|
<Route exact path="/worker/tools" component={WorkerContainer} />
|
|
<Route exact path="/worker/backends" component={WorkerContainer} />
|
|
<Route exact path="/worker/dev" component={WorkerContainer} />
|
|
<Route exact path="/settings" component={SettingsContainer} />
|
|
<Route exact path="/import/:import_data" component={ImportContainer} />
|
|
<Route component={NoMatch} />
|
|
</Switch>
|
|
|
|
<ModalContainer />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default routes;
|