feat: Add multi-miner dashboard support and TT-Miner implementation
Dashboard:
- Add aggregate stats across all running miners (total hashrate, shares)
- Add workers table with per-miner stats, efficiency, and controls
- Show hashrate bars and efficiency badges for each worker
- Support stopping individual workers or all at once
TT-Miner:
- Implement Install, Start, GetStats, CheckInstallation, Uninstall
- Add TT-Miner to Manager's StartMiner and ListAvailableMiners
- Support GPU-specific config options (devices, intensity, cliArgs)
Chart:
- Improve styling with WA-Pro theme variables
- Add hashrate unit formatting (H/s, kH/s, MH/s)
- Better tooltip and axis styling
Also:
- Fix XMRig download URLs (linux-static-x64, windows-x64)
- Add Playwright E2E testing infrastructure
- Add XMR pool research documentation
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-27 22:48:20 +00:00
|
|
|
<div class="chart-container">
|
|
|
|
|
@if (chartOptions()) {
|
|
|
|
|
<highcharts-chart
|
|
|
|
|
class="hashrate-chart"
|
|
|
|
|
[Highcharts]="Highcharts"
|
|
|
|
|
[constructorType]="chartConstructor"
|
|
|
|
|
[options]="chartOptions()"
|
|
|
|
|
[update]="updateFlag()"
|
|
|
|
|
[oneToOne]="true"
|
|
|
|
|
></highcharts-chart>
|
|
|
|
|
} @else {
|
|
|
|
|
<div class="chart-loading">
|
|
|
|
|
<wa-spinner></wa-spinner>
|
|
|
|
|
<span>Loading chart...</span>
|
|
|
|
|
</div>
|
|
|
|
|
}
|
|
|
|
|
</div>
|