binance-web3-wallet 1.0.0__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.
- binance_web3_wallet-1.0.0/CHANGELOG.md +5 -0
- binance_web3_wallet-1.0.0/LICENCE +0 -0
- binance_web3_wallet-1.0.0/PKG-INFO +20 -0
- binance_web3_wallet-1.0.0/pyproject.toml +37 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/__init__.py +31 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/metadata.py +1 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/py.typed +0 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/__init__.py +14 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/api/__init__.py +15 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/api/market_api.py +901 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/api/trading_api.py +484 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/api/transaction_api.py +548 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/api/wallet_api.py +275 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/__init__.py +318 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/broadcast_transactions_response.py +125 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/broadcast_transactions_response_data.py +112 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/build_swap_transaction_response.py +125 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/build_swap_transaction_response_data.py +133 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/build_swap_transaction_response_data_router_result.py +221 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/build_swap_transaction_response_data_router_result_dex_router_list_inner.py +163 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/build_swap_transaction_response_data_router_result_dex_router_list_inner_dex_protocol.py +108 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/build_swap_transaction_response_data_router_result_dex_router_list_inner_from_token.py +113 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/build_swap_transaction_response_data_router_result_dex_router_list_inner_to_token.py +111 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/build_swap_transaction_response_data_router_result_from_token.py +126 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/build_swap_transaction_response_data_router_result_to_token.py +126 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/build_swap_transaction_response_data_tx.py +194 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/enums.py +110 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_aggregated_quote_response.py +135 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_aggregated_quote_response_data_inner.py +249 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_aggregated_quote_response_data_inner_dex_router_list_inner.py +171 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_aggregated_quote_response_data_inner_dex_router_list_inner_dex_protocol.py +111 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_aggregated_quote_response_data_inner_dex_router_list_inner_from_token.py +111 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_aggregated_quote_response_data_inner_dex_router_list_inner_to_token.py +111 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_aggregated_quote_response_data_inner_from_token.py +142 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_aggregated_quote_response_data_inner_to_token.py +138 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_aggregator_supported_chains_response.py +143 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_aggregator_supported_chains_response_data_inner.py +126 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_all_token_balances_by_address_response.py +135 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_all_token_balances_by_address_response_data_inner.py +138 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_all_token_balances_by_address_response_data_inner_token_assets_inner.py +152 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_all_tokens_response.py +134 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_all_tokens_response_data_inner.py +133 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_broadcast_orders_response.py +125 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_broadcast_orders_response_data.py +131 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_broadcast_orders_response_data_orders_inner.py +152 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_candles_response.py +104 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_erc20_approve_transaction_response.py +134 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_erc20_approve_transaction_response_data_inner.py +133 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_gas_limit_request_evm_tx.py +118 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_gas_limit_request_sol_tx.py +105 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_gas_limit_response.py +125 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_gas_limit_response_data.py +107 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_gas_price_response.py +127 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_gas_price_response_data.py +181 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_gas_price_response_data_eip1559_gas_price.py +149 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_gas_price_response_data_evm_legacy_gas_price.py +123 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_gas_price_response_data_solana_gas_price.py +134 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_holders_ranking_response.py +134 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_holders_ranking_response_data_inner.py +258 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_holders_ranking_response_data_inner_funding_source_label.py +109 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_hot_token_list_response.py +124 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_hot_token_list_response_data.py +135 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_hot_token_list_response_data_items_inner.py +289 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_hot_tokens_response.py +125 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_hot_tokens_response_data.py +136 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_hot_tokens_response_data_items_inner.py +280 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_price_info_response.py +134 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_price_info_response_data_inner.py +388 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_price_response.py +134 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_price_response_data_inner.py +130 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_supported_chains_response.py +136 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_supported_chains_response_data_inner.py +147 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_advanced_info_response.py +125 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_advanced_info_response_data.py +274 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_balances_by_address_request_token_contract_addresses_inner.py +115 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_balances_by_address_response.py +135 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_balances_by_address_response_data_inner.py +132 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_balances_by_address_response_data_inner_token_assets_inner.py +150 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_basic_info_response.py +125 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_basic_info_response_data.py +168 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_basic_info_response_data_tag_list.py +112 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_price_response.py +133 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_price_response_data_inner.py +128 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_trades_response.py +125 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_trades_response_data.py +131 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_trades_response_data_trades_inner.py +182 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_trades_response_data_trades_inner_changed_token_info_inner.py +123 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_trading_info_response.py +133 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_trading_info_response_data_inner.py +530 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_top_liquidity_pools_response.py +134 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_top_liquidity_pools_response_data_inner.py +176 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_top_liquidity_pools_response_data_inner_liquidity_amount_inner.py +142 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_top_traders_response.py +134 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_top_traders_response_data_inner.py +250 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_top_traders_response_data_inner_funding_source_label.py +110 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_total_value_by_address_response.py +125 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_total_value_by_address_response_data.py +107 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_transaction_detail_by_hash_response.py +135 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_transaction_detail_by_hash_response_data_inner.py +319 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_transaction_detail_by_hash_response_data_inner_from_details_inner.py +162 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_transaction_detail_by_hash_response_data_inner_internal_transaction_details_inner.py +155 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_transaction_detail_by_hash_response_data_inner_to_details_inner.py +131 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_transaction_detail_by_hash_response_data_inner_token_transfer_details_inner.py +156 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_transaction_status_response.py +130 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_transaction_status_response_data.py +315 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_transaction_status_response_data_from_token_details_inner.py +123 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_transaction_status_response_data_to_token_details_inner.py +120 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_transaction_supported_chains_response.py +143 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_transaction_supported_chains_response_data_inner.py +126 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_transactions_by_address_response.py +135 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_transactions_by_address_response_data_inner.py +137 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_transactions_by_address_response_data_inner_transaction_list_inner.py +245 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_transactions_by_address_response_data_inner_transaction_list_inner_from_inner.py +111 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_transactions_by_address_response_data_inner_transaction_list_inner_to_inner.py +109 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_wallet_supported_chains_response.py +136 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_wallet_supported_chains_response_data_inner.py +126 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/search_token_response.py +133 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/search_token_response_data_inner.py +197 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/search_token_response_data_inner_tag_list.py +111 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/search_tokens_response.py +134 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/search_tokens_response_data_inner.py +200 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/search_tokens_response_data_inner_tag_list.py +112 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/simulate_transactions_request_evm_tx.py +115 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/simulate_transactions_request_sol_tx.py +110 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/simulate_transactions_response.py +125 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/simulate_transactions_response_data.py +179 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/simulate_transactions_response_data_allowance_changes_inner.py +133 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/simulate_transactions_response_data_balance_changes_inner.py +129 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/rest_api.py +1339 -0
- binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/web3_wallet.py +34 -0
|
File without changes
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: binance-web3-wallet
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Official Binance Web3Wallet Connector - A lightweight library that provides a convenient interface to Binance's Web3Wallet REST API
|
|
5
|
+
License: MIT
|
|
6
|
+
Author: Binance
|
|
7
|
+
Requires-Python: >=3.10,<3.15
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
14
|
+
Provides-Extra: dev
|
|
15
|
+
Requires-Dist: aiohttp (>=3.14.0,<4.0.0)
|
|
16
|
+
Requires-Dist: binance-common (==4.0.0)
|
|
17
|
+
Requires-Dist: pycryptodome (>=3.17,<4.0)
|
|
18
|
+
Requires-Dist: pydantic (>=2.10.0)
|
|
19
|
+
Requires-Dist: requests (>=2.34.2)
|
|
20
|
+
Requires-Dist: urllib3 (>=2.7.0)
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
[tool.poetry]
|
|
2
|
+
name = "binance-web3-wallet"
|
|
3
|
+
version = "1.0.0"
|
|
4
|
+
description = "Official Binance Web3Wallet Connector - A lightweight library that provides a convenient interface to Binance's Web3Wallet REST API"
|
|
5
|
+
authors = ["Binance"]
|
|
6
|
+
license = "MIT"
|
|
7
|
+
include = ["CHANGELOG.md", "LICENSE"]
|
|
8
|
+
packages = [
|
|
9
|
+
{ include = "binance_sdk_web3_wallet", from = "src" }
|
|
10
|
+
]
|
|
11
|
+
|
|
12
|
+
[tool.poetry.dependencies]
|
|
13
|
+
python = ">=3.10,<3.15"
|
|
14
|
+
requests = ">=2.34.2"
|
|
15
|
+
urllib3 = ">=2.7.0"
|
|
16
|
+
pydantic = ">=2.10.0"
|
|
17
|
+
pycryptodome = "^3.17"
|
|
18
|
+
aiohttp = "^3.14.0"
|
|
19
|
+
binance-common = "4.0.0"
|
|
20
|
+
|
|
21
|
+
[tool.poetry.extras]
|
|
22
|
+
dev = ["pytest"]
|
|
23
|
+
|
|
24
|
+
[tool.poetry.group.dev.dependencies]
|
|
25
|
+
tox = "^4.27.0"
|
|
26
|
+
pytest-asyncio = "^1.0.0"
|
|
27
|
+
black = "^25.1.0"
|
|
28
|
+
ruff = "^0.12.0"
|
|
29
|
+
pytest = ">=8.4.1"
|
|
30
|
+
|
|
31
|
+
[tool.ruff]
|
|
32
|
+
exclude = [".git", ".tox", "build", "dist"]
|
|
33
|
+
lint.ignore = ["E741"]
|
|
34
|
+
|
|
35
|
+
[build-system]
|
|
36
|
+
requires = ["poetry-core"]
|
|
37
|
+
build-backend = "poetry.core.masonry.api"
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
from binance_sdk_web3_wallet.web3_wallet import Web3Wallet
|
|
2
|
+
from binance_common.errors import (
|
|
3
|
+
ClientError,
|
|
4
|
+
RequiredError,
|
|
5
|
+
UnauthorizedError,
|
|
6
|
+
ForbiddenError,
|
|
7
|
+
TooManyRequestsError,
|
|
8
|
+
RateLimitBanError,
|
|
9
|
+
ServerError,
|
|
10
|
+
NetworkError,
|
|
11
|
+
NotFoundError,
|
|
12
|
+
BadRequestError,
|
|
13
|
+
)
|
|
14
|
+
from binance_common.constants import (
|
|
15
|
+
WEB3_WALLET_REST_API_PROD_URL,
|
|
16
|
+
)
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
"Web3Wallet",
|
|
20
|
+
"WEB3_WALLET_REST_API_PROD_URL",
|
|
21
|
+
"ClientError",
|
|
22
|
+
"RequiredError",
|
|
23
|
+
"UnauthorizedError",
|
|
24
|
+
"ForbiddenError",
|
|
25
|
+
"TooManyRequestsError",
|
|
26
|
+
"RateLimitBanError",
|
|
27
|
+
"ServerError",
|
|
28
|
+
"NetworkError",
|
|
29
|
+
"NotFoundError",
|
|
30
|
+
"BadRequestError",
|
|
31
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
NAME = "binance-sdk-web3-wallet"
|
|
File without changes
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Binance Wallet REST API
|
|
3
|
+
|
|
4
|
+
Cross-chain wallet, market, trading, and transaction APIs for the OnchainOS platform.
|
|
5
|
+
The version of the OpenAPI document: 1.0.0
|
|
6
|
+
Contact: wallet-api@binance.com
|
|
7
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
8
|
+
|
|
9
|
+
Do not edit the class manually.
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
from .rest_api import Web3WalletRestAPI
|
|
13
|
+
|
|
14
|
+
__all__ = ["Web3WalletRestAPI"]
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Binance Wallet REST API
|
|
3
|
+
|
|
4
|
+
Cross-chain wallet, market, trading, and transaction APIs for the OnchainOS platform.
|
|
5
|
+
The version of the OpenAPI document: 1.0.0
|
|
6
|
+
Contact: wallet-api@binance.com
|
|
7
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
8
|
+
|
|
9
|
+
Do not edit the class manually.
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
from .market_api import MarketApi as MarketApi
|
|
13
|
+
from .trading_api import TradingApi as TradingApi
|
|
14
|
+
from .transaction_api import TransactionApi as TransactionApi
|
|
15
|
+
from .wallet_api import WalletApi as WalletApi
|