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.
Files changed (130) hide show
  1. binance_web3_wallet-1.0.0/CHANGELOG.md +5 -0
  2. binance_web3_wallet-1.0.0/LICENCE +0 -0
  3. binance_web3_wallet-1.0.0/PKG-INFO +20 -0
  4. binance_web3_wallet-1.0.0/pyproject.toml +37 -0
  5. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/__init__.py +31 -0
  6. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/metadata.py +1 -0
  7. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/py.typed +0 -0
  8. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/__init__.py +14 -0
  9. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/api/__init__.py +15 -0
  10. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/api/market_api.py +901 -0
  11. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/api/trading_api.py +484 -0
  12. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/api/transaction_api.py +548 -0
  13. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/api/wallet_api.py +275 -0
  14. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/__init__.py +318 -0
  15. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/broadcast_transactions_response.py +125 -0
  16. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/broadcast_transactions_response_data.py +112 -0
  17. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/build_swap_transaction_response.py +125 -0
  18. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/build_swap_transaction_response_data.py +133 -0
  19. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/build_swap_transaction_response_data_router_result.py +221 -0
  20. 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
  21. 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
  22. 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
  23. 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
  24. 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
  25. 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
  26. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/build_swap_transaction_response_data_tx.py +194 -0
  27. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/enums.py +110 -0
  28. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_aggregated_quote_response.py +135 -0
  29. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_aggregated_quote_response_data_inner.py +249 -0
  30. 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
  31. 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
  32. 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
  33. 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
  34. 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
  35. 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
  36. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_aggregator_supported_chains_response.py +143 -0
  37. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_aggregator_supported_chains_response_data_inner.py +126 -0
  38. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_all_token_balances_by_address_response.py +135 -0
  39. 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
  40. 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
  41. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_all_tokens_response.py +134 -0
  42. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_all_tokens_response_data_inner.py +133 -0
  43. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_broadcast_orders_response.py +125 -0
  44. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_broadcast_orders_response_data.py +131 -0
  45. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_broadcast_orders_response_data_orders_inner.py +152 -0
  46. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_candles_response.py +104 -0
  47. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_erc20_approve_transaction_response.py +134 -0
  48. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_erc20_approve_transaction_response_data_inner.py +133 -0
  49. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_gas_limit_request_evm_tx.py +118 -0
  50. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_gas_limit_request_sol_tx.py +105 -0
  51. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_gas_limit_response.py +125 -0
  52. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_gas_limit_response_data.py +107 -0
  53. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_gas_price_response.py +127 -0
  54. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_gas_price_response_data.py +181 -0
  55. 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
  56. 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
  57. 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
  58. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_holders_ranking_response.py +134 -0
  59. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_holders_ranking_response_data_inner.py +258 -0
  60. 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
  61. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_hot_token_list_response.py +124 -0
  62. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_hot_token_list_response_data.py +135 -0
  63. 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
  64. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_hot_tokens_response.py +125 -0
  65. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_hot_tokens_response_data.py +136 -0
  66. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_hot_tokens_response_data_items_inner.py +280 -0
  67. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_price_info_response.py +134 -0
  68. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_price_info_response_data_inner.py +388 -0
  69. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_price_response.py +134 -0
  70. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_price_response_data_inner.py +130 -0
  71. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_supported_chains_response.py +136 -0
  72. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_supported_chains_response_data_inner.py +147 -0
  73. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_advanced_info_response.py +125 -0
  74. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_advanced_info_response_data.py +274 -0
  75. 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
  76. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_balances_by_address_response.py +135 -0
  77. 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
  78. 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
  79. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_basic_info_response.py +125 -0
  80. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_basic_info_response_data.py +168 -0
  81. 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
  82. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_price_response.py +133 -0
  83. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_price_response_data_inner.py +128 -0
  84. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_trades_response.py +125 -0
  85. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_trades_response_data.py +131 -0
  86. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_trades_response_data_trades_inner.py +182 -0
  87. 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
  88. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_trading_info_response.py +133 -0
  89. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_token_trading_info_response_data_inner.py +530 -0
  90. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_top_liquidity_pools_response.py +134 -0
  91. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_top_liquidity_pools_response_data_inner.py +176 -0
  92. 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
  93. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_top_traders_response.py +134 -0
  94. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_top_traders_response_data_inner.py +250 -0
  95. 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
  96. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_total_value_by_address_response.py +125 -0
  97. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_total_value_by_address_response_data.py +107 -0
  98. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_transaction_detail_by_hash_response.py +135 -0
  99. 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
  100. 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
  101. 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
  102. 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
  103. 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
  104. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_transaction_status_response.py +130 -0
  105. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_transaction_status_response_data.py +315 -0
  106. 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
  107. 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
  108. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_transaction_supported_chains_response.py +143 -0
  109. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_transaction_supported_chains_response_data_inner.py +126 -0
  110. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_transactions_by_address_response.py +135 -0
  111. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_transactions_by_address_response_data_inner.py +137 -0
  112. 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
  113. 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
  114. 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
  115. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_wallet_supported_chains_response.py +136 -0
  116. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/get_wallet_supported_chains_response_data_inner.py +126 -0
  117. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/search_token_response.py +133 -0
  118. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/search_token_response_data_inner.py +197 -0
  119. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/search_token_response_data_inner_tag_list.py +111 -0
  120. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/search_tokens_response.py +134 -0
  121. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/search_tokens_response_data_inner.py +200 -0
  122. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/search_tokens_response_data_inner_tag_list.py +112 -0
  123. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/simulate_transactions_request_evm_tx.py +115 -0
  124. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/simulate_transactions_request_sol_tx.py +110 -0
  125. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/simulate_transactions_response.py +125 -0
  126. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/simulate_transactions_response_data.py +179 -0
  127. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/simulate_transactions_response_data_allowance_changes_inner.py +133 -0
  128. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/models/simulate_transactions_response_data_balance_changes_inner.py +129 -0
  129. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/rest_api/rest_api.py +1339 -0
  130. binance_web3_wallet-1.0.0/src/binance_sdk_web3_wallet/web3_wallet.py +34 -0
@@ -0,0 +1,5 @@
1
+ # Changelog
2
+
3
+ ## 1.0.0 - 2026-06-09
4
+
5
+ - Initial release
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"
@@ -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