Skip to content

krorten/nanopool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

Nanopool

Laravel wrapper for Nanopool API

Nanopool is a nanopool api wrapper for Laravel 5.5

Install

composer require krorten/nanopool

Post Install

After installing, register the Krorten\Nanopool\Providers\CryptocompProvider in your config/app.php configuration file:

'providers' => [
    // Other service providers...

    Krorten\Nanopool\Providers\NanopoolProvider::class,
],

Also, add the Nanopool facade to the aliases array in your app configuration file:

'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)

Examples

You need to set the type of coin before you can retreive any info.

//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

License

Nanopool API Wrapper is open-sourced software licensed under the MIT license

About

Laravel API Wrapper for Nanopool

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages