Skip to content

Commit 432c0ce

Browse files
committed
Add bisq exchange
Signed-off-by: Herklos <herklos@drakkar.software>
1 parent 925fd60 commit 432c0ce

3 files changed

Lines changed: 1038 additions & 0 deletions

File tree

ts/src/abstract/bisq.ts

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
// -------------------------------------------------------------------------------
2+
3+
// PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN:
4+
// https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code
5+
6+
// -------------------------------------------------------------------------------
7+
8+
import { implicitReturnType } from '../base/types.js';
9+
import { Exchange as _Exchange } from '../base/Exchange.js';
10+
11+
interface Exchange {
12+
privatePostDisputeagentsRegisterdisputeagent (params?: {}): Promise<implicitReturnType>;
13+
privatePostGetversionGetversion (params?: {}): Promise<implicitReturnType>;
14+
privatePostHelpGetmethodhelp (params?: {}): Promise<implicitReturnType>;
15+
privatePostOffersGetoffers (params?: {}): Promise<implicitReturnType>;
16+
privatePostOffersGetoffer (params?: {}): Promise<implicitReturnType>;
17+
privatePostOffersGetoffercategory (params?: {}): Promise<implicitReturnType>;
18+
privatePostOffersGetmyoffers (params?: {}): Promise<implicitReturnType>;
19+
privatePostOffersGetmyoffer (params?: {}): Promise<implicitReturnType>;
20+
privatePostOffersGetbsqswapoffers (params?: {}): Promise<implicitReturnType>;
21+
privatePostOffersGetbsqswapoffer (params?: {}): Promise<implicitReturnType>;
22+
privatePostOffersGetmybsqswapoffers (params?: {}): Promise<implicitReturnType>;
23+
privatePostOffersGetmybsqswapoffer (params?: {}): Promise<implicitReturnType>;
24+
privatePostOffersEditoffer (params?: {}): Promise<implicitReturnType>;
25+
privatePostOffersCreatebsqswapoffer (params?: {}): Promise<implicitReturnType>;
26+
privatePostOffersCreateoffer (params?: {}): Promise<implicitReturnType>;
27+
privatePostOffersCanceloffer (params?: {}): Promise<implicitReturnType>;
28+
privatePostPaymentaccountsCreatecryptocurrencypaymentaccount (params?: {}): Promise<implicitReturnType>;
29+
privatePostPaymentaccountsCreatepaymentaccount (params?: {}): Promise<implicitReturnType>;
30+
privatePostPaymentaccountsGetcryptocurrencypaymentmethods (params?: {}): Promise<implicitReturnType>;
31+
privatePostPaymentaccountsGetpaymentaccountform (params?: {}): Promise<implicitReturnType>;
32+
privatePostPaymentaccountsGetpaymentaccounts (params?: {}): Promise<implicitReturnType>;
33+
privatePostPaymentaccountsGetpaymentmethods (params?: {}): Promise<implicitReturnType>;
34+
privatePostPriceGetaveragebsqtradeprice (params?: {}): Promise<implicitReturnType>;
35+
privatePostPriceGetmarketprice (params?: {}): Promise<implicitReturnType>;
36+
privatePostShutdownserverStop (params?: {}): Promise<implicitReturnType>;
37+
privatePostTradesClosetrade (params?: {}): Promise<implicitReturnType>;
38+
privatePostTradesConfirmpaymentreceived (params?: {}): Promise<implicitReturnType>;
39+
privatePostTradesConfirmpaymentstarted (params?: {}): Promise<implicitReturnType>;
40+
privatePostTradesFailtrade (params?: {}): Promise<implicitReturnType>;
41+
privatePostTradesGettrade (params?: {}): Promise<implicitReturnType>;
42+
privatePostTradesGettrades (params?: {}): Promise<implicitReturnType>;
43+
privatePostTradesTakeoffer (params?: {}): Promise<implicitReturnType>;
44+
privatePostTradesUnfailtrade (params?: {}): Promise<implicitReturnType>;
45+
privatePostTradesWithdrawfunds (params?: {}): Promise<implicitReturnType>;
46+
privatePostWalletsGetaddressbalance (params?: {}): Promise<implicitReturnType>;
47+
privatePostWalletsGetbalances (params?: {}): Promise<implicitReturnType>;
48+
privatePostWalletsGetfundingaddresses (params?: {}): Promise<implicitReturnType>;
49+
privatePostWalletsGetnetwork (params?: {}): Promise<implicitReturnType>;
50+
privatePostWalletsGettransaction (params?: {}): Promise<implicitReturnType>;
51+
privatePostWalletsGettxfeerate (params?: {}): Promise<implicitReturnType>;
52+
privatePostWalletsGetunusedbsqaddress (params?: {}): Promise<implicitReturnType>;
53+
privatePostWalletsLockwallet (params?: {}): Promise<implicitReturnType>;
54+
privatePostWalletsRemovewalletpassword (params?: {}): Promise<implicitReturnType>;
55+
privatePostWalletsSendbsq (params?: {}): Promise<implicitReturnType>;
56+
privatePostWalletsSendbtc (params?: {}): Promise<implicitReturnType>;
57+
privatePostWalletsSettxfeeratepreference (params?: {}): Promise<implicitReturnType>;
58+
privatePostWalletsSetwalletpassword (params?: {}): Promise<implicitReturnType>;
59+
privatePostWalletsUnlockwallet (params?: {}): Promise<implicitReturnType>;
60+
privatePostWalletsUnsettxfeeratepreference (params?: {}): Promise<implicitReturnType>;
61+
privatePostWalletsVerifybsqsenttoaddress (params?: {}): Promise<implicitReturnType>;
62+
}
63+
abstract class Exchange extends _Exchange {}
64+
65+
export default Exchange

0 commit comments

Comments
 (0)