UNPKG

node-bitstamp

Version:

bitstamp rest and websocket v1 and v2 api client

97 lines (77 loc) 4.03 kB
"use strict"; const {Bitstamp, CURRENCY} = require("../index.js"); //printing available currencies console.log(CURRENCY); /* REST-API */ // @ https://www.bitstamp.net/api/ // @ https://www.bitstamp.net/account/login/ // To get an API key, go to "Account", "Security" and then "API Access". // Set permissions and click "Generate key" // Dont forget to active the key and confirm the email. const key = "abc3def4ghi5jkl6mno7"; const secret = "abcdefghijklmno"; const clientId = "123123"; const bitstamp = new Bitstamp({ key, secret, clientId, timeout: 5000, rateLimit: true //turned on by default }); const run = async () => { /* Every api function returns a bluebird promise. The promise only rejects on network errors or timeouts. A successful promise always resolves in an object containing status, headers and body. status is the http status code as number, headers is an object of http response headers and body is the parsed JSON response body of the api, you dont need to parse the results yourself you can simply continue by accessing the object. */ /* PUBLIC */ await bitstamp.ticker(CURRENCY.ETH_BTC).then(({status, headers, body}) => console.log(body)); await bitstamp.tickerHour(CURRENCY.ETH_BTC).then(({status, headers, body}) => console.log(body)); await bitstamp.ohlcData(CURRENCY.ETH_BTC).then(({status, headers, body}) => console.log(body)); await bitstamp.orderBook(CURRENCY.ETH_BTC).then(({status, headers, body}) => console.log(body)); await bitstamp.transactions(CURRENCY.ETH_BTC, "hour").then(({status, headers, body}) => console.log(body)); await bitstamp.conversionRate().then(({status, headers, body}) => console.log(body)); /* PRIVATE */ const balance = await bitstamp.balance().then(({body:data}) => data); const cryptoTransactions = await bitstamp.cryptoTransactions().then(({body:data}) => data); /* await bitstamp.userTransaction(CURRENCY.ETH_BTC, {offset, limit, sort}); await bitstamp.openOrders(CURRENCY.ETH_BTC); await bitstamp.openOrdersAll(); await bitstamp.orderStatus(id); await bitstamp.cancelOrder(id); await bitstamp.cancelOrdersAll(); await bitstamp.buyLimitOrder(amount, price, currency, limit_price, daily_order); await bitstamp.sellLimitOrder(amount, price, currency, limit_price, daily_order); await bitstamp.buyMarketOrder(amount, currency); await bitstamp.sellMarketOrder(amount, currency); await bitstamp.withDrawalRequests(timedelta); await bitstamp.bitcoinWithdrawal(amount, address, instant); await bitstamp.bchWithdrawal(amount, address); await bitstamp.litecoinWithdrawal(amount, address); await bitstamp.ethereumWithdrawal(amount, address); await bitstamp.rippleWithdrawal(amount, address, currency); await bitstamp.xrpWithdrawal(amount, address, destination_tag); await bitstamp.bitcoinDepositAdress().then(({body}) => console.log(body)); await bitstamp.bchDepositAdress().then(({body}) => console.log(body)); await bitstamp.litecoinDepositAdress().then(({body}) => console.log(body)); await bitstamp.ethereumDepositAdress().then(({body}) => console.log(body)); await bitstamp.rippleDepositAdress().then(({body}) => console.log(body)); await bitstamp.xrpDepositAdress().then(({body}) => console.log(body)); await bitstamp.unconfirmedBitcoinDeposits(); await bitstamp.transferSubToMain(amount, currency, subAccount); await bitstamp.transferMainToSub(amount, currency, subAccount); await bitstamp.openBankWithdrawal(); await bitstamp.bankWithdrawalStatus(id); await bitstamp.cancelBankWithdrawal(id); await bitstamp.newLiquidationAddress(currency); await bitstamp.liquidationAddressInfo(address); */ }; run().then(() => { console.log(bitstamp.getStats()); bitstamp.close(); });