dev-master
9999999-dev https://github.com/krorten/nanopoolNanopool.org api wrapper for Laravel 5.5
MIT
The Requires
by Kai Rune Orten
laravel bitcoin altcoin nanopool
Nanopool.org api wrapper for Laravel 5.5
Laravel wrapper for Nanopool API, (*1)
Nanopool is a nanopool api wrapper for Laravel 5.5, (*2)
composer require krorten/nanopool
After installing, register the Krorten\Nanopool\Providers\CryptocompProvider
in your config/app.php
configuration file:, (*3)
'providers' => [ // Other service providers... Krorten\Nanopool\Providers\NanopoolProvider::class, ],
Also, add the Nanopool
facade to the aliases
array in your app
configuration file:, (*4)
'Nanopool' => Krorten\Nanopool\Facades\NanopoolFacade::class,
See the API documentation for more information about the endpoints and responses. (replace coin with i.e: zec, eth, sia or etc), (*5)
You need to set the type of coin before you can retreive any info., (*6)
//Get user(wallet addr) general summary Nanopool::setType('zec')->user($wallet_address);
//Get list of workers with connected to user(wallet addr) Nanopool::setType('eth')->workers($wallet_address); //Other actions to use ->hashrate ->balancehs ->payments ->calculator
Nanopool API Wrapper is open-sourced software licensed under the MIT license, (*7)
Nanopool.org api wrapper for Laravel 5.5
MIT
laravel bitcoin altcoin nanopool