gate-io-api 0.0.74__py3-none-any.whl → 0.0.100__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of gate-io-api might be problematic. Click here for more details.
- gate/ccxt/__init__.py +2 -1
- gate/ccxt/abstract/gate.py +62 -18
- gate/ccxt/async_support/__init__.py +2 -1
- gate/ccxt/async_support/base/exchange.py +150 -21
- gate/ccxt/async_support/base/throttler.py +1 -1
- gate/ccxt/async_support/base/ws/client.py +20 -2
- gate/ccxt/async_support/base/ws/future.py +5 -3
- gate/ccxt/async_support/gate.py +339 -241
- gate/ccxt/base/decimal_to_precision.py +14 -10
- gate/ccxt/base/errors.py +12 -0
- gate/ccxt/base/exchange.py +466 -56
- gate/ccxt/base/types.py +3 -0
- gate/ccxt/gate.py +339 -241
- gate/ccxt/pro/__init__.py +2 -1
- gate/ccxt/pro/gate.py +14 -7
- {gate_io_api-0.0.74.dist-info → gate_io_api-0.0.100.dist-info}/METADATA +70 -25
- {gate_io_api-0.0.74.dist-info → gate_io_api-0.0.100.dist-info}/RECORD +18 -18
- {gate_io_api-0.0.74.dist-info → gate_io_api-0.0.100.dist-info}/WHEEL +0 -0
gate/ccxt/__init__.py
CHANGED
|
@@ -26,7 +26,7 @@ sys.modules['ccxt'] = ccxt_module
|
|
|
26
26
|
|
|
27
27
|
# ----------------------------------------------------------------------------
|
|
28
28
|
|
|
29
|
-
__version__ = '4.
|
|
29
|
+
__version__ = '4.5.15'
|
|
30
30
|
|
|
31
31
|
# ----------------------------------------------------------------------------
|
|
32
32
|
|
|
@@ -59,6 +59,7 @@ from ccxt.base.errors import NoChange # noqa: F4
|
|
|
59
59
|
from ccxt.base.errors import MarginModeAlreadySet # noqa: F401
|
|
60
60
|
from ccxt.base.errors import MarketClosed # noqa: F401
|
|
61
61
|
from ccxt.base.errors import ManualInteractionNeeded # noqa: F401
|
|
62
|
+
from ccxt.base.errors import RestrictedLocation # noqa: F401
|
|
62
63
|
from ccxt.base.errors import InsufficientFunds # noqa: F401
|
|
63
64
|
from ccxt.base.errors import InvalidAddress # noqa: F401
|
|
64
65
|
from ccxt.base.errors import AddressPending # noqa: F401
|
gate/ccxt/abstract/gate.py
CHANGED
|
@@ -3,6 +3,8 @@ from ccxt.base.types import Entry
|
|
|
3
3
|
|
|
4
4
|
class ImplicitAPI:
|
|
5
5
|
public_wallet_get_currency_chains = publicWalletGetCurrencyChains = Entry('currency_chains', ['public', 'wallet'], 'GET', {'cost': 1})
|
|
6
|
+
public_unified_get_currencies = publicUnifiedGetCurrencies = Entry('currencies', ['public', 'unified'], 'GET', {'cost': 1})
|
|
7
|
+
public_unified_get_history_loan_rate = publicUnifiedGetHistoryLoanRate = Entry('history_loan_rate', ['public', 'unified'], 'GET', {'cost': 1})
|
|
6
8
|
public_spot_get_currencies = publicSpotGetCurrencies = Entry('currencies', ['public', 'spot'], 'GET', {'cost': 1})
|
|
7
9
|
public_spot_get_currencies_currency = publicSpotGetCurrenciesCurrency = Entry('currencies/{currency}', ['public', 'spot'], 'GET', {'cost': 1})
|
|
8
10
|
public_spot_get_currency_pairs = publicSpotGetCurrencyPairs = Entry('currency_pairs', ['public', 'spot'], 'GET', {'cost': 1})
|
|
@@ -12,13 +14,16 @@ class ImplicitAPI:
|
|
|
12
14
|
public_spot_get_trades = publicSpotGetTrades = Entry('trades', ['public', 'spot'], 'GET', {'cost': 1})
|
|
13
15
|
public_spot_get_candlesticks = publicSpotGetCandlesticks = Entry('candlesticks', ['public', 'spot'], 'GET', {'cost': 1})
|
|
14
16
|
public_spot_get_time = publicSpotGetTime = Entry('time', ['public', 'spot'], 'GET', {'cost': 1})
|
|
17
|
+
public_spot_get_insurance_history = publicSpotGetInsuranceHistory = Entry('insurance_history', ['public', 'spot'], 'GET', {'cost': 1})
|
|
18
|
+
public_margin_get_uni_currency_pairs = publicMarginGetUniCurrencyPairs = Entry('uni/currency_pairs', ['public', 'margin'], 'GET', {'cost': 1})
|
|
19
|
+
public_margin_get_uni_currency_pairs_currency_pair = publicMarginGetUniCurrencyPairsCurrencyPair = Entry('uni/currency_pairs/{currency_pair}', ['public', 'margin'], 'GET', {'cost': 1})
|
|
20
|
+
public_margin_get_loan_margin_tiers = publicMarginGetLoanMarginTiers = Entry('loan_margin_tiers', ['public', 'margin'], 'GET', {'cost': 1})
|
|
15
21
|
public_margin_get_currency_pairs = publicMarginGetCurrencyPairs = Entry('currency_pairs', ['public', 'margin'], 'GET', {'cost': 1})
|
|
16
22
|
public_margin_get_currency_pairs_currency_pair = publicMarginGetCurrencyPairsCurrencyPair = Entry('currency_pairs/{currency_pair}', ['public', 'margin'], 'GET', {'cost': 1})
|
|
17
23
|
public_margin_get_funding_book = publicMarginGetFundingBook = Entry('funding_book', ['public', 'margin'], 'GET', {'cost': 1})
|
|
18
24
|
public_margin_get_cross_currencies = publicMarginGetCrossCurrencies = Entry('cross/currencies', ['public', 'margin'], 'GET', {'cost': 1})
|
|
19
25
|
public_margin_get_cross_currencies_currency = publicMarginGetCrossCurrenciesCurrency = Entry('cross/currencies/{currency}', ['public', 'margin'], 'GET', {'cost': 1})
|
|
20
|
-
|
|
21
|
-
public_margin_get_uni_currency_pairs_currency_pair = publicMarginGetUniCurrencyPairsCurrencyPair = Entry('uni/currency_pairs/{currency_pair}', ['public', 'margin'], 'GET', {'cost': 1})
|
|
26
|
+
public_flash_swap_get_currency_pairs = publicFlash_swapGetCurrencyPairs = Entry('currency_pairs', ['public', 'flash_swap'], 'GET', {'cost': 1})
|
|
22
27
|
public_flash_swap_get_currencies = publicFlash_swapGetCurrencies = Entry('currencies', ['public', 'flash_swap'], 'GET', {'cost': 1})
|
|
23
28
|
public_futures_get_settle_contracts = publicFuturesGetSettleContracts = Entry('{settle}/contracts', ['public', 'futures'], 'GET', {'cost': 1})
|
|
24
29
|
public_futures_get_settle_contracts_contract = publicFuturesGetSettleContractsContract = Entry('{settle}/contracts/{contract}', ['public', 'futures'], 'GET', {'cost': 1})
|
|
@@ -40,6 +45,7 @@ class ImplicitAPI:
|
|
|
40
45
|
public_delivery_get_settle_candlesticks = publicDeliveryGetSettleCandlesticks = Entry('{settle}/candlesticks', ['public', 'delivery'], 'GET', {'cost': 1})
|
|
41
46
|
public_delivery_get_settle_tickers = publicDeliveryGetSettleTickers = Entry('{settle}/tickers', ['public', 'delivery'], 'GET', {'cost': 1})
|
|
42
47
|
public_delivery_get_settle_insurance = publicDeliveryGetSettleInsurance = Entry('{settle}/insurance', ['public', 'delivery'], 'GET', {'cost': 1})
|
|
48
|
+
public_delivery_get_settle_risk_limit_tiers = publicDeliveryGetSettleRiskLimitTiers = Entry('{settle}/risk_limit_tiers', ['public', 'delivery'], 'GET', {'cost': 1})
|
|
43
49
|
public_options_get_underlyings = publicOptionsGetUnderlyings = Entry('underlyings', ['public', 'options'], 'GET', {'cost': 1})
|
|
44
50
|
public_options_get_expirations = publicOptionsGetExpirations = Entry('expirations', ['public', 'options'], 'GET', {'cost': 1})
|
|
45
51
|
public_options_get_contracts = publicOptionsGetContracts = Entry('contracts', ['public', 'options'], 'GET', {'cost': 1})
|
|
@@ -54,6 +60,13 @@ class ImplicitAPI:
|
|
|
54
60
|
public_options_get_trades = publicOptionsGetTrades = Entry('trades', ['public', 'options'], 'GET', {'cost': 1})
|
|
55
61
|
public_earn_get_uni_currencies = publicEarnGetUniCurrencies = Entry('uni/currencies', ['public', 'earn'], 'GET', {'cost': 1})
|
|
56
62
|
public_earn_get_uni_currencies_currency = publicEarnGetUniCurrenciesCurrency = Entry('uni/currencies/{currency}', ['public', 'earn'], 'GET', {'cost': 1})
|
|
63
|
+
public_earn_get_dual_investment_plan = publicEarnGetDualInvestmentPlan = Entry('dual/investment_plan', ['public', 'earn'], 'GET', {'cost': 1})
|
|
64
|
+
public_earn_get_structured_products = publicEarnGetStructuredProducts = Entry('structured/products', ['public', 'earn'], 'GET', {'cost': 1})
|
|
65
|
+
public_loan_get_collateral_currencies = publicLoanGetCollateralCurrencies = Entry('collateral/currencies', ['public', 'loan'], 'GET', {'cost': 1})
|
|
66
|
+
public_loan_get_multi_collateral_currencies = publicLoanGetMultiCollateralCurrencies = Entry('multi_collateral/currencies', ['public', 'loan'], 'GET', {'cost': 1})
|
|
67
|
+
public_loan_get_multi_collateral_ltv = publicLoanGetMultiCollateralLtv = Entry('multi_collateral/ltv', ['public', 'loan'], 'GET', {'cost': 1})
|
|
68
|
+
public_loan_get_multi_collateral_fixed_rate = publicLoanGetMultiCollateralFixedRate = Entry('multi_collateral/fixed_rate', ['public', 'loan'], 'GET', {'cost': 1})
|
|
69
|
+
public_loan_get_multi_collateral_current_rate = publicLoanGetMultiCollateralCurrentRate = Entry('multi_collateral/current_rate', ['public', 'loan'], 'GET', {'cost': 1})
|
|
57
70
|
private_withdrawals_post_withdrawals = privateWithdrawalsPostWithdrawals = Entry('withdrawals', ['private', 'withdrawals'], 'POST', {'cost': 20})
|
|
58
71
|
private_withdrawals_post_push = privateWithdrawalsPostPush = Entry('push', ['private', 'withdrawals'], 'POST', {'cost': 1})
|
|
59
72
|
private_withdrawals_delete_withdrawals_withdrawal_id = privateWithdrawalsDeleteWithdrawalsWithdrawalId = Entry('withdrawals/{withdrawal_id}', ['private', 'withdrawals'], 'DELETE', {'cost': 1})
|
|
@@ -88,23 +101,26 @@ class ImplicitAPI:
|
|
|
88
101
|
private_subaccounts_put_sub_accounts_user_id_keys_key = privateSubAccountsPutSubAccountsUserIdKeysKey = Entry('sub_accounts/{user_id}/keys/{key}', ['private', 'subAccounts'], 'PUT', {'cost': 2.5})
|
|
89
102
|
private_subaccounts_delete_sub_accounts_user_id_keys_key = privateSubAccountsDeleteSubAccountsUserIdKeysKey = Entry('sub_accounts/{user_id}/keys/{key}', ['private', 'subAccounts'], 'DELETE', {'cost': 2.5})
|
|
90
103
|
private_unified_get_accounts = privateUnifiedGetAccounts = Entry('accounts', ['private', 'unified'], 'GET', {'cost': 1.3333333333333333})
|
|
91
|
-
private_unified_get_account_mode = privateUnifiedGetAccountMode = Entry('account_mode', ['private', 'unified'], 'GET', {'cost': 1.3333333333333333})
|
|
92
104
|
private_unified_get_borrowable = privateUnifiedGetBorrowable = Entry('borrowable', ['private', 'unified'], 'GET', {'cost': 1.3333333333333333})
|
|
93
105
|
private_unified_get_transferable = privateUnifiedGetTransferable = Entry('transferable', ['private', 'unified'], 'GET', {'cost': 1.3333333333333333})
|
|
106
|
+
private_unified_get_transferables = privateUnifiedGetTransferables = Entry('transferables', ['private', 'unified'], 'GET', {'cost': 1.3333333333333333})
|
|
107
|
+
private_unified_get_batch_borrowable = privateUnifiedGetBatchBorrowable = Entry('batch_borrowable', ['private', 'unified'], 'GET', {'cost': 1.3333333333333333})
|
|
94
108
|
private_unified_get_loans = privateUnifiedGetLoans = Entry('loans', ['private', 'unified'], 'GET', {'cost': 1.3333333333333333})
|
|
95
109
|
private_unified_get_loan_records = privateUnifiedGetLoanRecords = Entry('loan_records', ['private', 'unified'], 'GET', {'cost': 1.3333333333333333})
|
|
96
110
|
private_unified_get_interest_records = privateUnifiedGetInterestRecords = Entry('interest_records', ['private', 'unified'], 'GET', {'cost': 1.3333333333333333})
|
|
97
|
-
private_unified_get_estimate_rate = privateUnifiedGetEstimateRate = Entry('estimate_rate', ['private', 'unified'], 'GET', {'cost': 1.3333333333333333})
|
|
98
|
-
private_unified_get_currency_discount_tiers = privateUnifiedGetCurrencyDiscountTiers = Entry('currency_discount_tiers', ['private', 'unified'], 'GET', {'cost': 1.3333333333333333})
|
|
99
111
|
private_unified_get_risk_units = privateUnifiedGetRiskUnits = Entry('risk_units', ['private', 'unified'], 'GET', {'cost': 1.3333333333333333})
|
|
100
112
|
private_unified_get_unified_mode = privateUnifiedGetUnifiedMode = Entry('unified_mode', ['private', 'unified'], 'GET', {'cost': 1.3333333333333333})
|
|
113
|
+
private_unified_get_estimate_rate = privateUnifiedGetEstimateRate = Entry('estimate_rate', ['private', 'unified'], 'GET', {'cost': 1.3333333333333333})
|
|
114
|
+
private_unified_get_currency_discount_tiers = privateUnifiedGetCurrencyDiscountTiers = Entry('currency_discount_tiers', ['private', 'unified'], 'GET', {'cost': 1.3333333333333333})
|
|
101
115
|
private_unified_get_loan_margin_tiers = privateUnifiedGetLoanMarginTiers = Entry('loan_margin_tiers', ['private', 'unified'], 'GET', {'cost': 1.3333333333333333})
|
|
102
116
|
private_unified_get_leverage_user_currency_config = privateUnifiedGetLeverageUserCurrencyConfig = Entry('leverage/user_currency_config', ['private', 'unified'], 'GET', {'cost': 1.3333333333333333})
|
|
103
117
|
private_unified_get_leverage_user_currency_setting = privateUnifiedGetLeverageUserCurrencySetting = Entry('leverage/user_currency_setting', ['private', 'unified'], 'GET', {'cost': 1.3333333333333333})
|
|
104
|
-
|
|
118
|
+
private_unified_get_account_mode = privateUnifiedGetAccountMode = Entry('account_mode', ['private', 'unified'], 'GET', {'cost': 1.3333333333333333})
|
|
105
119
|
private_unified_post_loans = privateUnifiedPostLoans = Entry('loans', ['private', 'unified'], 'POST', {'cost': 13.333333333333334})
|
|
106
120
|
private_unified_post_portfolio_calculator = privateUnifiedPostPortfolioCalculator = Entry('portfolio_calculator', ['private', 'unified'], 'POST', {'cost': 1.3333333333333333})
|
|
107
121
|
private_unified_post_leverage_user_currency_setting = privateUnifiedPostLeverageUserCurrencySetting = Entry('leverage/user_currency_setting', ['private', 'unified'], 'POST', {'cost': 1.3333333333333333})
|
|
122
|
+
private_unified_post_collateral_currencies = privateUnifiedPostCollateralCurrencies = Entry('collateral_currencies', ['private', 'unified'], 'POST', {'cost': 1.3333333333333333})
|
|
123
|
+
private_unified_post_account_mode = privateUnifiedPostAccountMode = Entry('account_mode', ['private', 'unified'], 'POST', {'cost': 1.3333333333333333})
|
|
108
124
|
private_unified_put_unified_mode = privateUnifiedPutUnifiedMode = Entry('unified_mode', ['private', 'unified'], 'PUT', {'cost': 1.3333333333333333})
|
|
109
125
|
private_spot_get_fee = privateSpotGetFee = Entry('fee', ['private', 'spot'], 'GET', {'cost': 1})
|
|
110
126
|
private_spot_get_batch_fee = privateSpotGetBatchFee = Entry('batch_fee', ['private', 'spot'], 'GET', {'cost': 1})
|
|
@@ -133,6 +149,13 @@ class ImplicitAPI:
|
|
|
133
149
|
private_margin_get_funding_accounts = privateMarginGetFundingAccounts = Entry('funding_accounts', ['private', 'margin'], 'GET', {'cost': 1.3333333333333333})
|
|
134
150
|
private_margin_get_auto_repay = privateMarginGetAutoRepay = Entry('auto_repay', ['private', 'margin'], 'GET', {'cost': 1.3333333333333333})
|
|
135
151
|
private_margin_get_transferable = privateMarginGetTransferable = Entry('transferable', ['private', 'margin'], 'GET', {'cost': 1.3333333333333333})
|
|
152
|
+
private_margin_get_uni_estimate_rate = privateMarginGetUniEstimateRate = Entry('uni/estimate_rate', ['private', 'margin'], 'GET', {'cost': 1.3333333333333333})
|
|
153
|
+
private_margin_get_uni_loans = privateMarginGetUniLoans = Entry('uni/loans', ['private', 'margin'], 'GET', {'cost': 1.3333333333333333})
|
|
154
|
+
private_margin_get_uni_loan_records = privateMarginGetUniLoanRecords = Entry('uni/loan_records', ['private', 'margin'], 'GET', {'cost': 1.3333333333333333})
|
|
155
|
+
private_margin_get_uni_interest_records = privateMarginGetUniInterestRecords = Entry('uni/interest_records', ['private', 'margin'], 'GET', {'cost': 1.3333333333333333})
|
|
156
|
+
private_margin_get_uni_borrowable = privateMarginGetUniBorrowable = Entry('uni/borrowable', ['private', 'margin'], 'GET', {'cost': 1.3333333333333333})
|
|
157
|
+
private_margin_get_user_loan_margin_tiers = privateMarginGetUserLoanMarginTiers = Entry('user/loan_margin_tiers', ['private', 'margin'], 'GET', {'cost': 1.3333333333333333})
|
|
158
|
+
private_margin_get_user_account = privateMarginGetUserAccount = Entry('user/account', ['private', 'margin'], 'GET', {'cost': 1.3333333333333333})
|
|
136
159
|
private_margin_get_loans = privateMarginGetLoans = Entry('loans', ['private', 'margin'], 'GET', {'cost': 1.3333333333333333})
|
|
137
160
|
private_margin_get_loans_loan_id = privateMarginGetLoansLoanId = Entry('loans/{loan_id}', ['private', 'margin'], 'GET', {'cost': 1.3333333333333333})
|
|
138
161
|
private_margin_get_loans_loan_id_repayment = privateMarginGetLoansLoanIdRepayment = Entry('loans/{loan_id}/repayment', ['private', 'margin'], 'GET', {'cost': 1.3333333333333333})
|
|
@@ -148,23 +171,17 @@ class ImplicitAPI:
|
|
|
148
171
|
private_margin_get_cross_transferable = privateMarginGetCrossTransferable = Entry('cross/transferable', ['private', 'margin'], 'GET', {'cost': 1.3333333333333333})
|
|
149
172
|
private_margin_get_cross_estimate_rate = privateMarginGetCrossEstimateRate = Entry('cross/estimate_rate', ['private', 'margin'], 'GET', {'cost': 1.3333333333333333})
|
|
150
173
|
private_margin_get_cross_borrowable = privateMarginGetCrossBorrowable = Entry('cross/borrowable', ['private', 'margin'], 'GET', {'cost': 1.3333333333333333})
|
|
151
|
-
private_margin_get_uni_estimate_rate = privateMarginGetUniEstimateRate = Entry('uni/estimate_rate', ['private', 'margin'], 'GET', {'cost': 1.3333333333333333})
|
|
152
|
-
private_margin_get_uni_loans = privateMarginGetUniLoans = Entry('uni/loans', ['private', 'margin'], 'GET', {'cost': 1.3333333333333333})
|
|
153
|
-
private_margin_get_uni_loan_records = privateMarginGetUniLoanRecords = Entry('uni/loan_records', ['private', 'margin'], 'GET', {'cost': 1.3333333333333333})
|
|
154
|
-
private_margin_get_uni_interest_records = privateMarginGetUniInterestRecords = Entry('uni/interest_records', ['private', 'margin'], 'GET', {'cost': 1.3333333333333333})
|
|
155
|
-
private_margin_get_uni_borrowable = privateMarginGetUniBorrowable = Entry('uni/borrowable', ['private', 'margin'], 'GET', {'cost': 1.3333333333333333})
|
|
156
174
|
private_margin_post_auto_repay = privateMarginPostAutoRepay = Entry('auto_repay', ['private', 'margin'], 'POST', {'cost': 1.3333333333333333})
|
|
175
|
+
private_margin_post_uni_loans = privateMarginPostUniLoans = Entry('uni/loans', ['private', 'margin'], 'POST', {'cost': 1.3333333333333333})
|
|
176
|
+
private_margin_post_leverage_user_market_setting = privateMarginPostLeverageUserMarketSetting = Entry('leverage/user_market_setting', ['private', 'margin'], 'POST', {'cost': 1.3333333333333333})
|
|
157
177
|
private_margin_post_loans = privateMarginPostLoans = Entry('loans', ['private', 'margin'], 'POST', {'cost': 1.3333333333333333})
|
|
158
178
|
private_margin_post_merged_loans = privateMarginPostMergedLoans = Entry('merged_loans', ['private', 'margin'], 'POST', {'cost': 1.3333333333333333})
|
|
159
179
|
private_margin_post_loans_loan_id_repayment = privateMarginPostLoansLoanIdRepayment = Entry('loans/{loan_id}/repayment', ['private', 'margin'], 'POST', {'cost': 1.3333333333333333})
|
|
160
180
|
private_margin_post_cross_loans = privateMarginPostCrossLoans = Entry('cross/loans', ['private', 'margin'], 'POST', {'cost': 1.3333333333333333})
|
|
161
181
|
private_margin_post_cross_repayments = privateMarginPostCrossRepayments = Entry('cross/repayments', ['private', 'margin'], 'POST', {'cost': 1.3333333333333333})
|
|
162
|
-
private_margin_post_uni_loans = privateMarginPostUniLoans = Entry('uni/loans', ['private', 'margin'], 'POST', {'cost': 1.3333333333333333})
|
|
163
182
|
private_margin_patch_loans_loan_id = privateMarginPatchLoansLoanId = Entry('loans/{loan_id}', ['private', 'margin'], 'PATCH', {'cost': 1.3333333333333333})
|
|
164
183
|
private_margin_patch_loan_records_loan_record_id = privateMarginPatchLoanRecordsLoanRecordId = Entry('loan_records/{loan_record_id}', ['private', 'margin'], 'PATCH', {'cost': 1.3333333333333333})
|
|
165
184
|
private_margin_delete_loans_loan_id = privateMarginDeleteLoansLoanId = Entry('loans/{loan_id}', ['private', 'margin'], 'DELETE', {'cost': 1.3333333333333333})
|
|
166
|
-
private_flash_swap_get_currencies = privateFlash_swapGetCurrencies = Entry('currencies', ['private', 'flash_swap'], 'GET', {'cost': 1})
|
|
167
|
-
private_flash_swap_get_currency_pairs = privateFlash_swapGetCurrencyPairs = Entry('currency_pairs', ['private', 'flash_swap'], 'GET', {'cost': 1})
|
|
168
185
|
private_flash_swap_get_orders = privateFlash_swapGetOrders = Entry('orders', ['private', 'flash_swap'], 'GET', {'cost': 1})
|
|
169
186
|
private_flash_swap_get_orders_order_id = privateFlash_swapGetOrdersOrderId = Entry('orders/{order_id}', ['private', 'flash_swap'], 'GET', {'cost': 1})
|
|
170
187
|
private_flash_swap_post_orders = privateFlash_swapPostOrders = Entry('orders', ['private', 'flash_swap'], 'POST', {'cost': 1})
|
|
@@ -183,12 +200,14 @@ class ImplicitAPI:
|
|
|
183
200
|
private_futures_get_settle_liquidates = privateFuturesGetSettleLiquidates = Entry('{settle}/liquidates', ['private', 'futures'], 'GET', {'cost': 1})
|
|
184
201
|
private_futures_get_settle_auto_deleverages = privateFuturesGetSettleAutoDeleverages = Entry('{settle}/auto_deleverages', ['private', 'futures'], 'GET', {'cost': 1})
|
|
185
202
|
private_futures_get_settle_fee = privateFuturesGetSettleFee = Entry('{settle}/fee', ['private', 'futures'], 'GET', {'cost': 1})
|
|
186
|
-
|
|
203
|
+
private_futures_get_settle_risk_limit_table = privateFuturesGetSettleRiskLimitTable = Entry('{settle}/risk_limit_table', ['private', 'futures'], 'GET', {'cost': 1})
|
|
187
204
|
private_futures_get_settle_price_orders = privateFuturesGetSettlePriceOrders = Entry('{settle}/price_orders', ['private', 'futures'], 'GET', {'cost': 1})
|
|
188
205
|
private_futures_get_settle_price_orders_order_id = privateFuturesGetSettlePriceOrdersOrderId = Entry('{settle}/price_orders/{order_id}', ['private', 'futures'], 'GET', {'cost': 1})
|
|
189
206
|
private_futures_post_settle_positions_contract_margin = privateFuturesPostSettlePositionsContractMargin = Entry('{settle}/positions/{contract}/margin', ['private', 'futures'], 'POST', {'cost': 1})
|
|
190
207
|
private_futures_post_settle_positions_contract_leverage = privateFuturesPostSettlePositionsContractLeverage = Entry('{settle}/positions/{contract}/leverage', ['private', 'futures'], 'POST', {'cost': 1})
|
|
191
208
|
private_futures_post_settle_positions_contract_risk_limit = privateFuturesPostSettlePositionsContractRiskLimit = Entry('{settle}/positions/{contract}/risk_limit', ['private', 'futures'], 'POST', {'cost': 1})
|
|
209
|
+
private_futures_post_settle_positions_cross_mode = privateFuturesPostSettlePositionsCrossMode = Entry('{settle}/positions/cross_mode', ['private', 'futures'], 'POST', {'cost': 1})
|
|
210
|
+
private_futures_post_settle_dual_comp_positions_cross_mode = privateFuturesPostSettleDualCompPositionsCrossMode = Entry('{settle}/dual_comp/positions/cross_mode', ['private', 'futures'], 'POST', {'cost': 1})
|
|
192
211
|
private_futures_post_settle_dual_mode = privateFuturesPostSettleDualMode = Entry('{settle}/dual_mode', ['private', 'futures'], 'POST', {'cost': 1})
|
|
193
212
|
private_futures_post_settle_dual_comp_positions_contract_margin = privateFuturesPostSettleDualCompPositionsContractMargin = Entry('{settle}/dual_comp/positions/{contract}/margin', ['private', 'futures'], 'POST', {'cost': 1})
|
|
194
213
|
private_futures_post_settle_dual_comp_positions_contract_leverage = privateFuturesPostSettleDualCompPositionsContractLeverage = Entry('{settle}/dual_comp/positions/{contract}/leverage', ['private', 'futures'], 'POST', {'cost': 1})
|
|
@@ -197,6 +216,8 @@ class ImplicitAPI:
|
|
|
197
216
|
private_futures_post_settle_batch_orders = privateFuturesPostSettleBatchOrders = Entry('{settle}/batch_orders', ['private', 'futures'], 'POST', {'cost': 0.4})
|
|
198
217
|
private_futures_post_settle_countdown_cancel_all = privateFuturesPostSettleCountdownCancelAll = Entry('{settle}/countdown_cancel_all', ['private', 'futures'], 'POST', {'cost': 0.4})
|
|
199
218
|
private_futures_post_settle_batch_cancel_orders = privateFuturesPostSettleBatchCancelOrders = Entry('{settle}/batch_cancel_orders', ['private', 'futures'], 'POST', {'cost': 0.4})
|
|
219
|
+
private_futures_post_settle_batch_amend_orders = privateFuturesPostSettleBatchAmendOrders = Entry('{settle}/batch_amend_orders', ['private', 'futures'], 'POST', {'cost': 0.4})
|
|
220
|
+
private_futures_post_settle_bbo_orders = privateFuturesPostSettleBboOrders = Entry('{settle}/bbo_orders', ['private', 'futures'], 'POST', {'cost': 0.4})
|
|
200
221
|
private_futures_post_settle_price_orders = privateFuturesPostSettlePriceOrders = Entry('{settle}/price_orders', ['private', 'futures'], 'POST', {'cost': 0.4})
|
|
201
222
|
private_futures_put_settle_orders_order_id = privateFuturesPutSettleOrdersOrderId = Entry('{settle}/orders/{order_id}', ['private', 'futures'], 'PUT', {'cost': 1})
|
|
202
223
|
private_futures_delete_settle_orders = privateFuturesDeleteSettleOrders = Entry('{settle}/orders', ['private', 'futures'], 'DELETE', {'cost': 0.26666666666666666})
|
|
@@ -240,14 +261,27 @@ class ImplicitAPI:
|
|
|
240
261
|
private_options_post_mmp_reset = privateOptionsPostMmpReset = Entry('mmp/reset', ['private', 'options'], 'POST', {'cost': 1.3333333333333333})
|
|
241
262
|
private_options_delete_orders = privateOptionsDeleteOrders = Entry('orders', ['private', 'options'], 'DELETE', {'cost': 1.3333333333333333})
|
|
242
263
|
private_options_delete_orders_order_id = privateOptionsDeleteOrdersOrderId = Entry('orders/{order_id}', ['private', 'options'], 'DELETE', {'cost': 1.3333333333333333})
|
|
243
|
-
private_earn_get_uni_currencies = privateEarnGetUniCurrencies = Entry('uni/currencies', ['private', 'earn'], 'GET', {'cost': 1.3333333333333333})
|
|
244
|
-
private_earn_get_uni_currencies_currency = privateEarnGetUniCurrenciesCurrency = Entry('uni/currencies/{currency}', ['private', 'earn'], 'GET', {'cost': 1.3333333333333333})
|
|
245
264
|
private_earn_get_uni_lends = privateEarnGetUniLends = Entry('uni/lends', ['private', 'earn'], 'GET', {'cost': 1.3333333333333333})
|
|
246
265
|
private_earn_get_uni_lend_records = privateEarnGetUniLendRecords = Entry('uni/lend_records', ['private', 'earn'], 'GET', {'cost': 1.3333333333333333})
|
|
247
266
|
private_earn_get_uni_interests_currency = privateEarnGetUniInterestsCurrency = Entry('uni/interests/{currency}', ['private', 'earn'], 'GET', {'cost': 1.3333333333333333})
|
|
248
267
|
private_earn_get_uni_interest_records = privateEarnGetUniInterestRecords = Entry('uni/interest_records', ['private', 'earn'], 'GET', {'cost': 1.3333333333333333})
|
|
249
268
|
private_earn_get_uni_interest_status_currency = privateEarnGetUniInterestStatusCurrency = Entry('uni/interest_status/{currency}', ['private', 'earn'], 'GET', {'cost': 1.3333333333333333})
|
|
269
|
+
private_earn_get_uni_chart = privateEarnGetUniChart = Entry('uni/chart', ['private', 'earn'], 'GET', {'cost': 1.3333333333333333})
|
|
270
|
+
private_earn_get_uni_rate = privateEarnGetUniRate = Entry('uni/rate', ['private', 'earn'], 'GET', {'cost': 1.3333333333333333})
|
|
271
|
+
private_earn_get_staking_eth2_rate_records = privateEarnGetStakingEth2RateRecords = Entry('staking/eth2/rate_records', ['private', 'earn'], 'GET', {'cost': 1.3333333333333333})
|
|
272
|
+
private_earn_get_dual_orders = privateEarnGetDualOrders = Entry('dual/orders', ['private', 'earn'], 'GET', {'cost': 1.3333333333333333})
|
|
273
|
+
private_earn_get_structured_orders = privateEarnGetStructuredOrders = Entry('structured/orders', ['private', 'earn'], 'GET', {'cost': 1.3333333333333333})
|
|
274
|
+
private_earn_get_staking_coins = privateEarnGetStakingCoins = Entry('staking/coins', ['private', 'earn'], 'GET', {'cost': 1.3333333333333333})
|
|
275
|
+
private_earn_get_staking_order_list = privateEarnGetStakingOrderList = Entry('staking/order_list', ['private', 'earn'], 'GET', {'cost': 1.3333333333333333})
|
|
276
|
+
private_earn_get_staking_award_list = privateEarnGetStakingAwardList = Entry('staking/award_list', ['private', 'earn'], 'GET', {'cost': 1.3333333333333333})
|
|
277
|
+
private_earn_get_staking_assets = privateEarnGetStakingAssets = Entry('staking/assets', ['private', 'earn'], 'GET', {'cost': 1.3333333333333333})
|
|
278
|
+
private_earn_get_uni_currencies = privateEarnGetUniCurrencies = Entry('uni/currencies', ['private', 'earn'], 'GET', {'cost': 1.3333333333333333})
|
|
279
|
+
private_earn_get_uni_currencies_currency = privateEarnGetUniCurrenciesCurrency = Entry('uni/currencies/{currency}', ['private', 'earn'], 'GET', {'cost': 1.3333333333333333})
|
|
250
280
|
private_earn_post_uni_lends = privateEarnPostUniLends = Entry('uni/lends', ['private', 'earn'], 'POST', {'cost': 1.3333333333333333})
|
|
281
|
+
private_earn_post_staking_eth2_swap = privateEarnPostStakingEth2Swap = Entry('staking/eth2/swap', ['private', 'earn'], 'POST', {'cost': 1.3333333333333333})
|
|
282
|
+
private_earn_post_dual_orders = privateEarnPostDualOrders = Entry('dual/orders', ['private', 'earn'], 'POST', {'cost': 1.3333333333333333})
|
|
283
|
+
private_earn_post_structured_orders = privateEarnPostStructuredOrders = Entry('structured/orders', ['private', 'earn'], 'POST', {'cost': 1.3333333333333333})
|
|
284
|
+
private_earn_post_staking_swap = privateEarnPostStakingSwap = Entry('staking/swap', ['private', 'earn'], 'POST', {'cost': 1.3333333333333333})
|
|
251
285
|
private_earn_put_uni_interest_reinvest = privateEarnPutUniInterestReinvest = Entry('uni/interest_reinvest', ['private', 'earn'], 'PUT', {'cost': 1.3333333333333333})
|
|
252
286
|
private_earn_patch_uni_lends = privateEarnPatchUniLends = Entry('uni/lends', ['private', 'earn'], 'PATCH', {'cost': 1.3333333333333333})
|
|
253
287
|
private_loan_get_collateral_orders = privateLoanGetCollateralOrders = Entry('collateral/orders', ['private', 'loan'], 'GET', {'cost': 1.3333333333333333})
|
|
@@ -256,12 +290,12 @@ class ImplicitAPI:
|
|
|
256
290
|
private_loan_get_collateral_collaterals = privateLoanGetCollateralCollaterals = Entry('collateral/collaterals', ['private', 'loan'], 'GET', {'cost': 1.3333333333333333})
|
|
257
291
|
private_loan_get_collateral_total_amount = privateLoanGetCollateralTotalAmount = Entry('collateral/total_amount', ['private', 'loan'], 'GET', {'cost': 1.3333333333333333})
|
|
258
292
|
private_loan_get_collateral_ltv = privateLoanGetCollateralLtv = Entry('collateral/ltv', ['private', 'loan'], 'GET', {'cost': 1.3333333333333333})
|
|
259
|
-
private_loan_get_collateral_currencies = privateLoanGetCollateralCurrencies = Entry('collateral/currencies', ['private', 'loan'], 'GET', {'cost': 1.3333333333333333})
|
|
260
293
|
private_loan_get_multi_collateral_orders = privateLoanGetMultiCollateralOrders = Entry('multi_collateral/orders', ['private', 'loan'], 'GET', {'cost': 1.3333333333333333})
|
|
261
294
|
private_loan_get_multi_collateral_orders_order_id = privateLoanGetMultiCollateralOrdersOrderId = Entry('multi_collateral/orders/{order_id}', ['private', 'loan'], 'GET', {'cost': 1.3333333333333333})
|
|
262
295
|
private_loan_get_multi_collateral_repay = privateLoanGetMultiCollateralRepay = Entry('multi_collateral/repay', ['private', 'loan'], 'GET', {'cost': 1.3333333333333333})
|
|
263
296
|
private_loan_get_multi_collateral_mortgage = privateLoanGetMultiCollateralMortgage = Entry('multi_collateral/mortgage', ['private', 'loan'], 'GET', {'cost': 1.3333333333333333})
|
|
264
297
|
private_loan_get_multi_collateral_currency_quota = privateLoanGetMultiCollateralCurrencyQuota = Entry('multi_collateral/currency_quota', ['private', 'loan'], 'GET', {'cost': 1.3333333333333333})
|
|
298
|
+
private_loan_get_collateral_currencies = privateLoanGetCollateralCurrencies = Entry('collateral/currencies', ['private', 'loan'], 'GET', {'cost': 1.3333333333333333})
|
|
265
299
|
private_loan_get_multi_collateral_currencies = privateLoanGetMultiCollateralCurrencies = Entry('multi_collateral/currencies', ['private', 'loan'], 'GET', {'cost': 1.3333333333333333})
|
|
266
300
|
private_loan_get_multi_collateral_ltv = privateLoanGetMultiCollateralLtv = Entry('multi_collateral/ltv', ['private', 'loan'], 'GET', {'cost': 1.3333333333333333})
|
|
267
301
|
private_loan_get_multi_collateral_fixed_rate = privateLoanGetMultiCollateralFixedRate = Entry('multi_collateral/fixed_rate', ['private', 'loan'], 'GET', {'cost': 1.3333333333333333})
|
|
@@ -273,12 +307,22 @@ class ImplicitAPI:
|
|
|
273
307
|
private_loan_post_multi_collateral_repay = privateLoanPostMultiCollateralRepay = Entry('multi_collateral/repay', ['private', 'loan'], 'POST', {'cost': 1.3333333333333333})
|
|
274
308
|
private_loan_post_multi_collateral_mortgage = privateLoanPostMultiCollateralMortgage = Entry('multi_collateral/mortgage', ['private', 'loan'], 'POST', {'cost': 1.3333333333333333})
|
|
275
309
|
private_account_get_detail = privateAccountGetDetail = Entry('detail', ['private', 'account'], 'GET', {'cost': 1.3333333333333333})
|
|
310
|
+
private_account_get_main_keys = privateAccountGetMainKeys = Entry('main_keys', ['private', 'account'], 'GET', {'cost': 1.3333333333333333})
|
|
276
311
|
private_account_get_rate_limit = privateAccountGetRateLimit = Entry('rate_limit', ['private', 'account'], 'GET', {'cost': 1.3333333333333333})
|
|
277
312
|
private_account_get_stp_groups = privateAccountGetStpGroups = Entry('stp_groups', ['private', 'account'], 'GET', {'cost': 1.3333333333333333})
|
|
278
313
|
private_account_get_stp_groups_stp_id_users = privateAccountGetStpGroupsStpIdUsers = Entry('stp_groups/{stp_id}/users', ['private', 'account'], 'GET', {'cost': 1.3333333333333333})
|
|
279
314
|
private_account_get_stp_groups_debit_fee = privateAccountGetStpGroupsDebitFee = Entry('stp_groups/debit_fee', ['private', 'account'], 'GET', {'cost': 1.3333333333333333})
|
|
315
|
+
private_account_get_debit_fee = privateAccountGetDebitFee = Entry('debit_fee', ['private', 'account'], 'GET', {'cost': 1.3333333333333333})
|
|
280
316
|
private_account_post_stp_groups = privateAccountPostStpGroups = Entry('stp_groups', ['private', 'account'], 'POST', {'cost': 1.3333333333333333})
|
|
281
317
|
private_account_post_stp_groups_stp_id_users = privateAccountPostStpGroupsStpIdUsers = Entry('stp_groups/{stp_id}/users', ['private', 'account'], 'POST', {'cost': 1.3333333333333333})
|
|
318
|
+
private_account_post_debit_fee = privateAccountPostDebitFee = Entry('debit_fee', ['private', 'account'], 'POST', {'cost': 1.3333333333333333})
|
|
282
319
|
private_account_delete_stp_groups_stp_id_users = privateAccountDeleteStpGroupsStpIdUsers = Entry('stp_groups/{stp_id}/users', ['private', 'account'], 'DELETE', {'cost': 1.3333333333333333})
|
|
283
320
|
private_rebate_get_agency_transaction_history = privateRebateGetAgencyTransactionHistory = Entry('agency/transaction_history', ['private', 'rebate'], 'GET', {'cost': 1.3333333333333333})
|
|
284
321
|
private_rebate_get_agency_commission_history = privateRebateGetAgencyCommissionHistory = Entry('agency/commission_history', ['private', 'rebate'], 'GET', {'cost': 1.3333333333333333})
|
|
322
|
+
private_rebate_get_partner_transaction_history = privateRebateGetPartnerTransactionHistory = Entry('partner/transaction_history', ['private', 'rebate'], 'GET', {'cost': 1.3333333333333333})
|
|
323
|
+
private_rebate_get_partner_commission_history = privateRebateGetPartnerCommissionHistory = Entry('partner/commission_history', ['private', 'rebate'], 'GET', {'cost': 1.3333333333333333})
|
|
324
|
+
private_rebate_get_partner_sub_list = privateRebateGetPartnerSubList = Entry('partner/sub_list', ['private', 'rebate'], 'GET', {'cost': 1.3333333333333333})
|
|
325
|
+
private_rebate_get_broker_commission_history = privateRebateGetBrokerCommissionHistory = Entry('broker/commission_history', ['private', 'rebate'], 'GET', {'cost': 1.3333333333333333})
|
|
326
|
+
private_rebate_get_broker_transaction_history = privateRebateGetBrokerTransactionHistory = Entry('broker/transaction_history', ['private', 'rebate'], 'GET', {'cost': 1.3333333333333333})
|
|
327
|
+
private_rebate_get_user_info = privateRebateGetUserInfo = Entry('user/info', ['private', 'rebate'], 'GET', {'cost': 1.3333333333333333})
|
|
328
|
+
private_rebate_get_user_sub_relation = privateRebateGetUserSubRelation = Entry('user/sub_relation', ['private', 'rebate'], 'GET', {'cost': 1.3333333333333333})
|
|
@@ -8,7 +8,7 @@ sys.modules['ccxt'] = ccxt_module
|
|
|
8
8
|
|
|
9
9
|
# -----------------------------------------------------------------------------
|
|
10
10
|
|
|
11
|
-
__version__ = '4.
|
|
11
|
+
__version__ = '4.5.15'
|
|
12
12
|
|
|
13
13
|
# -----------------------------------------------------------------------------
|
|
14
14
|
|
|
@@ -38,6 +38,7 @@ from ccxt.base.errors import NoChange # noqa: F4
|
|
|
38
38
|
from ccxt.base.errors import MarginModeAlreadySet # noqa: F401
|
|
39
39
|
from ccxt.base.errors import MarketClosed # noqa: F401
|
|
40
40
|
from ccxt.base.errors import ManualInteractionNeeded # noqa: F401
|
|
41
|
+
from ccxt.base.errors import RestrictedLocation # noqa: F401
|
|
41
42
|
from ccxt.base.errors import InsufficientFunds # noqa: F401
|
|
42
43
|
from ccxt.base.errors import InvalidAddress # noqa: F401
|
|
43
44
|
from ccxt.base.errors import AddressPending # noqa: F401
|