Socket
Socket
Sign inDemoInstall

stocks-exchange-client

Package Overview
Dependencies
209
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.2.1 to 2.2.2

22

lib/v3/private-methods.js

@@ -16,3 +16,3 @@ 'use strict';

getProfileInfo(cb) {
this.url = this.url + '/profile/info';
this.url = this.parent_url + '/profile/info';
this.request({}, function (res) {

@@ -24,3 +24,3 @@ cb(res);

getProfileWallets(params, cb) {
this.url = this.url + '/profile/wallets';
this.url = this.parent_url + '/profile/wallets';
this.request(params, function (res) {

@@ -32,3 +32,3 @@ cb(res);

getProfileWalletsById(walletId, cb) {
this.url = this.url + '/profile/wallets/' + walletId;
this.url = this.parent_url + '/profile/wallets/' + walletId;
this.request({}, function (res) {

@@ -40,3 +40,3 @@ cb(res);

setProfileWalletsByCurrencyId(currencyId, cb) {
this.url = this.url + '/profile/wallets/' + currencyId;
this.url = this.parent_url + '/profile/wallets/' + currencyId;
this.request({}, function (res) {

@@ -48,3 +48,3 @@ cb(res);

getProfileWalletsAddressById(walletId, cb) {
this.url = this.url + '/profile/wallets/address/' + walletId;
this.url = this.parent_url + '/profile/wallets/address/' + walletId;
this.request({}, function (res) {

@@ -56,3 +56,3 @@ cb(res);

setProfileWalletsAddressById(walletId, cb) {
this.url = this.url + '/profile/wallets/address/' + walletId;
this.url = this.parent_url + '/profile/wallets/address/' + walletId;
this.request({}, function (res) {

@@ -64,3 +64,3 @@ cb(res);

getProfileDeposits(params, cb) {
this.url = this.url + '/profile/deposits';
this.url = this.parent_url + '/profile/deposits';
this.request(params, function (res) {

@@ -72,3 +72,3 @@ cb(res);

getProfileDepositsById(id, cb) {
this.url = this.url + '/profile/deposits/' + id;
this.url = this.parent_url + '/profile/deposits/' + id;
this.request({}, function (res) {

@@ -80,3 +80,3 @@ cb(res);

getProfileWithdrawals(params, cb) {
this.url = this.url + '/profile/withdrawals';
this.url = this.parent_url + '/profile/withdrawals';
this.request(params, function (res) {

@@ -88,3 +88,3 @@ cb(res);

getProfileWithdrawalsById(id, cb) {
this.url = this.url + '/profile/withdrawals/' + id;
this.url = this.parent_url + '/profile/withdrawals/' + id;
this.request({}, function (res) {

@@ -96,3 +96,3 @@ cb(res);

sendCreateProfileWithdrawals(currency_id, amount, address, additional_address, cb) {
this.url = this.url + '/profile/withdraw';
this.url = this.parent_url + '/profile/withdraw';
var params = {

@@ -99,0 +99,0 @@ currency_id: currency_id,

{
"name": "stocks-exchange-client",
"version": "2.2.1",
"version": "2.2.2",
"description": "STEX (former Stocks.Exchange) provides all the core exchange functionality, and additional merchant tools available via the HTTPS API where all returned messages are in JSON. It's much easier to work with the API by using one of the clients provided by StocksExchange, so while this page describes the API in case you want or need to build your own client, the examples use the NodeJS client.",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc