1.2.1 • Published 7 years ago

cryptox v1.2.1

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

cryptox

Build Status Dependencies Status

cryptox is a node.js wrapper for REST API for multiple crypto currency exchanges.

cryptox manages API communication with different exchanges and provides common methods for all exchanges. Differences between the different API's are abstracted away.

Contents

Install

npm install cryptox

Use

var Cryptox = require("cryptox");
var account = new Cryptox("btce", {key: "your_key", secret: "your_secret"});
	
account.getOpenOrders({pair: "LTC_USD"}, function (err, openOrders) {
    if (!err)
	    console.log(openOrders);
});

Example result:

{
    "timestamp": "2015-02-03T00:03:27+00:00",
    "error": "",
    "data": [
        {
            "order_id": "563489985",
            "pair": "LTC_USD",
            "type": "buy",
            "amount": "1",
            "rate": "0.1",
            "status": "0",
            "created_at": "2015-02-01T19:23:15+00:00"
        },
        {
            "order_id": "563612426",
            "pair": "LTC_USD",
            "type": "buy",
            "amount": "2",
            "rate": "0.5",
            "status": "0",
            "created_at": "2015-02-01T20:59:53+00:00"
        }        
    ]
}

Supported Exchanges and Implemented methods

if you are interested in extending cryptox for different exchange or a method not yet implemented, check out the document Exchanges

BitfinexBitstampBitXBTC-eCEX.ioGdaxPoloniexOXR 1
getRateFIFIFIFIFIFIFI
getTickerFIFIFIFIFIFI
getOrderBookFIFIFIFIFIFI
getTradesFI
getFeeFIFIFI
getTransactionsFIFIFI
getBalanceFIFIFIFIFI
getMarginPositionsFI
getOpenOrdersFIFI
postSellOrder
postBuyOrder
cancelOrder
getLendBookFI
native API callsFIFIFIFIFIFIFI

FI = Fully Implemented
FR = Fully Implemented, but restrictions apply; refer to notes below (if any)
PI = Partially Implemented; refer to notes below (if any)
= Not Supported

1 OXR (Open Exchange Rates) is not a crypto exchange, however it provides exchange rates for world fiat currencies

ChangeLog

cryptox module adheres to Semantic Versioning for versioning: MAJOR.MINOR.PATCH.
1. MAJOR version increments when non-backwards compatible API changes are introduced
2. MINOR version increments when functionality in a backwards-compatible manner are introduced
3. PATCH version increments when backwards-compatible bug fixes are made

See detailed ChangeLog

Documentation

See API documentation

FAQ

See FAQ

License

MIT