npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

eobot-api-promise

v0.1.7

Published

Simplified javascript client for the EobotAPI. Promise-based

Downloads

13

Readme

Simplified javascript client for the EobotAPI. Promise-based

Eobot API

npm package

This node module provides a Node.js implementation for the API of the Cloud mining and Bitcoin mining Eobot.com

Eobot is the easiest, cheapest, and best way to get or mine Bitcoin, Ethereum, Litecoin, Bitcoin Cash, Dogecoin, Ripple, Dash, Golem, Cardano, CureCoin, NEM, Monero, Zcash, Factom, Bytecoin, STEEM, Lisk, EOS, USD, Stellar, Ethereum Classic, and Grin. Whether or not you use our Cloud Mining or your own hardware, you can mine any cryptocurrency, regardless if it is based on a SHA-256 or Scrypt algorithm.

The API that Eobot expose are listed in this page: Eobot Developers.

API Implementation

I implement all the APIs listed in the developers page. Every API uses as input all the parameters required by Eobot, in the same order as described in the developers page. As example a simple call to get balances could be

const eobot = require('eobot-api-promise');

const userid = 12345;

eobot.getBalances(userid)
.then(balances => {
  console.info(balances);
});

Based on the example above, the response for the get balance is

{
  
  "Total": "0.15710920",
  "BTC": "0.00000044",
  "ETH": "0.00000000",



  "GHS": "0.00000000",
  "GHS2": "0.00000000",
  "SCRYPT": "0.00000000",
  "BPPD": "0.00000000",
  "PPD": "0.00000000"
}

Get Coin Price

Returns criptocurrency/coin price. Pass in querystring 'coin'.

eobot.getCoinPrice(coin)

Get Supported Coins

Returns criptocurrency/coin price. Pass in querystring 'currency'.

eobot.getSupportedCoins(currency?) 

Get Supported Fiat

Returns exchange rates.

eobot.getSupportedFiat() 

Get Balances

Returns total account value followed by cryptocurrency balances. Pass in querystring UserID.

eobot.getBalances(userid)

Get Mining Mode

Returns the cryptocurrency you are currently mining. Pass in querystring UserID.

eobot.getMiningMode(userid)

Get Speed

Returns the mining and cloud speeds. Pass in querystring UserID.

eobot.getSpeed(userid)

Get Deposit Address

Returns a deposit wallet address for specified cryptocurrency. Pass in querystring UserID and deposit type (BTC, ETH, LTC, etc.).

eobot.getDepositAddress(userid, depositType)

Get UserID

Returns the UserID. Pass in querystring (or post parameters) email and password/API Key.

eobot.getUserID(email, password)

Set Mining Mode

Programmatically set your mining mode. Pass in querystring (or post parameters) UserID, email, password/API Key, and mining mode (BTC, ETH, LTC, etc.).

eobot.setMiningMode(userid, email, password, miningMode)

Set Automatic Withdraw

Programmatically set an automatic withdraw. Pass in querystring (or post parameters) UserID, email, password/API Key, automatic withdraw type (BTC, ETH, LTC, etc.), amount, and wallet address.

eobot.setAutomaticWithdraw(userid, email, password, currency, amount, walletAddress)

Manual Withdraw

Performs a one-time manual withdraw. Pass in querystring (or post parameters) UserID, email, password/API Key, manual withdraw type (BTC, ETH, LTC, etc.), amount, and wallet address.

eobot.manualWithdraw(userid, email, password, currency, amount, walletAddress)

Buy Cloud with Cryptocurrency

Programmatically buy Cloud. Pass in querystring (or post parameters) UserID, email, password/API Key, cloud type (GHS or GHS4 or SCRYPT), cryptocurrency source (BTC, ETH, LTC, etc.), and cryptocurrency amount.

eobot.buyCloudWithCryptocurrency(userid, email, password, currencyFrom, amount, cloudType)

Exchange Estimate

Programmatically get estimate. Pass in querystring from coin type, to coin type, and cryptocurrency amount.

eobot.exchangeEstimate(hasExchangeFee, currencyFrom, amount, currencyTo)

Set Api URL

Set the endpoint url.

eobot.setApiURL(newApiUrl)

Disclaimer

I'm not associated or related with Eobot.com, this is my implementation based on the public API. I'm not responsible if you lose money using this library because this is a simple node.js wrapper for the Eobot.com Public API.

License

GPL-3.0. See gpl-3.0-standalone.html for details.