gate-api 7.2.129__tar.gz → 7.2.144__tar.gz
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.
- {gate_api-7.2.129 → gate_api-7.2.144}/PKG-INFO +14 -3
- {gate_api-7.2.129 → gate_api-7.2.144}/README.md +13 -2
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/__init__.py +11 -1
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/__init__.py +1 -0
- gate_api-7.2.144/gate_api/api/announcement_api.py +155 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/cfd_api.py +2 -2
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/cross_ex_api.py +22 -22
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/otc_api.py +182 -76
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/p2p_api.py +2 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/spot_api.py +7 -2
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/stock_api.py +6 -6
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api_client.py +1 -1
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/configuration.py +2 -2
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/__init__.py +9 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/account_key_info_perms.py +2 -2
- gate_api-7.2.144/gate_api/models/announcement_article.py +530 -0
- gate_api-7.2.144/gate_api/models/announcement_article_language.py +153 -0
- gate_api-7.2.144/gate_api/models/announcement_article_list_data.py +153 -0
- gate_api-7.2.144/gate_api/models/announcement_article_list_request.py +431 -0
- gate_api-7.2.144/gate_api/models/announcement_article_list_response.py +209 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_order2_data.py +2 -2
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_user_resp_data.py +4 -32
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_account_asset.py +12 -12
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_account_book_record.py +6 -6
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_account_update_request.py +2 -2
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_account_update_response.py +2 -2
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_adl_rank.py +4 -4
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_convert_quote_request.py +4 -4
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_convert_quote_response.py +2 -2
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_historical_margin_position.py +2 -2
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_historical_position.py +30 -2
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_isolated_margin_response.py +32 -4
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_margin_interest_record.py +3 -3
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_order.py +8 -8
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_order_request.py +4 -4
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_transfer_coin.py +2 -2
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_transfer_record.py +4 -4
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_transfer_request.py +4 -4
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/currency_pair.py +29 -2
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/exchanges_data_list.py +3 -3
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/i18n_txt.py +4 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/inline_response2002.py +4 -4
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/mt5_account_data.py +2 -30
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order.py +30 -2
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_history_list_item.py +23 -3
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_history_list_item_status_detail.py +4 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_list_item.py +3 -3
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_bank_create_multipart_request.py +64 -9
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_bank_enterprise_supplement_multipart_request.py +40 -16
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_bank_personal_supplement_multipart_request.py +38 -13
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_mark_order_paid_request.py +2 -2
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_order_request.py +38 -4
- gate_api-7.2.144/gate_api/models/otc_upload_pre_upload_data.py +209 -0
- gate_api-7.2.144/gate_api/models/otc_upload_pre_upload_policy_fields.py +298 -0
- gate_api-7.2.144/gate_api/models/otc_upload_pre_upload_request.py +164 -0
- gate_api-7.2.144/gate_api/models/otc_upload_pre_upload_response.py +209 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_list_item.py +21 -3
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/sub_account_key_perms.py +2 -2
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbol.py +34 -6
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbol_detail_data.py +4 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbol_detail_item.py +83 -5
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbol_detail_item_symbol_descs.py +4 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbol_list_item.py +47 -7
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trad_fi_order_request.py +34 -6
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trad_fi_spot_order_request.py +2 -2
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trade.py +32 -4
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_balance.py +2 -2
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/user_asset_resp2_data.py +86 -2
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/user_asset_resp_data.py +4 -32
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api.egg-info/PKG-INFO +14 -3
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api.egg-info/SOURCES.txt +10 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/setup.py +1 -1
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/account_api.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/activity_api.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/alpha_api.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/assetswap_api.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/bot_api.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/coupon_api.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/delivery_api.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/earn_api.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/earn_uni_api.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/flash_swap_api.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/futures_api.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/margin_api.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/margin_uni_api.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/multi_collateral_loan_api.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/options_api.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/rebate_api.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/square_api.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/sub_account_api.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/unified_api.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/wallet_api.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/welfare_api.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/withdrawal_api.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/exceptions.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/account_balance.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/account_book_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/account_detail.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/account_detail_key.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/account_key_info.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/account_rate_limit.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/account_transfer_detail.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/accounts_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ads_detail_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ads_list_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ads_update_status.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/agency_commission.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/agency_commission_history.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/agency_transaction.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/agency_transaction_history.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_create_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_create_success_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_discover_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_discover_success_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_portfolio_base_info.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_portfolio_detail_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_portfolio_detail_success_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_portfolio_metrics.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_portfolio_position.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_portfolio_running_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_portfolio_running_item.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_portfolio_running_success_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_portfolio_stop_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_portfolio_stop_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_portfolio_stop_success_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_recommendation.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/alpha_currency.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/alpha_ticker.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/amend_options_order_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_asset_swap_config.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_asset_swap_evaluate.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_asset_swap_list_assets.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_asset_swap_order_create_v1.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_asset_swap_order_list_v1.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_asset_swap_order_preview_v1.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_asset_swap_order_query_v1.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_ex_skill_claim_reward_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_ex_skill_claim_reward_resp_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_ex_skill_claim_task_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_ex_skill_get_beginner_task_list_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_ex_skill_get_beginner_task_list_resp_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_ex_skill_get_beginner_task_list_resp_data_tasks.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_ex_skill_get_user_identity_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/asset_list_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/asset_swap_frontend.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_coins_item.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_config_item.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_min_invest_amount.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_min_invest_amount_items.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_min_invest_amount_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_order_item.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_plan_add_position.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_plan_create.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_plan_create_items.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_plan_create_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_plan_detail.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_plan_list_info_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_plan_record_item.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_plan_records_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_plan_stop.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_plan_update.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_portfolio_item.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_repay_setting.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/award_list_struct.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/award_list_struct_list.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/base_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/batch_amend_item.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/batch_amend_order_req.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/batch_funding_rates_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/batch_funding_rates_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/batch_futures_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/batch_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/borrow_currency_info.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/broker_commission.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/broker_commission_item.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/broker_commission_sub_broker_info.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/broker_transaction.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/broker_transaction_history.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/cancel_batch_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/cancel_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/cancel_order_result.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/categories.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/categories_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/categories_data_list.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/chase_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/claim_reward_error.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/claim_task_error.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/close_position.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/close_position_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/collateral_adjust.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/collateral_adjust_res.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/collateral_currency.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/collateral_currency_info.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/collateral_currency_res.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/collateral_current_rate.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/collateral_fix_rate.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/collateral_ltv.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/confirm_payment.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/confirm_receipt.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/contract.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/contract_detail.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/contract_detail_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/contract_detail_data_list.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/contract_martingale_create_params.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/contract_martingale_create_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/contract_martingale_direction.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/contract_stat.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/convert_currencies_v2_item.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/convert_small_balance.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/countdown_cancel_all_futures_task.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/countdown_cancel_all_options_task.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/countdown_cancel_all_spot_task.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_chase_order_req.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_chase_order_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_earn_fixed_term_lend_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_earn_fixed_term_lend_response_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_earn_fixed_term_pre_redeem_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_multi_collateral_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_order2.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_order_detail.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_param.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_trail_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_trail_order_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_trail_order_result.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_transaction.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_transaction2.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_uni_lend.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_uni_loan.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_user_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/cross_margin_balance.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/cross_margin_loan.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/cross_margin_repayment.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_account.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_batch_cancel_order_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_batch_cancel_order_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_close_position_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_coin_discount_rate.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_convert_order_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_convert_order_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_interest_rate.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_isolated_margin_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_leverage_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_leverage_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_margin_mode_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_margin_mode_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_margin_position.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_order_action_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_order_update_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_position.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_risk_limit.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_risk_limit_tier.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_special_fee.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_trade.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_transfer_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/currency.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/currency_chain.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/currency_quota.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/debit_fee.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delete_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delete_position.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_account.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_account_book.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_account_history.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_candlestick.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_contract.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_limit_risk_tiers.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_liquidate.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_my_trade.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_order_book.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_order_book_item.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_position.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_position_close.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_settlement.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_ticker.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_trade.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delta_neutral_enabled.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/deposit_address.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/deposit_record.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/discover_scene.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/dual_get_balance.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/dual_get_orders.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/dual_get_plans.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/dual_modify_order_reinvest_params.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/dual_order_refund_params.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/dual_order_refund_preview.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/dual_project_recommend.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/earn_fixed_term_pre_redeem_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/eligibility.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/eligibility_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/eligibility_response_all_of.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/err_code_msg.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/error_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/evaluate_item.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/evaluate_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ex_skill_claim_reward_req.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ex_skill_claim_task_req.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/exchanges.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/exchanges_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/fee_rate.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/fee_rate_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/fee_rate_data_list.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/fixed_term_bonus_info.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/fixed_term_coupon_info.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/fixed_term_history_record.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/fixed_term_lend_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/fixed_term_lend_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/fixed_term_product.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/fixed_term_product_info.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/fixed_term_product_simple.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_currency_pair.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_error_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_create_param.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_many_to_one_order_create_req.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_many_to_one_order_create_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_many_to_one_order_create_resp_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_many_to_one_order_preview_req.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_many_to_one_order_preview_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_many_to_one_order_preview_resp_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_one_to_many_order_create_req.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_one_to_many_order_create_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_one_to_many_order_create_resp_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_one_to_many_order_preview_req.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_one_to_many_order_preview_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_one_to_many_order_preview_resp_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_preview_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_preview_param.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_order_create_req.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_order_create_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_order_create_resp_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_order_preview.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_order_preview_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_order_preview_resp_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_order_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_preview_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/funding_account.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/funding_rate_record.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/future_cancel_order_result.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_account.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_account_book.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_account_history.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_adl_risk_state.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_adl_risk_states.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_auto_deleverage.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_batch_amend_order_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_bbo_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_candlestick.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_direction.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_fee.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_grid_create_params.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_grid_create_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_index_constituents.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_initial_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_leverage.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_limit_risk_tiers.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_liq_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_liquidate.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_order_amendment.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_order_book.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_order_book_item.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_order_timerange.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_position_cross_mode.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_premium_index.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_price_trigger.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_price_triggered_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_risk_limit_tier.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_ticker.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_trade.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_update_price_triggered_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/gate_error_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_beginner_task_list_error.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_chase_order_detail_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_chase_orders_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_chats_list_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_completed_transaction_list_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_counterparty_user_info_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_my_activity_entry_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_my_activity_entry_response_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_myself_payment_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_pending_transaction_list_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_transaction_details_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_user_coupon_detail_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_user_coupon_detail_response_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_user_identity_error.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/index_constituent.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/infinite_grid_create_params.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/infinite_grid_create_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/inline_response200.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/inline_response2001.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/insurance_record.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/klines.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/klines_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/klines_data_list.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ladder_apr.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ledger_record.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/leverage_failed_currencies.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/liquidate_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_activities_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_activities_response_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_activities_response_data_list.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_activity_types_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_activity_types_response_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_activity_types_response_data_list.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_earn_fixed_term_history_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_earn_fixed_term_history_response_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_earn_fixed_term_lends_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_earn_fixed_term_lends_response_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_earn_fixed_term_products_by_asset_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_earn_fixed_term_products_by_asset_response_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_earn_fixed_term_products_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_earn_fixed_term_products_response_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_live_replay_error.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_live_replay_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_live_replay_response_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_live_replay_response_data_list.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_live_replay_response_data_live.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_live_replay_response_data_live_host.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_live_replay_response_data_video.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_square_ai_search_error.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_square_ai_search_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_square_ai_search_response_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_square_ai_search_response_data_items.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_user_coupons_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_user_coupons_response_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_user_coupons_response_data_help_url.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_user_coupons_response_data_jump_url.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_user_coupons_response_data_list.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_user_coupons_response_data_progress_config.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/margin_account.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/margin_account_book.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/margin_account_currency.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/margin_grid_create_params.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/margin_grid_create_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/margin_leverage_tier.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/margin_market_leverage.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/margin_tiers.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/margin_transferable.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/max_uni_borrowable.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/mock_futures_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/mock_futures_position.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/mock_margin_result.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/mock_options_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/mock_options_position.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/mock_risk_unit.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/mock_spot_balance.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/mock_spot_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/mt5_account.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/multi_chain_address_item.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/multi_collateral_currency.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/multi_collateral_item.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/multi_collateral_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/multi_collateral_record.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/multi_collateral_record_currency.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/multi_loan_item.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/multi_loan_repay_item.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/multi_repay_record.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/multi_repay_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/my_ads_list_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/my_futures_trade.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/my_futures_trade_time_range.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/open_orders.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_account.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_account_book.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_candlestick.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_contract.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_mmp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_mmp_reset.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_my_settlements.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_my_trade.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_order_book.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_position.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_position_close.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_position_close_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_settlement.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_ticker.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_trade.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_underlying.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_underlying_ticker.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_book.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_book2.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_book2_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_book_price.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_cancel.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_create_v1_req.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_create_v1_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_history_list.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_history_list2.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_history_list2_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_history_list_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_history_list_data_list.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_list.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_list2.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_list2_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_list_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_list_data_list.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_list_struct.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_list_struct_list.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_list_v1_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_log.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_log_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_patch.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_preview_v1_req.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_preview_v1_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_action_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_bank_create_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_bank_create_response_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_bank_id_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_bank_list_item.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_bank_list_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_bank_list_result.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_bank_supplement_checklist_item.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_bank_supplement_checklist_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_bank_supplement_checklist_response_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_order_detail.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_order_detail_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_order_list_crypto_currency_info.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_order_list_fiat_currency_info.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_order_list_item.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_order_list_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_order_list_result.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_quote_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_quote_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_quote_result.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_stable_coin_order_create_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_stable_coin_order_list_item.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_stable_coin_order_list_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_stable_coin_order_list_result.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_stable_coin_order_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/other_contact.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_ad_detail.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_ad_detail_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_ads_list_item.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_ads_list_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_ads_list_trade_method.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_ads_update_status_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_ads_update_status_result.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_chat_list_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_chat_list_result.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_chat_message.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_chat_message_payload.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_counterparty_user_info.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_counterparty_user_info_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_merchant_books_place_biz_push_order_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_merchant_books_place_biz_push_order_response_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_merchant_books_place_biz_push_order_response_data_risk_event.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_merchant_books_place_biz_push_order_response_data_risk_event_action.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_merchant_market_info.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_merchant_user_info.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_merchant_user_info_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_merchant_work_hours.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_merchant_work_hours_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_my_ad.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_my_ads_list_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_my_ads_list_result.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_payment_method_account.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_payment_method_group.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_payment_methods_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_send_chat_message_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_send_chat_message_result.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_transaction_action_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_transaction_convert_info.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_transaction_detail.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_transaction_detail_pay_others.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_transaction_detail_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_transaction_list_item.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_transaction_list_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_transaction_list_result.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_transaction_list_result_pay_others.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_transaction_time_marker.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_upload_chat_file_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_upload_chat_file_result.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/partner_application.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/partner_application_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/partner_application_response_all_of.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/partner_commission_history.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/partner_data_aggregated.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/partner_data_aggregated_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/partner_data_aggregated_response_all_of.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/partner_sub.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/partner_sub_list.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/partner_transaction_history.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/patch_uni_lend.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/place_biz_push_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/place_dual_investment_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/place_dual_investment_order_params.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/place_order_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/place_order_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_close.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_close_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_history_list.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_history_list_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_history_list_data_close_detail.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_history_list_data_list.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_history_list_data_realized_pnl_detail.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_list.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_list2.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_list2_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_list_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_list_data_list.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_timerange.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/preview_from_param.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/preview_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/preview_order_detail.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/preview_to_param.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/profit_loss_range.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/quick_estimated_repayment.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/quick_repayment_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/quick_repayment_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/quote_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/quote_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/rebate_user_info.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/recommend.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/recommend_v2_scheme.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/recommend_v2_strategy.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/repay_currency_res.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/repay_multi_loan.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/repay_record_currency.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/repay_record_left_interest.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/repay_record_repaid_currency.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/repay_record_total_interest.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/risk_units.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/saved_address.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/send_chat_message_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/set_merchant_work_hours_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/small_balance.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/small_balance_history.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_account.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_account_book.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_currency_chain.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_fee.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_grid_create_params.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_grid_create_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_insurance_history.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_martingale_create_params.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_martingale_create_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_order_stop_loss.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_order_stop_profit.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_pov_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_pov_order_creator.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_price_put_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_price_trigger.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_price_triggered_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/stop_all_chase_orders_req.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/stop_all_chase_orders_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/stop_all_trail_orders.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/stop_chase_order_req.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/stop_chase_order_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/stop_trail_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/stp_group.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/stp_group_user.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/strategy_type.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/sub_account.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/sub_account_balance.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/sub_account_cross_margin_balance.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/sub_account_futures_balance.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/sub_account_key.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/sub_account_margin_balance.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/sub_account_to_sub_account.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/sub_account_transfer.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/sub_account_transfer_record_item.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/sub_cross_margin_account.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/sub_user_mode.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/swap_coin.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/swap_coin_struct.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbol_commissions.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbol_commissions_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbol_commissions_data_list.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbol_detail.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbols.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbols2.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbols2_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbols_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbols_data_list.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/system_time.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ticker.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/tokens.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/total_balance.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trad_fi_close_position_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trad_fi_error.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trad_fi_order_update_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trad_fi_position_update_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trad_fi_spot_close_position_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trad_fi_spot_error.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trad_fi_spot_order_update_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trad_fi_spot_transaction_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trad_fi_ticker.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trad_fi_ticker_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trad_fi_transaction_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trade_fee.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trail_change_log.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trail_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trail_order_change_log_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trail_order_detail_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trail_order_list_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trail_order_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/transaction_id.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/transaction_item.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/transaction_list.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/transaction_list2.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/transaction_list2_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/transaction_list_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/transaction_list_data_list.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/transfer.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/transfer_order_status.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/transferables_result.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trigger_order_response.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trigger_time.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uid_push_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uid_push_withdrawal.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uid_push_withdrawal_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uni_chart_point.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uni_currency.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uni_currency_interest.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uni_currency_pair.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uni_estimated_rate.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uni_interest_record.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uni_lend.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uni_lend_interest.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uni_lend_record.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uni_loan.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uni_loan_interest_record.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uni_loan_record.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_account.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_borrowable.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_collateral_req.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_collateral_res.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_currency.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_discount.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_discount_tiers.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_history_loan_rate.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_history_loan_rate_rates.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_leverage_config.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_leverage_setting.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_loan.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_loan_record.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_loan_result.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_margin_tiers.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_mode_set.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_portfolio_input.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_portfolio_output.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_quick_repay_available_item.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_quick_repay_debt_item.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_quick_repay_repaid_info.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_quick_repay_used_info.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_risk_units.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_settings.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_transferable.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/update_dual_comp_position_cross_mode_request.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/update_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/update_order2.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/update_order2_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/update_order_data.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/update_position.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/update_trail_order.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/upload_chat_file.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/user_asset_resp.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/user_asset_resp2.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/user_leverage_setting.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/user_sub.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/user_sub_relation.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/withdraw_status.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/withdrawal_record.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/withdrawals_del.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/rest.py +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api.egg-info/dependency_links.txt +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api.egg-info/requires.txt +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/gate_api.egg-info/top_level.txt +0 -0
- {gate_api-7.2.129 → gate_api-7.2.144}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gate-api
|
|
3
|
-
Version: 7.2.
|
|
3
|
+
Version: 7.2.144
|
|
4
4
|
Summary: Gate API
|
|
5
5
|
Home-page: https://github.com/gate/gateapi-python
|
|
6
6
|
Author: Gate API support
|
|
@@ -32,8 +32,8 @@ APIv4 provides operations related to spot, margin, and contract trading, includi
|
|
|
32
32
|
|
|
33
33
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
34
34
|
|
|
35
|
-
- API version: v4.106.
|
|
36
|
-
- Package version: 7.2.
|
|
35
|
+
- API version: v4.106.144
|
|
36
|
+
- Package version: 7.2.144
|
|
37
37
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
38
38
|
For more information, please visit [https://www.gate.com/page/contacts](https://www.gate.com/page/contacts)
|
|
39
39
|
|
|
@@ -231,6 +231,7 @@ Class | Method | HTTP request | Description
|
|
|
231
231
|
*OTCApi* | [**get_otc_bank_supplement_checklist**](docs/OTCApi.md#get_otc_bank_supplement_checklist) | **GET** /otc/bank/bank_supplement_checklist | Query the checklist of materials to supplement for a bank card
|
|
232
232
|
*OTCApi* | [**submit_otc_bank_personal_supplement**](docs/OTCApi.md#submit_otc_bank_personal_supplement) | **POST** /otc/bank/personal/bank_supplement | Submit Bank Card Supplement Materials (Personal)
|
|
233
233
|
*OTCApi* | [**submit_otc_bank_enterprise_supplement**](docs/OTCApi.md#submit_otc_bank_enterprise_supplement) | **POST** /otc/bank/enterprise/bank_supplement | Submit Bank Card Supplement Materials (Enterprise)
|
|
234
|
+
*OTCApi* | [**create_otc_upload_pre_upload**](docs/OTCApi.md#create_otc_upload_pre_upload) | **POST** /otc/upload/pre_upload | Pre-upload file (temporary bucket)
|
|
234
235
|
*OTCApi* | [**mark_otc_order_paid**](docs/OTCApi.md#mark_otc_order_paid) | **POST** /otc/order/paid | Mark fiat order as paid (deposit confirmation)
|
|
235
236
|
*OTCApi* | [**cancel_otc_order**](docs/OTCApi.md#cancel_otc_order) | **POST** /otc/order/cancel | Fiat order cancellation
|
|
236
237
|
*OTCApi* | [**list_otc_orders**](docs/OTCApi.md#list_otc_orders) | **GET** /otc/order/list | Fiat order list
|
|
@@ -309,6 +310,7 @@ Class | Method | HTTP request | Description
|
|
|
309
310
|
*AlphaApi* | [**list_alpha_currencies**](docs/AlphaApi.md#list_alpha_currencies) | **GET** /alpha/currencies | Query currency information
|
|
310
311
|
*AlphaApi* | [**list_alpha_tickers**](docs/AlphaApi.md#list_alpha_tickers) | **GET** /alpha/tickers | Query currency ticker
|
|
311
312
|
*AlphaApi* | [**list_alpha_tokens**](docs/AlphaApi.md#list_alpha_tokens) | **GET** /alpha/tokens | Query Token Information
|
|
313
|
+
*AnnouncementApi* | [**list_announcement_articles**](docs/AnnouncementApi.md#list_announcement_articles) | **POST** /ann/list_article | List announcement articles
|
|
312
314
|
*AssetswapApi* | [**list_asset_swap_assets**](docs/AssetswapApi.md#list_asset_swap_assets) | **GET** /asset-swap/asset/list | Portfolio optimization — currency list
|
|
313
315
|
*AssetswapApi* | [**get_asset_swap_config**](docs/AssetswapApi.md#get_asset_swap_config) | **GET** /asset-swap/config | Portfolio optimization — configuration
|
|
314
316
|
*AssetswapApi* | [**evaluate_asset_swap**](docs/AssetswapApi.md#evaluate_asset_swap) | **GET** /asset-swap/evaluate | Portfolio optimization — valuation
|
|
@@ -660,6 +662,11 @@ Class | Method | HTTP request | Description
|
|
|
660
662
|
- [AlphaCurrency](docs/AlphaCurrency.md)
|
|
661
663
|
- [AlphaTicker](docs/AlphaTicker.md)
|
|
662
664
|
- [AmendOptionsOrderRequest](docs/AmendOptionsOrderRequest.md)
|
|
665
|
+
- [AnnouncementArticle](docs/AnnouncementArticle.md)
|
|
666
|
+
- [AnnouncementArticleLanguage](docs/AnnouncementArticleLanguage.md)
|
|
667
|
+
- [AnnouncementArticleListData](docs/AnnouncementArticleListData.md)
|
|
668
|
+
- [AnnouncementArticleListRequest](docs/AnnouncementArticleListRequest.md)
|
|
669
|
+
- [AnnouncementArticleListResponse](docs/AnnouncementArticleListResponse.md)
|
|
663
670
|
- [ApiResponseAssetSwapConfig](docs/ApiResponseAssetSwapConfig.md)
|
|
664
671
|
- [ApiResponseAssetSwapEvaluate](docs/ApiResponseAssetSwapEvaluate.md)
|
|
665
672
|
- [ApiResponseAssetSwapListAssets](docs/ApiResponseAssetSwapListAssets.md)
|
|
@@ -1098,6 +1105,10 @@ Class | Method | HTTP request | Description
|
|
|
1098
1105
|
- [OtcStableCoinOrderListResponse](docs/OtcStableCoinOrderListResponse.md)
|
|
1099
1106
|
- [OtcStableCoinOrderListResult](docs/OtcStableCoinOrderListResult.md)
|
|
1100
1107
|
- [OtcStableCoinOrderRequest](docs/OtcStableCoinOrderRequest.md)
|
|
1108
|
+
- [OtcUploadPreUploadData](docs/OtcUploadPreUploadData.md)
|
|
1109
|
+
- [OtcUploadPreUploadPolicyFields](docs/OtcUploadPreUploadPolicyFields.md)
|
|
1110
|
+
- [OtcUploadPreUploadRequest](docs/OtcUploadPreUploadRequest.md)
|
|
1111
|
+
- [OtcUploadPreUploadResponse](docs/OtcUploadPreUploadResponse.md)
|
|
1101
1112
|
- [OtherContact](docs/OtherContact.md)
|
|
1102
1113
|
- [P2pAdDetail](docs/P2pAdDetail.md)
|
|
1103
1114
|
- [P2pAdDetailResponse](docs/P2pAdDetailResponse.md)
|
|
@@ -4,8 +4,8 @@ APIv4 provides operations related to spot, margin, and contract trading, includi
|
|
|
4
4
|
|
|
5
5
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
6
6
|
|
|
7
|
-
- API version: v4.106.
|
|
8
|
-
- Package version: 7.2.
|
|
7
|
+
- API version: v4.106.144
|
|
8
|
+
- Package version: 7.2.144
|
|
9
9
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
10
10
|
For more information, please visit [https://www.gate.com/page/contacts](https://www.gate.com/page/contacts)
|
|
11
11
|
|
|
@@ -203,6 +203,7 @@ Class | Method | HTTP request | Description
|
|
|
203
203
|
*OTCApi* | [**get_otc_bank_supplement_checklist**](docs/OTCApi.md#get_otc_bank_supplement_checklist) | **GET** /otc/bank/bank_supplement_checklist | Query the checklist of materials to supplement for a bank card
|
|
204
204
|
*OTCApi* | [**submit_otc_bank_personal_supplement**](docs/OTCApi.md#submit_otc_bank_personal_supplement) | **POST** /otc/bank/personal/bank_supplement | Submit Bank Card Supplement Materials (Personal)
|
|
205
205
|
*OTCApi* | [**submit_otc_bank_enterprise_supplement**](docs/OTCApi.md#submit_otc_bank_enterprise_supplement) | **POST** /otc/bank/enterprise/bank_supplement | Submit Bank Card Supplement Materials (Enterprise)
|
|
206
|
+
*OTCApi* | [**create_otc_upload_pre_upload**](docs/OTCApi.md#create_otc_upload_pre_upload) | **POST** /otc/upload/pre_upload | Pre-upload file (temporary bucket)
|
|
206
207
|
*OTCApi* | [**mark_otc_order_paid**](docs/OTCApi.md#mark_otc_order_paid) | **POST** /otc/order/paid | Mark fiat order as paid (deposit confirmation)
|
|
207
208
|
*OTCApi* | [**cancel_otc_order**](docs/OTCApi.md#cancel_otc_order) | **POST** /otc/order/cancel | Fiat order cancellation
|
|
208
209
|
*OTCApi* | [**list_otc_orders**](docs/OTCApi.md#list_otc_orders) | **GET** /otc/order/list | Fiat order list
|
|
@@ -281,6 +282,7 @@ Class | Method | HTTP request | Description
|
|
|
281
282
|
*AlphaApi* | [**list_alpha_currencies**](docs/AlphaApi.md#list_alpha_currencies) | **GET** /alpha/currencies | Query currency information
|
|
282
283
|
*AlphaApi* | [**list_alpha_tickers**](docs/AlphaApi.md#list_alpha_tickers) | **GET** /alpha/tickers | Query currency ticker
|
|
283
284
|
*AlphaApi* | [**list_alpha_tokens**](docs/AlphaApi.md#list_alpha_tokens) | **GET** /alpha/tokens | Query Token Information
|
|
285
|
+
*AnnouncementApi* | [**list_announcement_articles**](docs/AnnouncementApi.md#list_announcement_articles) | **POST** /ann/list_article | List announcement articles
|
|
284
286
|
*AssetswapApi* | [**list_asset_swap_assets**](docs/AssetswapApi.md#list_asset_swap_assets) | **GET** /asset-swap/asset/list | Portfolio optimization — currency list
|
|
285
287
|
*AssetswapApi* | [**get_asset_swap_config**](docs/AssetswapApi.md#get_asset_swap_config) | **GET** /asset-swap/config | Portfolio optimization — configuration
|
|
286
288
|
*AssetswapApi* | [**evaluate_asset_swap**](docs/AssetswapApi.md#evaluate_asset_swap) | **GET** /asset-swap/evaluate | Portfolio optimization — valuation
|
|
@@ -632,6 +634,11 @@ Class | Method | HTTP request | Description
|
|
|
632
634
|
- [AlphaCurrency](docs/AlphaCurrency.md)
|
|
633
635
|
- [AlphaTicker](docs/AlphaTicker.md)
|
|
634
636
|
- [AmendOptionsOrderRequest](docs/AmendOptionsOrderRequest.md)
|
|
637
|
+
- [AnnouncementArticle](docs/AnnouncementArticle.md)
|
|
638
|
+
- [AnnouncementArticleLanguage](docs/AnnouncementArticleLanguage.md)
|
|
639
|
+
- [AnnouncementArticleListData](docs/AnnouncementArticleListData.md)
|
|
640
|
+
- [AnnouncementArticleListRequest](docs/AnnouncementArticleListRequest.md)
|
|
641
|
+
- [AnnouncementArticleListResponse](docs/AnnouncementArticleListResponse.md)
|
|
635
642
|
- [ApiResponseAssetSwapConfig](docs/ApiResponseAssetSwapConfig.md)
|
|
636
643
|
- [ApiResponseAssetSwapEvaluate](docs/ApiResponseAssetSwapEvaluate.md)
|
|
637
644
|
- [ApiResponseAssetSwapListAssets](docs/ApiResponseAssetSwapListAssets.md)
|
|
@@ -1070,6 +1077,10 @@ Class | Method | HTTP request | Description
|
|
|
1070
1077
|
- [OtcStableCoinOrderListResponse](docs/OtcStableCoinOrderListResponse.md)
|
|
1071
1078
|
- [OtcStableCoinOrderListResult](docs/OtcStableCoinOrderListResult.md)
|
|
1072
1079
|
- [OtcStableCoinOrderRequest](docs/OtcStableCoinOrderRequest.md)
|
|
1080
|
+
- [OtcUploadPreUploadData](docs/OtcUploadPreUploadData.md)
|
|
1081
|
+
- [OtcUploadPreUploadPolicyFields](docs/OtcUploadPreUploadPolicyFields.md)
|
|
1082
|
+
- [OtcUploadPreUploadRequest](docs/OtcUploadPreUploadRequest.md)
|
|
1083
|
+
- [OtcUploadPreUploadResponse](docs/OtcUploadPreUploadResponse.md)
|
|
1073
1084
|
- [OtherContact](docs/OtherContact.md)
|
|
1074
1085
|
- [P2pAdDetail](docs/P2pAdDetail.md)
|
|
1075
1086
|
- [P2pAdDetailResponse](docs/P2pAdDetailResponse.md)
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
from __future__ import absolute_import
|
|
16
16
|
|
|
17
|
-
__version__ = "7.2.
|
|
17
|
+
__version__ = "7.2.144"
|
|
18
18
|
|
|
19
19
|
# import apis into sdk package
|
|
20
20
|
from gate_api.api.activity_api import ActivityApi
|
|
@@ -28,6 +28,7 @@ from gate_api.api.sub_account_api import SubAccountApi
|
|
|
28
28
|
from gate_api.api.unified_api import UnifiedApi
|
|
29
29
|
from gate_api.api.account_api import AccountApi
|
|
30
30
|
from gate_api.api.alpha_api import AlphaApi
|
|
31
|
+
from gate_api.api.announcement_api import AnnouncementApi
|
|
31
32
|
from gate_api.api.assetswap_api import AssetswapApi
|
|
32
33
|
from gate_api.api.bot_api import BotApi
|
|
33
34
|
from gate_api.api.coupon_api import CouponApi
|
|
@@ -90,6 +91,11 @@ from gate_api.models.agency_transaction_history import AgencyTransactionHistory
|
|
|
90
91
|
from gate_api.models.alpha_currency import AlphaCurrency
|
|
91
92
|
from gate_api.models.alpha_ticker import AlphaTicker
|
|
92
93
|
from gate_api.models.amend_options_order_request import AmendOptionsOrderRequest
|
|
94
|
+
from gate_api.models.announcement_article import AnnouncementArticle
|
|
95
|
+
from gate_api.models.announcement_article_language import AnnouncementArticleLanguage
|
|
96
|
+
from gate_api.models.announcement_article_list_data import AnnouncementArticleListData
|
|
97
|
+
from gate_api.models.announcement_article_list_request import AnnouncementArticleListRequest
|
|
98
|
+
from gate_api.models.announcement_article_list_response import AnnouncementArticleListResponse
|
|
93
99
|
from gate_api.models.api_response_asset_swap_config import ApiResponseAssetSwapConfig
|
|
94
100
|
from gate_api.models.api_response_asset_swap_evaluate import ApiResponseAssetSwapEvaluate
|
|
95
101
|
from gate_api.models.api_response_asset_swap_list_assets import ApiResponseAssetSwapListAssets
|
|
@@ -528,6 +534,10 @@ from gate_api.models.otc_stable_coin_order_list_item import OtcStableCoinOrderLi
|
|
|
528
534
|
from gate_api.models.otc_stable_coin_order_list_response import OtcStableCoinOrderListResponse
|
|
529
535
|
from gate_api.models.otc_stable_coin_order_list_result import OtcStableCoinOrderListResult
|
|
530
536
|
from gate_api.models.otc_stable_coin_order_request import OtcStableCoinOrderRequest
|
|
537
|
+
from gate_api.models.otc_upload_pre_upload_data import OtcUploadPreUploadData
|
|
538
|
+
from gate_api.models.otc_upload_pre_upload_policy_fields import OtcUploadPreUploadPolicyFields
|
|
539
|
+
from gate_api.models.otc_upload_pre_upload_request import OtcUploadPreUploadRequest
|
|
540
|
+
from gate_api.models.otc_upload_pre_upload_response import OtcUploadPreUploadResponse
|
|
531
541
|
from gate_api.models.other_contact import OtherContact
|
|
532
542
|
from gate_api.models.p2p_ad_detail import P2pAdDetail
|
|
533
543
|
from gate_api.models.p2p_ad_detail_response import P2pAdDetailResponse
|
|
@@ -14,6 +14,7 @@ from gate_api.api.sub_account_api import SubAccountApi
|
|
|
14
14
|
from gate_api.api.unified_api import UnifiedApi
|
|
15
15
|
from gate_api.api.account_api import AccountApi
|
|
16
16
|
from gate_api.api.alpha_api import AlphaApi
|
|
17
|
+
from gate_api.api.announcement_api import AnnouncementApi
|
|
17
18
|
from gate_api.api.assetswap_api import AssetswapApi
|
|
18
19
|
from gate_api.api.bot_api import BotApi
|
|
19
20
|
from gate_api.api.coupon_api import CouponApi
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Gate API
|
|
5
|
+
|
|
6
|
+
Welcome to Gate API APIv4 provides operations related to spot, margin, and contract trading, including public interfaces for querying market data and authenticated private interfaces for implementing API-based automated trading. # noqa: E501
|
|
7
|
+
|
|
8
|
+
Contact: support@mail.gate.com
|
|
9
|
+
Generated by: https://openapi-generator.tech
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
from __future__ import absolute_import
|
|
14
|
+
|
|
15
|
+
import re # noqa: F401
|
|
16
|
+
|
|
17
|
+
# python 2 and python 3 compatibility library
|
|
18
|
+
import six
|
|
19
|
+
|
|
20
|
+
from gate_api.api_client import ApiClient
|
|
21
|
+
from gate_api.exceptions import ( # noqa: F401
|
|
22
|
+
ApiTypeError,
|
|
23
|
+
ApiValueError
|
|
24
|
+
)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
class AnnouncementApi(object):
|
|
28
|
+
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
29
|
+
Ref: https://openapi-generator.tech
|
|
30
|
+
|
|
31
|
+
Do not edit the class manually.
|
|
32
|
+
"""
|
|
33
|
+
|
|
34
|
+
def __init__(self, api_client=None):
|
|
35
|
+
if api_client is None:
|
|
36
|
+
api_client = ApiClient()
|
|
37
|
+
self.api_client = api_client
|
|
38
|
+
|
|
39
|
+
def list_announcement_articles(self, announcement_article_list_request, **kwargs): # noqa: E501
|
|
40
|
+
"""List announcement articles # noqa: E501
|
|
41
|
+
|
|
42
|
+
Query announcement articles with pagination and filters for title, category, language, time, and other criteria. Send query parameters in the JSON request body. Both page and size are optional and must be strings when provided. No API key is required. # noqa: E501
|
|
43
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
44
|
+
asynchronous HTTP request, please pass async_req=True
|
|
45
|
+
>>> thread = api.list_announcement_articles(announcement_article_list_request, async_req=True)
|
|
46
|
+
>>> result = thread.get()
|
|
47
|
+
|
|
48
|
+
:param bool async_req: execute request asynchronously
|
|
49
|
+
:param AnnouncementArticleListRequest announcement_article_list_request: (required)
|
|
50
|
+
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
51
|
+
be returned without reading/decoding response
|
|
52
|
+
data. Default is True.
|
|
53
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
54
|
+
number provided, it will be total request
|
|
55
|
+
timeout. It can also be a pair (tuple) of
|
|
56
|
+
(connection, read) timeouts.
|
|
57
|
+
:rtype: gate_api.AnnouncementArticleListResponse
|
|
58
|
+
:return: If the method is called asynchronously,
|
|
59
|
+
returns the request thread.
|
|
60
|
+
"""
|
|
61
|
+
kwargs['_return_http_data_only'] = True
|
|
62
|
+
return self.list_announcement_articles_with_http_info(announcement_article_list_request, **kwargs) # noqa: E501
|
|
63
|
+
|
|
64
|
+
def list_announcement_articles_with_http_info(self, announcement_article_list_request, **kwargs): # noqa: E501
|
|
65
|
+
"""List announcement articles # noqa: E501
|
|
66
|
+
|
|
67
|
+
Query announcement articles with pagination and filters for title, category, language, time, and other criteria. Send query parameters in the JSON request body. Both page and size are optional and must be strings when provided. No API key is required. # noqa: E501
|
|
68
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
69
|
+
asynchronous HTTP request, please pass async_req=True
|
|
70
|
+
>>> thread = api.list_announcement_articles_with_http_info(announcement_article_list_request, async_req=True)
|
|
71
|
+
>>> result = thread.get()
|
|
72
|
+
|
|
73
|
+
:param bool async_req: execute request asynchronously
|
|
74
|
+
:param AnnouncementArticleListRequest announcement_article_list_request: (required)
|
|
75
|
+
:param _return_http_data_only: response data without head status code
|
|
76
|
+
and headers
|
|
77
|
+
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
78
|
+
be returned without reading/decoding response
|
|
79
|
+
data. Default is True.
|
|
80
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
81
|
+
number provided, it will be total request
|
|
82
|
+
timeout. It can also be a pair (tuple) of
|
|
83
|
+
(connection, read) timeouts.
|
|
84
|
+
:rtype: tuple(gate_api.AnnouncementArticleListResponse, status_code(int), headers(HTTPHeaderDict))
|
|
85
|
+
:return: If the method is called asynchronously,
|
|
86
|
+
returns the request thread.
|
|
87
|
+
"""
|
|
88
|
+
|
|
89
|
+
local_var_params = locals()
|
|
90
|
+
|
|
91
|
+
all_params = [
|
|
92
|
+
'announcement_article_list_request'
|
|
93
|
+
]
|
|
94
|
+
all_params.extend(
|
|
95
|
+
[
|
|
96
|
+
'async_req',
|
|
97
|
+
'_return_http_data_only',
|
|
98
|
+
'_preload_content',
|
|
99
|
+
'_request_timeout'
|
|
100
|
+
]
|
|
101
|
+
)
|
|
102
|
+
|
|
103
|
+
for k, v in six.iteritems(local_var_params['kwargs']):
|
|
104
|
+
if k not in all_params:
|
|
105
|
+
raise ApiTypeError(
|
|
106
|
+
"Got an unexpected keyword argument '%s'"
|
|
107
|
+
" to method list_announcement_articles" % k
|
|
108
|
+
)
|
|
109
|
+
local_var_params[k] = v
|
|
110
|
+
del local_var_params['kwargs']
|
|
111
|
+
# verify the required parameter 'announcement_article_list_request' is set
|
|
112
|
+
if self.api_client.client_side_validation and ('announcement_article_list_request' not in local_var_params or # noqa: E501
|
|
113
|
+
local_var_params['announcement_article_list_request'] is None): # noqa: E501
|
|
114
|
+
raise ApiValueError("Missing the required parameter `announcement_article_list_request` when calling `list_announcement_articles`") # noqa: E501
|
|
115
|
+
|
|
116
|
+
collection_formats = {}
|
|
117
|
+
|
|
118
|
+
path_params = {}
|
|
119
|
+
|
|
120
|
+
query_params = []
|
|
121
|
+
|
|
122
|
+
header_params = {}
|
|
123
|
+
|
|
124
|
+
form_params = []
|
|
125
|
+
local_var_files = {}
|
|
126
|
+
|
|
127
|
+
body_params = None
|
|
128
|
+
if 'announcement_article_list_request' in local_var_params:
|
|
129
|
+
body_params = local_var_params['announcement_article_list_request']
|
|
130
|
+
# HTTP header `Accept`
|
|
131
|
+
header_params['Accept'] = self.api_client.select_header_accept(
|
|
132
|
+
['application/json']) # noqa: E501
|
|
133
|
+
|
|
134
|
+
# HTTP header `Content-Type`
|
|
135
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
136
|
+
['application/json']) # noqa: E501
|
|
137
|
+
|
|
138
|
+
# Authentication setting
|
|
139
|
+
auth_settings = [] # noqa: E501
|
|
140
|
+
|
|
141
|
+
return self.api_client.call_api(
|
|
142
|
+
'/ann/list_article', 'POST',
|
|
143
|
+
path_params,
|
|
144
|
+
query_params,
|
|
145
|
+
header_params,
|
|
146
|
+
body=body_params,
|
|
147
|
+
post_params=form_params,
|
|
148
|
+
files=local_var_files,
|
|
149
|
+
response_type='AnnouncementArticleListResponse', # noqa: E501
|
|
150
|
+
auth_settings=auth_settings,
|
|
151
|
+
async_req=local_var_params.get('async_req'),
|
|
152
|
+
_return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
|
|
153
|
+
_preload_content=local_var_params.get('_preload_content', True),
|
|
154
|
+
_request_timeout=local_var_params.get('_request_timeout'),
|
|
155
|
+
collection_formats=collection_formats)
|
|
@@ -337,7 +337,7 @@ class CFDApi(object):
|
|
|
337
337
|
['application/json']) # noqa: E501
|
|
338
338
|
|
|
339
339
|
# Authentication setting
|
|
340
|
-
auth_settings = [] # noqa: E501
|
|
340
|
+
auth_settings = ['apiv4'] # noqa: E501
|
|
341
341
|
|
|
342
342
|
return self.api_client.call_api(
|
|
343
343
|
'/tradfi/symbols/commissions', 'GET',
|
|
@@ -552,7 +552,7 @@ class CFDApi(object):
|
|
|
552
552
|
['application/json']) # noqa: E501
|
|
553
553
|
|
|
554
554
|
# Authentication setting
|
|
555
|
-
auth_settings = [] # noqa: E501
|
|
555
|
+
auth_settings = ['apiv4'] # noqa: E501
|
|
556
556
|
|
|
557
557
|
return self.api_client.call_api(
|
|
558
558
|
'/tradfi/symbols/detail', 'GET',
|
|
@@ -263,7 +263,7 @@ class CrossExApi(object):
|
|
|
263
263
|
def list_crossex_transfer_coins(self, **kwargs): # noqa: E501
|
|
264
264
|
"""Query supported transfer currencies # noqa: E501
|
|
265
265
|
|
|
266
|
-
`est_fee`:
|
|
266
|
+
`est_fee`: Estimated fee. When a fund transfer involves an on-chain withdrawal, the exchange charges this fee. This value is for reference only; the actual fee charged by the exchange applies # noqa: E501
|
|
267
267
|
This method makes a synchronous HTTP request by default. To make an
|
|
268
268
|
asynchronous HTTP request, please pass async_req=True
|
|
269
269
|
>>> thread = api.list_crossex_transfer_coins(async_req=True)
|
|
@@ -288,7 +288,7 @@ class CrossExApi(object):
|
|
|
288
288
|
def list_crossex_transfer_coins_with_http_info(self, **kwargs): # noqa: E501
|
|
289
289
|
"""Query supported transfer currencies # noqa: E501
|
|
290
290
|
|
|
291
|
-
`est_fee`:
|
|
291
|
+
`est_fee`: Estimated fee. When a fund transfer involves an on-chain withdrawal, the exchange charges this fee. This value is for reference only; the actual fee charged by the exchange applies # noqa: E501
|
|
292
292
|
This method makes a synchronous HTTP request by default. To make an
|
|
293
293
|
asynchronous HTTP request, please pass async_req=True
|
|
294
294
|
>>> thread = api.list_crossex_transfer_coins_with_http_info(async_req=True)
|
|
@@ -508,7 +508,7 @@ class CrossExApi(object):
|
|
|
508
508
|
def create_crossex_transfer(self, **kwargs): # noqa: E501
|
|
509
509
|
"""Fund Transfer # noqa: E501
|
|
510
510
|
|
|
511
|
-
Rate limit: 10 requests per 10 seconds - In cross-exchange mode, when transferring USDT, either `from` or `to` must be `SPOT`, and the other side must be `CROSSEX`. If `CROSSEX_${exchange_type}` (e.g. `CROSSEX_GATE`) is provided, it will be automatically treated as `CROSSEX`. - In isolated exchange mode, when transferring USDT, either `from` or `to` must be `CROSSEX_${exchange_type}`, and the other side must be `SPOT` or `CROSSEX_${exchange_type}`. If `CROSSEX` is provided, it will be automatically treated as `CROSSEX_GATE`. - When transferring non-USDT assets to or from CrossEx, neither `from` nor `to` can be `CROSSEX`; `CROSSEX_${exchange_type}` must be explicitly specified. - When transferring non-USDT assets, transfers between `CROSSEX_{exchange_type}` accounts are supported, for example: from = `CROSSEX_BINANCE`, to = `CROSSEX_GATE` - When either side of the transfer is `CROSSEX_KRAKEN`, only USDT is supported for now. - When either side of the transfer is `CROSSEX_HYPERLIQUID`, the other side must be `SPOT`, and only USDC is supported. # noqa: E501
|
|
511
|
+
Rate limit: 10 requests per 10 seconds - In cross-exchange mode, when transferring USDT, either `from` or `to` must be `SPOT`, and the other side must be `CROSSEX`. If `CROSSEX_${exchange_type}` (e.g. `CROSSEX_GATE`) is provided, it will be automatically treated as `CROSSEX`. - In isolated exchange mode, when transferring USDT, either `from` or `to` must be `CROSSEX_${exchange_type}`, and the other side must be `SPOT` or `CROSSEX_${exchange_type}`. If `CROSSEX` is provided, it will be automatically treated as `CROSSEX_GATE`. - When transferring non-USDT assets to or from CrossEx, neither `from` nor `to` can be `CROSSEX`; `CROSSEX_${exchange_type}` must be explicitly specified. - When transferring non-USDT assets, transfers between `CROSSEX_{exchange_type}` accounts are supported, for example: from = `CROSSEX_BINANCE`, to = `CROSSEX_GATE` - When either side of the transfer is `CROSSEX_KRAKEN`, only USDT is supported for now. - When either side of the transfer is `CROSSEX_HYPERLIQUID`, the other side must be `SPOT`, and only USDC is supported. - When either side of the transfer is `CROSSEX_LIGHTER`, the other side must be `SPOT`, and only USDC is supported. # noqa: E501
|
|
512
512
|
This method makes a synchronous HTTP request by default. To make an
|
|
513
513
|
asynchronous HTTP request, please pass async_req=True
|
|
514
514
|
>>> thread = api.create_crossex_transfer(async_req=True)
|
|
@@ -533,7 +533,7 @@ class CrossExApi(object):
|
|
|
533
533
|
def create_crossex_transfer_with_http_info(self, **kwargs): # noqa: E501
|
|
534
534
|
"""Fund Transfer # noqa: E501
|
|
535
535
|
|
|
536
|
-
Rate limit: 10 requests per 10 seconds - In cross-exchange mode, when transferring USDT, either `from` or `to` must be `SPOT`, and the other side must be `CROSSEX`. If `CROSSEX_${exchange_type}` (e.g. `CROSSEX_GATE`) is provided, it will be automatically treated as `CROSSEX`. - In isolated exchange mode, when transferring USDT, either `from` or `to` must be `CROSSEX_${exchange_type}`, and the other side must be `SPOT` or `CROSSEX_${exchange_type}`. If `CROSSEX` is provided, it will be automatically treated as `CROSSEX_GATE`. - When transferring non-USDT assets to or from CrossEx, neither `from` nor `to` can be `CROSSEX`; `CROSSEX_${exchange_type}` must be explicitly specified. - When transferring non-USDT assets, transfers between `CROSSEX_{exchange_type}` accounts are supported, for example: from = `CROSSEX_BINANCE`, to = `CROSSEX_GATE` - When either side of the transfer is `CROSSEX_KRAKEN`, only USDT is supported for now. - When either side of the transfer is `CROSSEX_HYPERLIQUID`, the other side must be `SPOT`, and only USDC is supported. # noqa: E501
|
|
536
|
+
Rate limit: 10 requests per 10 seconds - In cross-exchange mode, when transferring USDT, either `from` or `to` must be `SPOT`, and the other side must be `CROSSEX`. If `CROSSEX_${exchange_type}` (e.g. `CROSSEX_GATE`) is provided, it will be automatically treated as `CROSSEX`. - In isolated exchange mode, when transferring USDT, either `from` or `to` must be `CROSSEX_${exchange_type}`, and the other side must be `SPOT` or `CROSSEX_${exchange_type}`. If `CROSSEX` is provided, it will be automatically treated as `CROSSEX_GATE`. - When transferring non-USDT assets to or from CrossEx, neither `from` nor `to` can be `CROSSEX`; `CROSSEX_${exchange_type}` must be explicitly specified. - When transferring non-USDT assets, transfers between `CROSSEX_{exchange_type}` accounts are supported, for example: from = `CROSSEX_BINANCE`, to = `CROSSEX_GATE` - When either side of the transfer is `CROSSEX_KRAKEN`, only USDT is supported for now. - When either side of the transfer is `CROSSEX_HYPERLIQUID`, the other side must be `SPOT`, and only USDC is supported. - When either side of the transfer is `CROSSEX_LIGHTER`, the other side must be `SPOT`, and only USDC is supported. # noqa: E501
|
|
537
537
|
This method makes a synchronous HTTP request by default. To make an
|
|
538
538
|
asynchronous HTTP request, please pass async_req=True
|
|
539
539
|
>>> thread = api.create_crossex_transfer_with_http_info(async_req=True)
|
|
@@ -1205,7 +1205,7 @@ class CrossExApi(object):
|
|
|
1205
1205
|
def create_crossex_convert_quote(self, **kwargs): # noqa: E501
|
|
1206
1206
|
"""Flash Swap Inquiry # noqa: E501
|
|
1207
1207
|
|
|
1208
|
-
Rate limit: 100 requests per day For HYPERLIQUID, swaps between `HYPERLIQUID_USDC` and `CROSSEX_USDT` are supported. Flash Swap in isolated exchange mode is not currently supported for HYPERLIQUID # noqa: E501
|
|
1208
|
+
Rate limit: 100 requests per day For HYPERLIQUID, swaps between `HYPERLIQUID_USDC` and `CROSSEX_USDT` are supported. Flash Swap in isolated exchange mode is not currently supported for HYPERLIQUID. For LIGHTER, swaps between `LIGHTER_USDC` and `CROSSEX_USDT` are supported. Flash Swap in isolated exchange mode is not currently supported for LIGHTER. For KRAKEN, only conversion from `KRAKEN_USD` to `CROSSEX_USDT` is supported. Flash Swap in isolated exchange mode is not currently supported for KRAKEN. # noqa: E501
|
|
1209
1209
|
This method makes a synchronous HTTP request by default. To make an
|
|
1210
1210
|
asynchronous HTTP request, please pass async_req=True
|
|
1211
1211
|
>>> thread = api.create_crossex_convert_quote(async_req=True)
|
|
@@ -1230,7 +1230,7 @@ class CrossExApi(object):
|
|
|
1230
1230
|
def create_crossex_convert_quote_with_http_info(self, **kwargs): # noqa: E501
|
|
1231
1231
|
"""Flash Swap Inquiry # noqa: E501
|
|
1232
1232
|
|
|
1233
|
-
Rate limit: 100 requests per day For HYPERLIQUID, swaps between `HYPERLIQUID_USDC` and `CROSSEX_USDT` are supported. Flash Swap in isolated exchange mode is not currently supported for HYPERLIQUID # noqa: E501
|
|
1233
|
+
Rate limit: 100 requests per day For HYPERLIQUID, swaps between `HYPERLIQUID_USDC` and `CROSSEX_USDT` are supported. Flash Swap in isolated exchange mode is not currently supported for HYPERLIQUID. For LIGHTER, swaps between `LIGHTER_USDC` and `CROSSEX_USDT` are supported. Flash Swap in isolated exchange mode is not currently supported for LIGHTER. For KRAKEN, only conversion from `KRAKEN_USD` to `CROSSEX_USDT` is supported. Flash Swap in isolated exchange mode is not currently supported for KRAKEN. # noqa: E501
|
|
1234
1234
|
This method makes a synchronous HTTP request by default. To make an
|
|
1235
1235
|
asynchronous HTTP request, please pass async_req=True
|
|
1236
1236
|
>>> thread = api.create_crossex_convert_quote_with_http_info(async_req=True)
|
|
@@ -1433,14 +1433,14 @@ class CrossExApi(object):
|
|
|
1433
1433
|
def get_crossex_account(self, **kwargs): # noqa: E501
|
|
1434
1434
|
"""Query Account Assets # noqa: E501
|
|
1435
1435
|
|
|
1436
|
-
Rate
|
|
1436
|
+
Rate limit: 200 requests per 10 seconds If 100% <= initial_margin_rate < 110%, transferring out the margin currency is prohibited. If initial_margin_rate < 100%, the system automatically cancels orders; only closing positions is allowed, not opening new ones. If maintenance_margin_rate <= 100%, the system forces liquidation. # noqa: E501
|
|
1437
1437
|
This method makes a synchronous HTTP request by default. To make an
|
|
1438
1438
|
asynchronous HTTP request, please pass async_req=True
|
|
1439
1439
|
>>> thread = api.get_crossex_account(async_req=True)
|
|
1440
1440
|
>>> result = thread.get()
|
|
1441
1441
|
|
|
1442
1442
|
:param bool async_req: execute request asynchronously
|
|
1443
|
-
:param str exchange_type: Trading venue identifier. Omit in cross-exchange mode; required in isolated-per-venue mode (`BINANCE` / `OKX` / `GATE` / `BYBIT` / `KRAKEN` / `HYPERLIQUID` / `DERIBIT`).
|
|
1443
|
+
:param str exchange_type: Trading venue identifier. Omit in cross-exchange mode; required in isolated-per-venue mode (`BINANCE` / `OKX` / `GATE` / `BYBIT` / `KRAKEN` / `HYPERLIQUID` / `DERIBIT` / `LIGHTER`).
|
|
1444
1444
|
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
1445
1445
|
be returned without reading/decoding response
|
|
1446
1446
|
data. Default is True.
|
|
@@ -1458,14 +1458,14 @@ class CrossExApi(object):
|
|
|
1458
1458
|
def get_crossex_account_with_http_info(self, **kwargs): # noqa: E501
|
|
1459
1459
|
"""Query Account Assets # noqa: E501
|
|
1460
1460
|
|
|
1461
|
-
Rate
|
|
1461
|
+
Rate limit: 200 requests per 10 seconds If 100% <= initial_margin_rate < 110%, transferring out the margin currency is prohibited. If initial_margin_rate < 100%, the system automatically cancels orders; only closing positions is allowed, not opening new ones. If maintenance_margin_rate <= 100%, the system forces liquidation. # noqa: E501
|
|
1462
1462
|
This method makes a synchronous HTTP request by default. To make an
|
|
1463
1463
|
asynchronous HTTP request, please pass async_req=True
|
|
1464
1464
|
>>> thread = api.get_crossex_account_with_http_info(async_req=True)
|
|
1465
1465
|
>>> result = thread.get()
|
|
1466
1466
|
|
|
1467
1467
|
:param bool async_req: execute request asynchronously
|
|
1468
|
-
:param str exchange_type: Trading venue identifier. Omit in cross-exchange mode; required in isolated-per-venue mode (`BINANCE` / `OKX` / `GATE` / `BYBIT` / `KRAKEN` / `HYPERLIQUID` / `DERIBIT`).
|
|
1468
|
+
:param str exchange_type: Trading venue identifier. Omit in cross-exchange mode; required in isolated-per-venue mode (`BINANCE` / `OKX` / `GATE` / `BYBIT` / `KRAKEN` / `HYPERLIQUID` / `DERIBIT` / `LIGHTER`).
|
|
1469
1469
|
:param _return_http_data_only: response data without head status code
|
|
1470
1470
|
and headers
|
|
1471
1471
|
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
@@ -3648,11 +3648,11 @@ class CrossExApi(object):
|
|
|
3648
3648
|
|
|
3649
3649
|
:param bool async_req: execute request asynchronously
|
|
3650
3650
|
:param str symbol: Currency pair
|
|
3651
|
-
:param int _from:
|
|
3652
|
-
:param int to:
|
|
3653
|
-
:param int page:
|
|
3654
|
-
:param int limit:
|
|
3655
|
-
:param str exchange_type:
|
|
3651
|
+
:param int _from: Start Millisecond Timestamp
|
|
3652
|
+
:param int to: End Millisecond Timestamp
|
|
3653
|
+
:param int page: Page number
|
|
3654
|
+
:param int limit: Maximum number returned by list, max 1000
|
|
3655
|
+
:param str exchange_type: Exchange
|
|
3656
3656
|
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
3657
3657
|
be returned without reading/decoding response
|
|
3658
3658
|
data. Default is True.
|
|
@@ -3678,11 +3678,11 @@ class CrossExApi(object):
|
|
|
3678
3678
|
|
|
3679
3679
|
:param bool async_req: execute request asynchronously
|
|
3680
3680
|
:param str symbol: Currency pair
|
|
3681
|
-
:param int _from:
|
|
3682
|
-
:param int to:
|
|
3683
|
-
:param int page:
|
|
3684
|
-
:param int limit:
|
|
3685
|
-
:param str exchange_type:
|
|
3681
|
+
:param int _from: Start Millisecond Timestamp
|
|
3682
|
+
:param int to: End Millisecond Timestamp
|
|
3683
|
+
:param int page: Page number
|
|
3684
|
+
:param int limit: Maximum number returned by list, max 1000
|
|
3685
|
+
:param str exchange_type: Exchange
|
|
3686
3686
|
:param _return_http_data_only: response data without head status code
|
|
3687
3687
|
and headers
|
|
3688
3688
|
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
@@ -4048,7 +4048,7 @@ class CrossExApi(object):
|
|
|
4048
4048
|
|
|
4049
4049
|
:param bool async_req: execute request asynchronously
|
|
4050
4050
|
:param str coin: Query by specified currency name
|
|
4051
|
-
:param str exchange_type: OKX/GATE/BINANCE/BYBIT/KRAKEN/HYPERLIQUID/DERIBIT
|
|
4051
|
+
:param str exchange_type: OKX/GATE/BINANCE/BYBIT/KRAKEN/HYPERLIQUID/DERIBIT/LIGHTER
|
|
4052
4052
|
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
4053
4053
|
be returned without reading/decoding response
|
|
4054
4054
|
data. Default is True.
|
|
@@ -4074,7 +4074,7 @@ class CrossExApi(object):
|
|
|
4074
4074
|
|
|
4075
4075
|
:param bool async_req: execute request asynchronously
|
|
4076
4076
|
:param str coin: Query by specified currency name
|
|
4077
|
-
:param str exchange_type: OKX/GATE/BINANCE/BYBIT/KRAKEN/HYPERLIQUID/DERIBIT
|
|
4077
|
+
:param str exchange_type: OKX/GATE/BINANCE/BYBIT/KRAKEN/HYPERLIQUID/DERIBIT/LIGHTER
|
|
4078
4078
|
:param _return_http_data_only: response data without head status code
|
|
4079
4079
|
and headers
|
|
4080
4080
|
:param _preload_content: if False, the urllib3.HTTPResponse object will
|