rutgerkirkels / ethos-api-client
A PHP client to connect to your ethOS mining rig through the Ethos Panel API
Installs: 29
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 3
Forks: 0
Open Issues: 0
pkg:composer/rutgerkirkels/ethos-api-client
Requires
- php: >=7.0
- guzzlehttp/guzzle: ^6.3.0
Requires (Dev)
- phpunit/phpunit: 3.7.*
This package is auto-updated.
Last update: 2025-09-28 10:26:51 UTC
README
This client makes it easy to connect to the panel of your ethOS cryptocurrency miners.
Initiate the client:
$client = new \RutgerKirkels\Ethos_Api_Client\Client(<id_of_your_ethos_panel>);
Get all miners the current hashrate for all miners:
$miners = $client->getAllMiners(); foreach ($miners as $miner) { echo 'Hashrate for miner ' . $miner->getId() . ': ' . $miner->getHashrate() . ' MH/s<br/>'; }