Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions cs/ccxt/api/alephx.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
// -------------------------------------------------------------------------------

// PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN:
// https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code

// -------------------------------------------------------------------------------

namespace ccxt;

public partial class alephx : Exchange
{
public alephx (object args = null): base(args) {}

public async Task<object> v1PublicGetSystemStatus (object parameters = null)
{
return await this.callAsync ("v1PublicGetSystemStatus",parameters);
}

public async Task<object> v1PrivateGetAssetsBalances (object parameters = null)
{
return await this.callAsync ("v1PrivateGetAssetsBalances",parameters);
}

public async Task<object> v1PrivateGetOrders (object parameters = null)
{
return await this.callAsync ("v1PrivateGetOrders",parameters);
}

public async Task<object> v1PrivateGetOrdersId (object parameters = null)
{
return await this.callAsync ("v1PrivateGetOrdersId",parameters);
}

public async Task<object> v1PrivateGetTrades (object parameters = null)
{
return await this.callAsync ("v1PrivateGetTrades",parameters);
}

public async Task<object> v1PrivatePostOrders (object parameters = null)
{
return await this.callAsync ("v1PrivatePostOrders",parameters);
}

public async Task<object> v1PrivatePatchOrdersIdCancel (object parameters = null)
{
return await this.callAsync ("v1PrivatePatchOrdersIdCancel",parameters);
}

}
5 changes: 5 additions & 0 deletions dist/cjs/ccxt.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ var Precise = require('./src/base/Precise.js');
var functions = require('./src/base/functions.js');
var errors = require('./src/base/errors.js');
var ace = require('./src/ace.js');
var alephx = require('./src/alephx.js');
var alpaca = require('./src/alpaca.js');
var ascendex = require('./src/ascendex.js');
var bequant = require('./src/bequant.js');
Expand Down Expand Up @@ -122,6 +123,7 @@ var xt = require('./src/xt.js');
var yobit = require('./src/yobit.js');
var zaif = require('./src/zaif.js');
var zonda = require('./src/zonda.js');
var alephx$1 = require('./src/pro/alephx.js');
var alpaca$1 = require('./src/pro/alpaca.js');
var ascendex$1 = require('./src/pro/ascendex.js');
var bequant$1 = require('./src/pro/bequant.js');
Expand Down Expand Up @@ -202,6 +204,7 @@ const version = '4.4.34';
Exchange["default"].ccxtVersion = version;
const exchanges = {
'ace': ace,
'alephx': alephx,
'alpaca': alpaca,
'ascendex': ascendex,
'bequant': bequant,
Expand Down Expand Up @@ -313,6 +316,7 @@ const exchanges = {
'zonda': zonda,
};
const pro = {
'alephx': alephx$1,
'alpaca': alpaca$1,
'ascendex': ascendex$1,
'bequant': bequant$1,
Expand Down Expand Up @@ -438,6 +442,7 @@ exports.RequestTimeout = errors.RequestTimeout;
exports.UnsubscribeError = errors.UnsubscribeError;
exports.errors = errors;
exports.ace = ace;
exports.alephx = alephx;
exports.alpaca = alpaca;
exports.ascendex = ascendex;
exports.bequant = bequant;
Expand Down
9 changes: 9 additions & 0 deletions dist/cjs/src/abstract/alephx.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
'use strict';

var Exchange$1 = require('../base/Exchange.js');

// -------------------------------------------------------------------------------
class Exchange extends Exchange$1["default"] {
}

module.exports = Exchange;
Loading