EfficiencyMinerTypeView
Efficiency drilldown grouped by miner model — J/TH and uptime for each model in the fleet.
Efficiency drilldown grouped by miner model — J/TH and uptime for each model in the fleet.
import { EfficiencyMinerTypeView } from "@tetherto/mdk-react-devkit";| Prop | Status | Type | Default | Description |
|---|---|---|---|---|
isLoading | Optional | boolean | undefined | — | — |
onTimeFrameChange | Optional | ((start: Date, end: Date) => void) | undefined | — | — |
chartInput | Optional | ToBarChartDataInput | undefined | — | — |
isEmpty | Optional | boolean | undefined | — | — |
Usage
Miner-type-level efficiency tab inside OperationsEfficiency. Groups efficiency data by miner hardware model.
Example
import { EfficiencyMinerTypeView } from '@tetherto/mdk-react-devkit'export const EfficiencyMinerTypeViewExample = () => ( <div className="mdk-example-row"> <EfficiencyMinerTypeView /> </div>)