UNPKG

ccxt

Version:

A cryptocurrency trading API with more than 100 exchanges in JavaScript / TypeScript / Python / C# / PHP / Go

79 lines (78 loc) 6.3 kB
import { implicitReturnType } from '../base/types.js'; import { Exchange as _Exchange } from '../base/Exchange.js'; interface Exchange { publicGetOpenapiV1Ping(params?: {}): Promise<implicitReturnType>; publicGetOpenapiV1Time(params?: {}): Promise<implicitReturnType>; publicGetOpenapiV1UserIp(params?: {}): Promise<implicitReturnType>; publicGetOpenapiQuoteV1Ticker24hr(params?: {}): Promise<implicitReturnType>; publicGetOpenapiQuoteV1TickerPrice(params?: {}): Promise<implicitReturnType>; publicGetOpenapiQuoteV1TickerBookTicker(params?: {}): Promise<implicitReturnType>; publicGetOpenapiV1ExchangeInfo(params?: {}): Promise<implicitReturnType>; publicGetOpenapiQuoteV1Depth(params?: {}): Promise<implicitReturnType>; publicGetOpenapiQuoteV1Klines(params?: {}): Promise<implicitReturnType>; publicGetOpenapiQuoteV1Trades(params?: {}): Promise<implicitReturnType>; publicGetOpenapiV1Pairs(params?: {}): Promise<implicitReturnType>; publicGetOpenapiQuoteV1AvgPrice(params?: {}): Promise<implicitReturnType>; privateGetOpenapiV1CheckSysStatus(params?: {}): Promise<implicitReturnType>; privateGetOpenapiWalletV1ConfigGetall(params?: {}): Promise<implicitReturnType>; privateGetOpenapiWalletV1DepositAddress(params?: {}): Promise<implicitReturnType>; privateGetOpenapiWalletV1DepositHistory(params?: {}): Promise<implicitReturnType>; privateGetOpenapiWalletV1WithdrawHistory(params?: {}): Promise<implicitReturnType>; privateGetOpenapiWalletV1WithdrawAddressWhitelist(params?: {}): Promise<implicitReturnType>; privateGetOpenapiV1Account(params?: {}): Promise<implicitReturnType>; privateGetOpenapiV1ApiKeys(params?: {}): Promise<implicitReturnType>; privateGetOpenapiV1OpenOrders(params?: {}): Promise<implicitReturnType>; privateGetOpenapiV1AssetTradeFee(params?: {}): Promise<implicitReturnType>; privateGetOpenapiV1Order(params?: {}): Promise<implicitReturnType>; privateGetOpenapiV1HistoryOrders(params?: {}): Promise<implicitReturnType>; privateGetOpenapiV1MyTrades(params?: {}): Promise<implicitReturnType>; privateGetOpenapiV1CapitalDepositHistory(params?: {}): Promise<implicitReturnType>; privateGetOpenapiV1CapitalWithdrawHistory(params?: {}): Promise<implicitReturnType>; privateGetOpenapiV3PaymentRequestGetPaymentRequest(params?: {}): Promise<implicitReturnType>; privateGetMerchantApiV1GetInvoices(params?: {}): Promise<implicitReturnType>; privateGetOpenapiAccountV3CryptoAccounts(params?: {}): Promise<implicitReturnType>; privateGetOpenapiTransferV3TransfersId(params?: {}): Promise<implicitReturnType>; privateGetOpenapiV1SubAccountList(params?: {}): Promise<implicitReturnType>; privateGetOpenapiV1SubAccountAsset(params?: {}): Promise<implicitReturnType>; privateGetOpenapiV1SubAccountTransferUniversalTransferHistory(params?: {}): Promise<implicitReturnType>; privateGetOpenapiV1SubAccountTransferSubHistory(params?: {}): Promise<implicitReturnType>; privateGetOpenapiV1SubAccountApikeyIpRestriction(params?: {}): Promise<implicitReturnType>; privateGetOpenapiV1SubAccountWalletDepositAddress(params?: {}): Promise<implicitReturnType>; privateGetOpenapiV1SubAccountWalletDepositHistory(params?: {}): Promise<implicitReturnType>; privateGetOpenapiV1FundCollectGetFundRecord(params?: {}): Promise<implicitReturnType>; privateGetOpenapiV1AssetTransactionHistory(params?: {}): Promise<implicitReturnType>; privatePostOpenapiWalletV1WithdrawApply(params?: {}): Promise<implicitReturnType>; privatePostOpenapiV1OrderTest(params?: {}): Promise<implicitReturnType>; privatePostOpenapiV1Order(params?: {}): Promise<implicitReturnType>; privatePostOpenapiV1CapitalWithdrawApply(params?: {}): Promise<implicitReturnType>; privatePostOpenapiV1CapitalDepositApply(params?: {}): Promise<implicitReturnType>; privatePostOpenapiV3PaymentRequestPaymentRequests(params?: {}): Promise<implicitReturnType>; privatePostOpenapiV3PaymentRequestDeletePaymentRequest(params?: {}): Promise<implicitReturnType>; privatePostOpenapiV3PaymentRequestPaymentRequestReminder(params?: {}): Promise<implicitReturnType>; privatePostOpenapiV1UserDataStream(params?: {}): Promise<implicitReturnType>; privatePostMerchantApiV1Invoices(params?: {}): Promise<implicitReturnType>; privatePostMerchantApiV1InvoicesCancel(params?: {}): Promise<implicitReturnType>; privatePostOpenapiConvertV1GetSupportedTradingPairs(params?: {}): Promise<implicitReturnType>; privatePostOpenapiConvertV1GetQuote(params?: {}): Promise<implicitReturnType>; privatePostOpenapiConvertV1AccpetQuote(params?: {}): Promise<implicitReturnType>; privatePostOpenapiConvertV1QueryOrderHistory(params?: {}): Promise<implicitReturnType>; privatePostOpenapiFiatV1SupportChannel(params?: {}): Promise<implicitReturnType>; privatePostOpenapiFiatV1CashOut(params?: {}): Promise<implicitReturnType>; privatePostOpenapiFiatV1History(params?: {}): Promise<implicitReturnType>; privatePostOpenapiMigrationV4Sellorder(params?: {}): Promise<implicitReturnType>; privatePostOpenapiMigrationV4ValidateField(params?: {}): Promise<implicitReturnType>; privatePostOpenapiTransferV3Transfers(params?: {}): Promise<implicitReturnType>; privatePostOpenapiV1SubAccountCreate(params?: {}): Promise<implicitReturnType>; privatePostOpenapiV1SubAccountTransferUniversalTransfer(params?: {}): Promise<implicitReturnType>; privatePostOpenapiV1SubAccountTransferSubToMaster(params?: {}): Promise<implicitReturnType>; privatePostOpenapiV1SubAccountApikeyAddIpRestriction(params?: {}): Promise<implicitReturnType>; privatePostOpenapiV1SubAccountApikeyDeleteIpRestriction(params?: {}): Promise<implicitReturnType>; privatePostOpenapiV1FundCollectCollectFromSubAccount(params?: {}): Promise<implicitReturnType>; privatePutOpenapiV1UserDataStream(params?: {}): Promise<implicitReturnType>; privateDeleteOpenapiV1Order(params?: {}): Promise<implicitReturnType>; privateDeleteOpenapiV1OpenOrders(params?: {}): Promise<implicitReturnType>; privateDeleteOpenapiV1UserDataStream(params?: {}): Promise<implicitReturnType>; } declare abstract class Exchange extends _Exchange { } export default Exchange;