hiero-sdk-python 0.0.0.dev2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (410) hide show
  1. hiero_sdk_python/__init__.py +93 -0
  2. hiero_sdk_python/account/__init__.py +0 -0
  3. hiero_sdk_python/account/account_balance.py +44 -0
  4. hiero_sdk_python/account/account_create_transaction.py +173 -0
  5. hiero_sdk_python/account/account_id.py +62 -0
  6. hiero_sdk_python/client/__init__.py +0 -0
  7. hiero_sdk_python/client/client.py +139 -0
  8. hiero_sdk_python/client/network.py +143 -0
  9. hiero_sdk_python/consensus/__init__.py +0 -0
  10. hiero_sdk_python/consensus/topic_create_transaction.py +83 -0
  11. hiero_sdk_python/consensus/topic_delete_transaction.py +67 -0
  12. hiero_sdk_python/consensus/topic_id.py +44 -0
  13. hiero_sdk_python/consensus/topic_info.py +91 -0
  14. hiero_sdk_python/consensus/topic_message.py +61 -0
  15. hiero_sdk_python/consensus/topic_message_submit_transaction.py +87 -0
  16. hiero_sdk_python/consensus/topic_update_transaction.py +173 -0
  17. hiero_sdk_python/crypto/__init__.py +0 -0
  18. hiero_sdk_python/crypto/private_key.py +196 -0
  19. hiero_sdk_python/crypto/public_key.py +162 -0
  20. hiero_sdk_python/hapi/mirror/__init__.py +0 -0
  21. hiero_sdk_python/hapi/mirror/consensus_service_pb2.py +44 -0
  22. hiero_sdk_python/hapi/mirror/consensus_service_pb2_grpc.py +106 -0
  23. hiero_sdk_python/hapi/mirror/mirror_network_service_pb2.py +41 -0
  24. hiero_sdk_python/hapi/mirror/mirror_network_service_pb2_grpc.py +108 -0
  25. hiero_sdk_python/hapi/services/__init__.py +0 -0
  26. hiero_sdk_python/hapi/services/address_book_service_pb2.py +41 -0
  27. hiero_sdk_python/hapi/services/address_book_service_pb2.pyi +8 -0
  28. hiero_sdk_python/hapi/services/address_book_service_pb2_grpc.py +444 -0
  29. hiero_sdk_python/hapi/services/auxiliary/tss/tss_encryption_key_pb2.py +37 -0
  30. hiero_sdk_python/hapi/services/auxiliary/tss/tss_encryption_key_pb2.pyi +11 -0
  31. hiero_sdk_python/hapi/services/auxiliary/tss/tss_encryption_key_pb2_grpc.py +24 -0
  32. hiero_sdk_python/hapi/services/auxiliary/tss/tss_message_pb2.py +37 -0
  33. hiero_sdk_python/hapi/services/auxiliary/tss/tss_message_pb2.pyi +17 -0
  34. hiero_sdk_python/hapi/services/auxiliary/tss/tss_message_pb2_grpc.py +24 -0
  35. hiero_sdk_python/hapi/services/auxiliary/tss/tss_share_signature_pb2.py +37 -0
  36. hiero_sdk_python/hapi/services/auxiliary/tss/tss_share_signature_pb2.pyi +17 -0
  37. hiero_sdk_python/hapi/services/auxiliary/tss/tss_share_signature_pb2_grpc.py +24 -0
  38. hiero_sdk_python/hapi/services/auxiliary/tss/tss_vote_pb2.py +37 -0
  39. hiero_sdk_python/hapi/services/auxiliary/tss/tss_vote_pb2.pyi +19 -0
  40. hiero_sdk_python/hapi/services/auxiliary/tss/tss_vote_pb2_grpc.py +24 -0
  41. hiero_sdk_python/hapi/services/basic_types_pb2.py +153 -0
  42. hiero_sdk_python/hapi/services/basic_types_pb2.pyi +694 -0
  43. hiero_sdk_python/hapi/services/basic_types_pb2_grpc.py +24 -0
  44. hiero_sdk_python/hapi/services/consensus_create_topic_pb2.py +39 -0
  45. hiero_sdk_python/hapi/services/consensus_create_topic_pb2.pyi +21 -0
  46. hiero_sdk_python/hapi/services/consensus_create_topic_pb2_grpc.py +24 -0
  47. hiero_sdk_python/hapi/services/consensus_delete_topic_pb2.py +38 -0
  48. hiero_sdk_python/hapi/services/consensus_delete_topic_pb2.pyi +12 -0
  49. hiero_sdk_python/hapi/services/consensus_delete_topic_pb2_grpc.py +24 -0
  50. hiero_sdk_python/hapi/services/consensus_get_topic_info_pb2.py +43 -0
  51. hiero_sdk_python/hapi/services/consensus_get_topic_info_pb2.pyi +27 -0
  52. hiero_sdk_python/hapi/services/consensus_get_topic_info_pb2_grpc.py +24 -0
  53. hiero_sdk_python/hapi/services/consensus_service_pb2.py +41 -0
  54. hiero_sdk_python/hapi/services/consensus_service_pb2.pyi +8 -0
  55. hiero_sdk_python/hapi/services/consensus_service_pb2_grpc.py +432 -0
  56. hiero_sdk_python/hapi/services/consensus_submit_message_pb2.py +40 -0
  57. hiero_sdk_python/hapi/services/consensus_submit_message_pb2.pyi +26 -0
  58. hiero_sdk_python/hapi/services/consensus_submit_message_pb2_grpc.py +24 -0
  59. hiero_sdk_python/hapi/services/consensus_topic_info_pb2.py +40 -0
  60. hiero_sdk_python/hapi/services/consensus_topic_info_pb2.pyi +30 -0
  61. hiero_sdk_python/hapi/services/consensus_topic_info_pb2_grpc.py +24 -0
  62. hiero_sdk_python/hapi/services/consensus_update_topic_pb2.py +41 -0
  63. hiero_sdk_python/hapi/services/consensus_update_topic_pb2.pyi +27 -0
  64. hiero_sdk_python/hapi/services/consensus_update_topic_pb2_grpc.py +24 -0
  65. hiero_sdk_python/hapi/services/contract_call_local_pb2.py +52 -0
  66. hiero_sdk_python/hapi/services/contract_call_local_pb2.pyi +79 -0
  67. hiero_sdk_python/hapi/services/contract_call_local_pb2_grpc.py +24 -0
  68. hiero_sdk_python/hapi/services/contract_call_pb2.py +38 -0
  69. hiero_sdk_python/hapi/services/contract_call_pb2.pyi +18 -0
  70. hiero_sdk_python/hapi/services/contract_call_pb2_grpc.py +24 -0
  71. hiero_sdk_python/hapi/services/contract_create_pb2.py +41 -0
  72. hiero_sdk_python/hapi/services/contract_create_pb2.pyi +45 -0
  73. hiero_sdk_python/hapi/services/contract_create_pb2_grpc.py +24 -0
  74. hiero_sdk_python/hapi/services/contract_delete_pb2.py +38 -0
  75. hiero_sdk_python/hapi/services/contract_delete_pb2.pyi +18 -0
  76. hiero_sdk_python/hapi/services/contract_delete_pb2_grpc.py +24 -0
  77. hiero_sdk_python/hapi/services/contract_get_bytecode_pb2.py +42 -0
  78. hiero_sdk_python/hapi/services/contract_get_bytecode_pb2.pyi +24 -0
  79. hiero_sdk_python/hapi/services/contract_get_bytecode_pb2_grpc.py +24 -0
  80. hiero_sdk_python/hapi/services/contract_get_info_pb2.py +48 -0
  81. hiero_sdk_python/hapi/services/contract_get_info_pb2.pyi +60 -0
  82. hiero_sdk_python/hapi/services/contract_get_info_pb2_grpc.py +24 -0
  83. hiero_sdk_python/hapi/services/contract_get_records_pb2.py +47 -0
  84. hiero_sdk_python/hapi/services/contract_get_records_pb2.pyi +28 -0
  85. hiero_sdk_python/hapi/services/contract_get_records_pb2_grpc.py +24 -0
  86. hiero_sdk_python/hapi/services/contract_types_pb2.py +39 -0
  87. hiero_sdk_python/hapi/services/contract_types_pb2.pyi +15 -0
  88. hiero_sdk_python/hapi/services/contract_types_pb2_grpc.py +24 -0
  89. hiero_sdk_python/hapi/services/contract_update_pb2.py +47 -0
  90. hiero_sdk_python/hapi/services/contract_update_pb2.pyi +39 -0
  91. hiero_sdk_python/hapi/services/contract_update_pb2_grpc.py +24 -0
  92. hiero_sdk_python/hapi/services/crypto_add_live_hash_pb2.py +41 -0
  93. hiero_sdk_python/hapi/services/crypto_add_live_hash_pb2.pyi +25 -0
  94. hiero_sdk_python/hapi/services/crypto_add_live_hash_pb2_grpc.py +24 -0
  95. hiero_sdk_python/hapi/services/crypto_approve_allowance_pb2.py +45 -0
  96. hiero_sdk_python/hapi/services/crypto_approve_allowance_pb2.pyi +56 -0
  97. hiero_sdk_python/hapi/services/crypto_approve_allowance_pb2_grpc.py +24 -0
  98. hiero_sdk_python/hapi/services/crypto_create_pb2.py +45 -0
  99. hiero_sdk_python/hapi/services/crypto_create_pb2.pyi +43 -0
  100. hiero_sdk_python/hapi/services/crypto_create_pb2_grpc.py +24 -0
  101. hiero_sdk_python/hapi/services/crypto_delete_allowance_pb2.py +40 -0
  102. hiero_sdk_python/hapi/services/crypto_delete_allowance_pb2.pyi +23 -0
  103. hiero_sdk_python/hapi/services/crypto_delete_allowance_pb2_grpc.py +24 -0
  104. hiero_sdk_python/hapi/services/crypto_delete_live_hash_pb2.py +38 -0
  105. hiero_sdk_python/hapi/services/crypto_delete_live_hash_pb2.pyi +14 -0
  106. hiero_sdk_python/hapi/services/crypto_delete_live_hash_pb2_grpc.py +24 -0
  107. hiero_sdk_python/hapi/services/crypto_delete_pb2.py +38 -0
  108. hiero_sdk_python/hapi/services/crypto_delete_pb2.pyi +14 -0
  109. hiero_sdk_python/hapi/services/crypto_delete_pb2_grpc.py +24 -0
  110. hiero_sdk_python/hapi/services/crypto_get_account_balance_pb2.py +44 -0
  111. hiero_sdk_python/hapi/services/crypto_get_account_balance_pb2.pyi +31 -0
  112. hiero_sdk_python/hapi/services/crypto_get_account_balance_pb2_grpc.py +24 -0
  113. hiero_sdk_python/hapi/services/crypto_get_account_records_pb2.py +43 -0
  114. hiero_sdk_python/hapi/services/crypto_get_account_records_pb2.pyi +28 -0
  115. hiero_sdk_python/hapi/services/crypto_get_account_records_pb2_grpc.py +24 -0
  116. hiero_sdk_python/hapi/services/crypto_get_info_pb2.py +55 -0
  117. hiero_sdk_python/hapi/services/crypto_get_info_pb2.pyi +73 -0
  118. hiero_sdk_python/hapi/services/crypto_get_info_pb2_grpc.py +24 -0
  119. hiero_sdk_python/hapi/services/crypto_get_live_hash_pb2.py +43 -0
  120. hiero_sdk_python/hapi/services/crypto_get_live_hash_pb2.pyi +27 -0
  121. hiero_sdk_python/hapi/services/crypto_get_live_hash_pb2_grpc.py +24 -0
  122. hiero_sdk_python/hapi/services/crypto_get_stakers_pb2.py +46 -0
  123. hiero_sdk_python/hapi/services/crypto_get_stakers_pb2.pyi +41 -0
  124. hiero_sdk_python/hapi/services/crypto_get_stakers_pb2_grpc.py +24 -0
  125. hiero_sdk_python/hapi/services/crypto_service_pb2.py +41 -0
  126. hiero_sdk_python/hapi/services/crypto_service_pb2.pyi +8 -0
  127. hiero_sdk_python/hapi/services/crypto_service_pb2_grpc.py +787 -0
  128. hiero_sdk_python/hapi/services/crypto_transfer_pb2.py +38 -0
  129. hiero_sdk_python/hapi/services/crypto_transfer_pb2.pyi +15 -0
  130. hiero_sdk_python/hapi/services/crypto_transfer_pb2_grpc.py +24 -0
  131. hiero_sdk_python/hapi/services/crypto_update_pb2.py +55 -0
  132. hiero_sdk_python/hapi/services/crypto_update_pb2.pyi +47 -0
  133. hiero_sdk_python/hapi/services/crypto_update_pb2_grpc.py +24 -0
  134. hiero_sdk_python/hapi/services/custom_fees_pb2.py +46 -0
  135. hiero_sdk_python/hapi/services/custom_fees_pb2.pyi +61 -0
  136. hiero_sdk_python/hapi/services/custom_fees_pb2_grpc.py +24 -0
  137. hiero_sdk_python/hapi/services/duration_pb2.py +37 -0
  138. hiero_sdk_python/hapi/services/duration_pb2.pyi +11 -0
  139. hiero_sdk_python/hapi/services/duration_pb2_grpc.py +24 -0
  140. hiero_sdk_python/hapi/services/ethereum_transaction_pb2.py +38 -0
  141. hiero_sdk_python/hapi/services/ethereum_transaction_pb2.pyi +16 -0
  142. hiero_sdk_python/hapi/services/ethereum_transaction_pb2_grpc.py +24 -0
  143. hiero_sdk_python/hapi/services/event/event_consensus_data_pb2.py +40 -0
  144. hiero_sdk_python/hapi/services/event/event_consensus_data_pb2.pyi +16 -0
  145. hiero_sdk_python/hapi/services/event/event_consensus_data_pb2_grpc.py +24 -0
  146. hiero_sdk_python/hapi/services/event/event_core_pb2.py +40 -0
  147. hiero_sdk_python/hapi/services/event/event_core_pb2.pyi +23 -0
  148. hiero_sdk_python/hapi/services/event/event_core_pb2_grpc.py +24 -0
  149. hiero_sdk_python/hapi/services/event/event_descriptor_pb2.py +37 -0
  150. hiero_sdk_python/hapi/services/event/event_descriptor_pb2.pyi +17 -0
  151. hiero_sdk_python/hapi/services/event/event_descriptor_pb2_grpc.py +24 -0
  152. hiero_sdk_python/hapi/services/event/event_transaction_pb2.py +38 -0
  153. hiero_sdk_python/hapi/services/event/event_transaction_pb2.pyi +14 -0
  154. hiero_sdk_python/hapi/services/event/event_transaction_pb2_grpc.py +24 -0
  155. hiero_sdk_python/hapi/services/event/gossip_event_pb2.py +41 -0
  156. hiero_sdk_python/hapi/services/event/gossip_event_pb2.pyi +20 -0
  157. hiero_sdk_python/hapi/services/event/gossip_event_pb2_grpc.py +24 -0
  158. hiero_sdk_python/hapi/services/event/state_signature_transaction_pb2.py +37 -0
  159. hiero_sdk_python/hapi/services/event/state_signature_transaction_pb2.pyi +15 -0
  160. hiero_sdk_python/hapi/services/event/state_signature_transaction_pb2_grpc.py +24 -0
  161. hiero_sdk_python/hapi/services/exchange_rate_pb2.py +40 -0
  162. hiero_sdk_python/hapi/services/exchange_rate_pb2.pyi +24 -0
  163. hiero_sdk_python/hapi/services/exchange_rate_pb2_grpc.py +24 -0
  164. hiero_sdk_python/hapi/services/file_append_pb2.py +38 -0
  165. hiero_sdk_python/hapi/services/file_append_pb2.pyi +14 -0
  166. hiero_sdk_python/hapi/services/file_append_pb2_grpc.py +24 -0
  167. hiero_sdk_python/hapi/services/file_create_pb2.py +39 -0
  168. hiero_sdk_python/hapi/services/file_create_pb2.pyi +25 -0
  169. hiero_sdk_python/hapi/services/file_create_pb2_grpc.py +24 -0
  170. hiero_sdk_python/hapi/services/file_delete_pb2.py +38 -0
  171. hiero_sdk_python/hapi/services/file_delete_pb2.pyi +12 -0
  172. hiero_sdk_python/hapi/services/file_delete_pb2_grpc.py +24 -0
  173. hiero_sdk_python/hapi/services/file_get_contents_pb2.py +44 -0
  174. hiero_sdk_python/hapi/services/file_get_contents_pb2.pyi +31 -0
  175. hiero_sdk_python/hapi/services/file_get_contents_pb2_grpc.py +24 -0
  176. hiero_sdk_python/hapi/services/file_get_info_pb2.py +45 -0
  177. hiero_sdk_python/hapi/services/file_get_info_pb2.pyi +42 -0
  178. hiero_sdk_python/hapi/services/file_get_info_pb2_grpc.py +24 -0
  179. hiero_sdk_python/hapi/services/file_service_pb2.py +41 -0
  180. hiero_sdk_python/hapi/services/file_service_pb2.pyi +8 -0
  181. hiero_sdk_python/hapi/services/file_service_pb2_grpc.py +423 -0
  182. hiero_sdk_python/hapi/services/file_update_pb2.py +40 -0
  183. hiero_sdk_python/hapi/services/file_update_pb2.pyi +22 -0
  184. hiero_sdk_python/hapi/services/file_update_pb2_grpc.py +24 -0
  185. hiero_sdk_python/hapi/services/freeze_pb2.py +48 -0
  186. hiero_sdk_python/hapi/services/freeze_pb2.pyi +28 -0
  187. hiero_sdk_python/hapi/services/freeze_pb2_grpc.py +24 -0
  188. hiero_sdk_python/hapi/services/freeze_service_pb2.py +39 -0
  189. hiero_sdk_python/hapi/services/freeze_service_pb2.pyi +6 -0
  190. hiero_sdk_python/hapi/services/freeze_service_pb2_grpc.py +107 -0
  191. hiero_sdk_python/hapi/services/freeze_type_pb2.py +37 -0
  192. hiero_sdk_python/hapi/services/freeze_type_pb2.pyi +20 -0
  193. hiero_sdk_python/hapi/services/freeze_type_pb2_grpc.py +24 -0
  194. hiero_sdk_python/hapi/services/get_account_details_pb2.py +56 -0
  195. hiero_sdk_python/hapi/services/get_account_details_pb2.pyi +96 -0
  196. hiero_sdk_python/hapi/services/get_account_details_pb2_grpc.py +24 -0
  197. hiero_sdk_python/hapi/services/get_by_key_pb2.py +45 -0
  198. hiero_sdk_python/hapi/services/get_by_key_pb2.pyi +38 -0
  199. hiero_sdk_python/hapi/services/get_by_key_pb2_grpc.py +24 -0
  200. hiero_sdk_python/hapi/services/get_by_solidity_id_pb2.py +42 -0
  201. hiero_sdk_python/hapi/services/get_by_solidity_id_pb2.pyi +28 -0
  202. hiero_sdk_python/hapi/services/get_by_solidity_id_pb2_grpc.py +24 -0
  203. hiero_sdk_python/hapi/services/network_get_execution_time_pb2.py +42 -0
  204. hiero_sdk_python/hapi/services/network_get_execution_time_pb2.pyi +25 -0
  205. hiero_sdk_python/hapi/services/network_get_execution_time_pb2_grpc.py +24 -0
  206. hiero_sdk_python/hapi/services/network_get_version_info_pb2.py +42 -0
  207. hiero_sdk_python/hapi/services/network_get_version_info_pb2.pyi +24 -0
  208. hiero_sdk_python/hapi/services/network_get_version_info_pb2_grpc.py +24 -0
  209. hiero_sdk_python/hapi/services/network_service_pb2.py +41 -0
  210. hiero_sdk_python/hapi/services/network_service_pb2.pyi +8 -0
  211. hiero_sdk_python/hapi/services/network_service_pb2_grpc.py +250 -0
  212. hiero_sdk_python/hapi/services/node_create_pb2.py +38 -0
  213. hiero_sdk_python/hapi/services/node_create_pb2.pyi +25 -0
  214. hiero_sdk_python/hapi/services/node_create_pb2_grpc.py +24 -0
  215. hiero_sdk_python/hapi/services/node_delete_pb2.py +37 -0
  216. hiero_sdk_python/hapi/services/node_delete_pb2.pyi +11 -0
  217. hiero_sdk_python/hapi/services/node_delete_pb2_grpc.py +24 -0
  218. hiero_sdk_python/hapi/services/node_stake_update_pb2.py +43 -0
  219. hiero_sdk_python/hapi/services/node_stake_update_pb2.pyi +58 -0
  220. hiero_sdk_python/hapi/services/node_stake_update_pb2_grpc.py +24 -0
  221. hiero_sdk_python/hapi/services/node_update_pb2.py +39 -0
  222. hiero_sdk_python/hapi/services/node_update_pb2.pyi +28 -0
  223. hiero_sdk_python/hapi/services/node_update_pb2_grpc.py +24 -0
  224. hiero_sdk_python/hapi/services/query_header_pb2.py +40 -0
  225. hiero_sdk_python/hapi/services/query_header_pb2.pyi +26 -0
  226. hiero_sdk_python/hapi/services/query_header_pb2_grpc.py +24 -0
  227. hiero_sdk_python/hapi/services/query_pb2.py +62 -0
  228. hiero_sdk_python/hapi/services/query_pb2.pyi +84 -0
  229. hiero_sdk_python/hapi/services/query_pb2_grpc.py +24 -0
  230. hiero_sdk_python/hapi/services/response_code_pb2.py +53 -0
  231. hiero_sdk_python/hapi/services/response_code_pb2.pyi +674 -0
  232. hiero_sdk_python/hapi/services/response_code_pb2_grpc.py +24 -0
  233. hiero_sdk_python/hapi/services/response_header_pb2.py +39 -0
  234. hiero_sdk_python/hapi/services/response_header_pb2.pyi +19 -0
  235. hiero_sdk_python/hapi/services/response_header_pb2_grpc.py +24 -0
  236. hiero_sdk_python/hapi/services/response_pb2.py +62 -0
  237. hiero_sdk_python/hapi/services/response_pb2.pyi +84 -0
  238. hiero_sdk_python/hapi/services/response_pb2_grpc.py +24 -0
  239. hiero_sdk_python/hapi/services/schedulable_transaction_body_pb2.py +83 -0
  240. hiero_sdk_python/hapi/services/schedulable_transaction_body_pb2.pyi +151 -0
  241. hiero_sdk_python/hapi/services/schedulable_transaction_body_pb2_grpc.py +24 -0
  242. hiero_sdk_python/hapi/services/schedule_create_pb2.py +40 -0
  243. hiero_sdk_python/hapi/services/schedule_create_pb2.pyi +24 -0
  244. hiero_sdk_python/hapi/services/schedule_create_pb2_grpc.py +24 -0
  245. hiero_sdk_python/hapi/services/schedule_delete_pb2.py +38 -0
  246. hiero_sdk_python/hapi/services/schedule_delete_pb2.pyi +12 -0
  247. hiero_sdk_python/hapi/services/schedule_delete_pb2_grpc.py +24 -0
  248. hiero_sdk_python/hapi/services/schedule_get_info_pb2.py +46 -0
  249. hiero_sdk_python/hapi/services/schedule_get_info_pb2.pyi +56 -0
  250. hiero_sdk_python/hapi/services/schedule_get_info_pb2_grpc.py +24 -0
  251. hiero_sdk_python/hapi/services/schedule_service_pb2.py +41 -0
  252. hiero_sdk_python/hapi/services/schedule_service_pb2.pyi +8 -0
  253. hiero_sdk_python/hapi/services/schedule_service_pb2_grpc.py +402 -0
  254. hiero_sdk_python/hapi/services/schedule_sign_pb2.py +38 -0
  255. hiero_sdk_python/hapi/services/schedule_sign_pb2.pyi +12 -0
  256. hiero_sdk_python/hapi/services/schedule_sign_pb2_grpc.py +24 -0
  257. hiero_sdk_python/hapi/services/smart_contract_service_pb2.py +43 -0
  258. hiero_sdk_python/hapi/services/smart_contract_service_pb2.pyi +8 -0
  259. hiero_sdk_python/hapi/services/smart_contract_service_pb2_grpc.py +604 -0
  260. hiero_sdk_python/hapi/services/system_delete_pb2.py +39 -0
  261. hiero_sdk_python/hapi/services/system_delete_pb2.pyi +17 -0
  262. hiero_sdk_python/hapi/services/system_delete_pb2_grpc.py +24 -0
  263. hiero_sdk_python/hapi/services/system_undelete_pb2.py +38 -0
  264. hiero_sdk_python/hapi/services/system_undelete_pb2.pyi +14 -0
  265. hiero_sdk_python/hapi/services/system_undelete_pb2_grpc.py +24 -0
  266. hiero_sdk_python/hapi/services/throttle_definitions_pb2.py +42 -0
  267. hiero_sdk_python/hapi/services/throttle_definitions_pb2.pyi +31 -0
  268. hiero_sdk_python/hapi/services/throttle_definitions_pb2_grpc.py +24 -0
  269. hiero_sdk_python/hapi/services/timestamp_pb2.py +39 -0
  270. hiero_sdk_python/hapi/services/timestamp_pb2.pyi +19 -0
  271. hiero_sdk_python/hapi/services/timestamp_pb2_grpc.py +24 -0
  272. hiero_sdk_python/hapi/services/token_airdrop_pb2.py +38 -0
  273. hiero_sdk_python/hapi/services/token_airdrop_pb2.pyi +13 -0
  274. hiero_sdk_python/hapi/services/token_airdrop_pb2_grpc.py +24 -0
  275. hiero_sdk_python/hapi/services/token_associate_pb2.py +38 -0
  276. hiero_sdk_python/hapi/services/token_associate_pb2.pyi +15 -0
  277. hiero_sdk_python/hapi/services/token_associate_pb2_grpc.py +24 -0
  278. hiero_sdk_python/hapi/services/token_burn_pb2.py +38 -0
  279. hiero_sdk_python/hapi/services/token_burn_pb2.pyi +17 -0
  280. hiero_sdk_python/hapi/services/token_burn_pb2_grpc.py +24 -0
  281. hiero_sdk_python/hapi/services/token_cancel_airdrop_pb2.py +38 -0
  282. hiero_sdk_python/hapi/services/token_cancel_airdrop_pb2.pyi +13 -0
  283. hiero_sdk_python/hapi/services/token_cancel_airdrop_pb2_grpc.py +24 -0
  284. hiero_sdk_python/hapi/services/token_claim_airdrop_pb2.py +38 -0
  285. hiero_sdk_python/hapi/services/token_claim_airdrop_pb2.pyi +13 -0
  286. hiero_sdk_python/hapi/services/token_claim_airdrop_pb2_grpc.py +24 -0
  287. hiero_sdk_python/hapi/services/token_create_pb2.py +41 -0
  288. hiero_sdk_python/hapi/services/token_create_pb2.pyi +60 -0
  289. hiero_sdk_python/hapi/services/token_create_pb2_grpc.py +24 -0
  290. hiero_sdk_python/hapi/services/token_delete_pb2.py +38 -0
  291. hiero_sdk_python/hapi/services/token_delete_pb2.pyi +12 -0
  292. hiero_sdk_python/hapi/services/token_delete_pb2_grpc.py +24 -0
  293. hiero_sdk_python/hapi/services/token_dissociate_pb2.py +38 -0
  294. hiero_sdk_python/hapi/services/token_dissociate_pb2.pyi +15 -0
  295. hiero_sdk_python/hapi/services/token_dissociate_pb2_grpc.py +24 -0
  296. hiero_sdk_python/hapi/services/token_fee_schedule_update_pb2.py +39 -0
  297. hiero_sdk_python/hapi/services/token_fee_schedule_update_pb2.pyi +16 -0
  298. hiero_sdk_python/hapi/services/token_fee_schedule_update_pb2_grpc.py +24 -0
  299. hiero_sdk_python/hapi/services/token_freeze_account_pb2.py +38 -0
  300. hiero_sdk_python/hapi/services/token_freeze_account_pb2.pyi +14 -0
  301. hiero_sdk_python/hapi/services/token_freeze_account_pb2_grpc.py +24 -0
  302. hiero_sdk_python/hapi/services/token_get_account_nft_infos_pb2.py +43 -0
  303. hiero_sdk_python/hapi/services/token_get_account_nft_infos_pb2.pyi +30 -0
  304. hiero_sdk_python/hapi/services/token_get_account_nft_infos_pb2_grpc.py +24 -0
  305. hiero_sdk_python/hapi/services/token_get_info_pb2.py +47 -0
  306. hiero_sdk_python/hapi/services/token_get_info_pb2.pyi +88 -0
  307. hiero_sdk_python/hapi/services/token_get_info_pb2_grpc.py +24 -0
  308. hiero_sdk_python/hapi/services/token_get_nft_info_pb2.py +45 -0
  309. hiero_sdk_python/hapi/services/token_get_nft_info_pb2.pyi +41 -0
  310. hiero_sdk_python/hapi/services/token_get_nft_info_pb2_grpc.py +24 -0
  311. hiero_sdk_python/hapi/services/token_get_nft_infos_pb2.py +43 -0
  312. hiero_sdk_python/hapi/services/token_get_nft_infos_pb2.pyi +32 -0
  313. hiero_sdk_python/hapi/services/token_get_nft_infos_pb2_grpc.py +24 -0
  314. hiero_sdk_python/hapi/services/token_grant_kyc_pb2.py +38 -0
  315. hiero_sdk_python/hapi/services/token_grant_kyc_pb2.pyi +14 -0
  316. hiero_sdk_python/hapi/services/token_grant_kyc_pb2_grpc.py +24 -0
  317. hiero_sdk_python/hapi/services/token_mint_pb2.py +38 -0
  318. hiero_sdk_python/hapi/services/token_mint_pb2.pyi +17 -0
  319. hiero_sdk_python/hapi/services/token_mint_pb2_grpc.py +24 -0
  320. hiero_sdk_python/hapi/services/token_pause_pb2.py +38 -0
  321. hiero_sdk_python/hapi/services/token_pause_pb2.pyi +12 -0
  322. hiero_sdk_python/hapi/services/token_pause_pb2_grpc.py +24 -0
  323. hiero_sdk_python/hapi/services/token_reject_pb2.py +40 -0
  324. hiero_sdk_python/hapi/services/token_reject_pb2.pyi +23 -0
  325. hiero_sdk_python/hapi/services/token_reject_pb2_grpc.py +24 -0
  326. hiero_sdk_python/hapi/services/token_revoke_kyc_pb2.py +38 -0
  327. hiero_sdk_python/hapi/services/token_revoke_kyc_pb2.pyi +14 -0
  328. hiero_sdk_python/hapi/services/token_revoke_kyc_pb2_grpc.py +24 -0
  329. hiero_sdk_python/hapi/services/token_service_pb2.py +45 -0
  330. hiero_sdk_python/hapi/services/token_service_pb2.pyi +8 -0
  331. hiero_sdk_python/hapi/services/token_service_pb2_grpc.py +1179 -0
  332. hiero_sdk_python/hapi/services/token_unfreeze_account_pb2.py +38 -0
  333. hiero_sdk_python/hapi/services/token_unfreeze_account_pb2.pyi +14 -0
  334. hiero_sdk_python/hapi/services/token_unfreeze_account_pb2_grpc.py +24 -0
  335. hiero_sdk_python/hapi/services/token_unpause_pb2.py +38 -0
  336. hiero_sdk_python/hapi/services/token_unpause_pb2.pyi +12 -0
  337. hiero_sdk_python/hapi/services/token_unpause_pb2_grpc.py +24 -0
  338. hiero_sdk_python/hapi/services/token_update_nfts_pb2.py +39 -0
  339. hiero_sdk_python/hapi/services/token_update_nfts_pb2.pyi +18 -0
  340. hiero_sdk_python/hapi/services/token_update_nfts_pb2_grpc.py +24 -0
  341. hiero_sdk_python/hapi/services/token_update_pb2.py +41 -0
  342. hiero_sdk_python/hapi/services/token_update_pb2.pyi +49 -0
  343. hiero_sdk_python/hapi/services/token_update_pb2_grpc.py +24 -0
  344. hiero_sdk_python/hapi/services/token_wipe_account_pb2.py +38 -0
  345. hiero_sdk_python/hapi/services/token_wipe_account_pb2.pyi +19 -0
  346. hiero_sdk_python/hapi/services/token_wipe_account_pb2_grpc.py +24 -0
  347. hiero_sdk_python/hapi/services/transaction_body_pb2.py +99 -0
  348. hiero_sdk_python/hapi/services/transaction_body_pb2.pyi +197 -0
  349. hiero_sdk_python/hapi/services/transaction_body_pb2_grpc.py +24 -0
  350. hiero_sdk_python/hapi/services/transaction_contents_pb2.py +38 -0
  351. hiero_sdk_python/hapi/services/transaction_contents_pb2.pyi +14 -0
  352. hiero_sdk_python/hapi/services/transaction_contents_pb2_grpc.py +24 -0
  353. hiero_sdk_python/hapi/services/transaction_get_fast_record_pb2.py +43 -0
  354. hiero_sdk_python/hapi/services/transaction_get_fast_record_pb2.pyi +25 -0
  355. hiero_sdk_python/hapi/services/transaction_get_fast_record_pb2_grpc.py +24 -0
  356. hiero_sdk_python/hapi/services/transaction_get_receipt_pb2.py +43 -0
  357. hiero_sdk_python/hapi/services/transaction_get_receipt_pb2.pyi +34 -0
  358. hiero_sdk_python/hapi/services/transaction_get_receipt_pb2_grpc.py +24 -0
  359. hiero_sdk_python/hapi/services/transaction_get_record_pb2.py +43 -0
  360. hiero_sdk_python/hapi/services/transaction_get_record_pb2.pyi +34 -0
  361. hiero_sdk_python/hapi/services/transaction_get_record_pb2_grpc.py +24 -0
  362. hiero_sdk_python/hapi/services/transaction_pb2.py +47 -0
  363. hiero_sdk_python/hapi/services/transaction_pb2.pyi +21 -0
  364. hiero_sdk_python/hapi/services/transaction_pb2_grpc.py +24 -0
  365. hiero_sdk_python/hapi/services/transaction_receipt_pb2.py +40 -0
  366. hiero_sdk_python/hapi/services/transaction_receipt_pb2.pyi +43 -0
  367. hiero_sdk_python/hapi/services/transaction_receipt_pb2_grpc.py +24 -0
  368. hiero_sdk_python/hapi/services/transaction_record_pb2.py +45 -0
  369. hiero_sdk_python/hapi/services/transaction_record_pb2.pyi +66 -0
  370. hiero_sdk_python/hapi/services/transaction_record_pb2_grpc.py +24 -0
  371. hiero_sdk_python/hapi/services/transaction_response_pb2.py +38 -0
  372. hiero_sdk_python/hapi/services/transaction_response_pb2.pyi +14 -0
  373. hiero_sdk_python/hapi/services/transaction_response_pb2_grpc.py +24 -0
  374. hiero_sdk_python/hapi/services/unchecked_submit_pb2.py +37 -0
  375. hiero_sdk_python/hapi/services/unchecked_submit_pb2.pyi +11 -0
  376. hiero_sdk_python/hapi/services/unchecked_submit_pb2_grpc.py +24 -0
  377. hiero_sdk_python/hapi/services/util_prng_pb2.py +37 -0
  378. hiero_sdk_python/hapi/services/util_prng_pb2.pyi +11 -0
  379. hiero_sdk_python/hapi/services/util_prng_pb2_grpc.py +24 -0
  380. hiero_sdk_python/hapi/services/util_service_pb2.py +39 -0
  381. hiero_sdk_python/hapi/services/util_service_pb2.pyi +6 -0
  382. hiero_sdk_python/hapi/services/util_service_pb2_grpc.py +106 -0
  383. hiero_sdk_python/hbar.py +33 -0
  384. hiero_sdk_python/query/__init__.py +0 -0
  385. hiero_sdk_python/query/account_balance_query.py +100 -0
  386. hiero_sdk_python/query/query.py +138 -0
  387. hiero_sdk_python/query/topic_info_query.py +105 -0
  388. hiero_sdk_python/query/topic_message_query.py +105 -0
  389. hiero_sdk_python/query/transaction_get_receipt_query.py +128 -0
  390. hiero_sdk_python/response_code.py +587 -0
  391. hiero_sdk_python/timestamp.py +166 -0
  392. hiero_sdk_python/tokens/__init__.py +0 -0
  393. hiero_sdk_python/tokens/token_associate_transaction.py +85 -0
  394. hiero_sdk_python/tokens/token_create_transaction.py +144 -0
  395. hiero_sdk_python/tokens/token_delete_transaction.py +84 -0
  396. hiero_sdk_python/tokens/token_dissociate_transaction.py +81 -0
  397. hiero_sdk_python/tokens/token_id.py +44 -0
  398. hiero_sdk_python/tokens/token_mint_transaction.py +143 -0
  399. hiero_sdk_python/transaction/__init__.py +0 -0
  400. hiero_sdk_python/transaction/query_payment.py +32 -0
  401. hiero_sdk_python/transaction/transaction.py +267 -0
  402. hiero_sdk_python/transaction/transaction_id.py +140 -0
  403. hiero_sdk_python/transaction/transaction_receipt.py +78 -0
  404. hiero_sdk_python/transaction/transfer_transaction.py +119 -0
  405. hiero_sdk_python/utils/key_format.py +22 -0
  406. hiero_sdk_python-0.0.0.dev2.dist-info/METADATA +822 -0
  407. hiero_sdk_python-0.0.0.dev2.dist-info/RECORD +410 -0
  408. hiero_sdk_python-0.0.0.dev2.dist-info/WHEEL +4 -0
  409. hiero_sdk_python-0.0.0.dev2.dist-info/entry_points.txt +4 -0
  410. hiero_sdk_python-0.0.0.dev2.dist-info/licenses/LICENSE +201 -0
@@ -0,0 +1,24 @@
1
+ # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2
+ """Client and server classes corresponding to protobuf-defined services."""
3
+ import grpc
4
+ import warnings
5
+
6
+
7
+ GRPC_GENERATED_VERSION = '1.70.0'
8
+ GRPC_VERSION = grpc.__version__
9
+ _version_not_supported = False
10
+
11
+ try:
12
+ from grpc._utilities import first_version_is_lower
13
+ _version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
14
+ except ImportError:
15
+ _version_not_supported = True
16
+
17
+ if _version_not_supported:
18
+ raise RuntimeError(
19
+ f'The grpc package installed is at version {GRPC_VERSION},'
20
+ + f' but the generated code in token_claim_airdrop_pb2_grpc.py depends on'
21
+ + f' grpcio>={GRPC_GENERATED_VERSION}.'
22
+ + f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
23
+ + f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
24
+ )
@@ -0,0 +1,41 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: token_create.proto
5
+ # Protobuf Python Version: 5.29.0
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 29,
16
+ 0,
17
+ '',
18
+ 'token_create.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from . import duration_pb2 as duration__pb2
26
+ from . import basic_types_pb2 as basic__types__pb2
27
+ from . import custom_fees_pb2 as custom__fees__pb2
28
+ from . import timestamp_pb2 as timestamp__pb2
29
+
30
+
31
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x12token_create.proto\x12\x05proto\x1a\x0e\x64uration.proto\x1a\x11\x62\x61sic_types.proto\x1a\x11\x63ustom_fees.proto\x1a\x0ftimestamp.proto\"\xbd\x05\n\x1aTokenCreateTransactionBody\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06symbol\x18\x02 \x01(\t\x12\x10\n\x08\x64\x65\x63imals\x18\x03 \x01(\r\x12\x15\n\rinitialSupply\x18\x04 \x01(\x04\x12\"\n\x08treasury\x18\x05 \x01(\x0b\x32\x10.proto.AccountID\x12\x1c\n\x08\x61\x64minKey\x18\x06 \x01(\x0b\x32\n.proto.Key\x12\x1a\n\x06kycKey\x18\x07 \x01(\x0b\x32\n.proto.Key\x12\x1d\n\tfreezeKey\x18\x08 \x01(\x0b\x32\n.proto.Key\x12\x1b\n\x07wipeKey\x18\t \x01(\x0b\x32\n.proto.Key\x12\x1d\n\tsupplyKey\x18\n \x01(\x0b\x32\n.proto.Key\x12\x15\n\rfreezeDefault\x18\x0b \x01(\x08\x12 \n\x06\x65xpiry\x18\r \x01(\x0b\x32\x10.proto.Timestamp\x12*\n\x10\x61utoRenewAccount\x18\x0e \x01(\x0b\x32\x10.proto.AccountID\x12(\n\x0f\x61utoRenewPeriod\x18\x0f \x01(\x0b\x32\x0f.proto.Duration\x12\x0c\n\x04memo\x18\x10 \x01(\t\x12#\n\ttokenType\x18\x11 \x01(\x0e\x32\x10.proto.TokenType\x12*\n\nsupplyType\x18\x12 \x01(\x0e\x32\x16.proto.TokenSupplyType\x12\x11\n\tmaxSupply\x18\x13 \x01(\x03\x12$\n\x10\x66\x65\x65_schedule_key\x18\x14 \x01(\x0b\x32\n.proto.Key\x12%\n\x0b\x63ustom_fees\x18\x15 \x03(\x0b\x32\x10.proto.CustomFee\x12\x1d\n\tpause_key\x18\x16 \x01(\x0b\x32\n.proto.Key\x12\x10\n\x08metadata\x18\x17 \x01(\x0c\x12 \n\x0cmetadata_key\x18\x18 \x01(\x0b\x32\n.proto.KeyB&\n\"com.hederahashgraph.api.proto.javaP\x01\x62\x06proto3')
32
+
33
+ _globals = globals()
34
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
35
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'token_create_pb2', _globals)
36
+ if not _descriptor._USE_C_DESCRIPTORS:
37
+ _globals['DESCRIPTOR']._loaded_options = None
38
+ _globals['DESCRIPTOR']._serialized_options = b'\n\"com.hederahashgraph.api.proto.javaP\001'
39
+ _globals['_TOKENCREATETRANSACTIONBODY']._serialized_start=101
40
+ _globals['_TOKENCREATETRANSACTIONBODY']._serialized_end=802
41
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,60 @@
1
+ import duration_pb2 as _duration_pb2
2
+ import basic_types_pb2 as _basic_types_pb2
3
+ import custom_fees_pb2 as _custom_fees_pb2
4
+ import timestamp_pb2 as _timestamp_pb2
5
+ from google.protobuf.internal import containers as _containers
6
+ from google.protobuf import descriptor as _descriptor
7
+ from google.protobuf import message as _message
8
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
9
+
10
+ DESCRIPTOR: _descriptor.FileDescriptor
11
+
12
+ class TokenCreateTransactionBody(_message.Message):
13
+ __slots__ = ("name", "symbol", "decimals", "initialSupply", "treasury", "adminKey", "kycKey", "freezeKey", "wipeKey", "supplyKey", "freezeDefault", "expiry", "autoRenewAccount", "autoRenewPeriod", "memo", "tokenType", "supplyType", "maxSupply", "fee_schedule_key", "custom_fees", "pause_key", "metadata", "metadata_key")
14
+ NAME_FIELD_NUMBER: _ClassVar[int]
15
+ SYMBOL_FIELD_NUMBER: _ClassVar[int]
16
+ DECIMALS_FIELD_NUMBER: _ClassVar[int]
17
+ INITIALSUPPLY_FIELD_NUMBER: _ClassVar[int]
18
+ TREASURY_FIELD_NUMBER: _ClassVar[int]
19
+ ADMINKEY_FIELD_NUMBER: _ClassVar[int]
20
+ KYCKEY_FIELD_NUMBER: _ClassVar[int]
21
+ FREEZEKEY_FIELD_NUMBER: _ClassVar[int]
22
+ WIPEKEY_FIELD_NUMBER: _ClassVar[int]
23
+ SUPPLYKEY_FIELD_NUMBER: _ClassVar[int]
24
+ FREEZEDEFAULT_FIELD_NUMBER: _ClassVar[int]
25
+ EXPIRY_FIELD_NUMBER: _ClassVar[int]
26
+ AUTORENEWACCOUNT_FIELD_NUMBER: _ClassVar[int]
27
+ AUTORENEWPERIOD_FIELD_NUMBER: _ClassVar[int]
28
+ MEMO_FIELD_NUMBER: _ClassVar[int]
29
+ TOKENTYPE_FIELD_NUMBER: _ClassVar[int]
30
+ SUPPLYTYPE_FIELD_NUMBER: _ClassVar[int]
31
+ MAXSUPPLY_FIELD_NUMBER: _ClassVar[int]
32
+ FEE_SCHEDULE_KEY_FIELD_NUMBER: _ClassVar[int]
33
+ CUSTOM_FEES_FIELD_NUMBER: _ClassVar[int]
34
+ PAUSE_KEY_FIELD_NUMBER: _ClassVar[int]
35
+ METADATA_FIELD_NUMBER: _ClassVar[int]
36
+ METADATA_KEY_FIELD_NUMBER: _ClassVar[int]
37
+ name: str
38
+ symbol: str
39
+ decimals: int
40
+ initialSupply: int
41
+ treasury: _basic_types_pb2.AccountID
42
+ adminKey: _basic_types_pb2.Key
43
+ kycKey: _basic_types_pb2.Key
44
+ freezeKey: _basic_types_pb2.Key
45
+ wipeKey: _basic_types_pb2.Key
46
+ supplyKey: _basic_types_pb2.Key
47
+ freezeDefault: bool
48
+ expiry: _timestamp_pb2.Timestamp
49
+ autoRenewAccount: _basic_types_pb2.AccountID
50
+ autoRenewPeriod: _duration_pb2.Duration
51
+ memo: str
52
+ tokenType: _basic_types_pb2.TokenType
53
+ supplyType: _basic_types_pb2.TokenSupplyType
54
+ maxSupply: int
55
+ fee_schedule_key: _basic_types_pb2.Key
56
+ custom_fees: _containers.RepeatedCompositeFieldContainer[_custom_fees_pb2.CustomFee]
57
+ pause_key: _basic_types_pb2.Key
58
+ metadata: bytes
59
+ metadata_key: _basic_types_pb2.Key
60
+ def __init__(self, name: _Optional[str] = ..., symbol: _Optional[str] = ..., decimals: _Optional[int] = ..., initialSupply: _Optional[int] = ..., treasury: _Optional[_Union[_basic_types_pb2.AccountID, _Mapping]] = ..., adminKey: _Optional[_Union[_basic_types_pb2.Key, _Mapping]] = ..., kycKey: _Optional[_Union[_basic_types_pb2.Key, _Mapping]] = ..., freezeKey: _Optional[_Union[_basic_types_pb2.Key, _Mapping]] = ..., wipeKey: _Optional[_Union[_basic_types_pb2.Key, _Mapping]] = ..., supplyKey: _Optional[_Union[_basic_types_pb2.Key, _Mapping]] = ..., freezeDefault: bool = ..., expiry: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]] = ..., autoRenewAccount: _Optional[_Union[_basic_types_pb2.AccountID, _Mapping]] = ..., autoRenewPeriod: _Optional[_Union[_duration_pb2.Duration, _Mapping]] = ..., memo: _Optional[str] = ..., tokenType: _Optional[_Union[_basic_types_pb2.TokenType, str]] = ..., supplyType: _Optional[_Union[_basic_types_pb2.TokenSupplyType, str]] = ..., maxSupply: _Optional[int] = ..., fee_schedule_key: _Optional[_Union[_basic_types_pb2.Key, _Mapping]] = ..., custom_fees: _Optional[_Iterable[_Union[_custom_fees_pb2.CustomFee, _Mapping]]] = ..., pause_key: _Optional[_Union[_basic_types_pb2.Key, _Mapping]] = ..., metadata: _Optional[bytes] = ..., metadata_key: _Optional[_Union[_basic_types_pb2.Key, _Mapping]] = ...) -> None: ...
@@ -0,0 +1,24 @@
1
+ # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2
+ """Client and server classes corresponding to protobuf-defined services."""
3
+ import grpc
4
+ import warnings
5
+
6
+
7
+ GRPC_GENERATED_VERSION = '1.70.0'
8
+ GRPC_VERSION = grpc.__version__
9
+ _version_not_supported = False
10
+
11
+ try:
12
+ from grpc._utilities import first_version_is_lower
13
+ _version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
14
+ except ImportError:
15
+ _version_not_supported = True
16
+
17
+ if _version_not_supported:
18
+ raise RuntimeError(
19
+ f'The grpc package installed is at version {GRPC_VERSION},'
20
+ + f' but the generated code in token_create_pb2_grpc.py depends on'
21
+ + f' grpcio>={GRPC_GENERATED_VERSION}.'
22
+ + f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
23
+ + f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
24
+ )
@@ -0,0 +1,38 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: token_delete.proto
5
+ # Protobuf Python Version: 5.29.0
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 29,
16
+ 0,
17
+ '',
18
+ 'token_delete.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from . import basic_types_pb2 as basic__types__pb2
26
+
27
+
28
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x12token_delete.proto\x12\x05proto\x1a\x11\x62\x61sic_types.proto\";\n\x1aTokenDeleteTransactionBody\x12\x1d\n\x05token\x18\x01 \x01(\x0b\x32\x0e.proto.TokenIDB&\n\"com.hederahashgraph.api.proto.javaP\x01\x62\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'token_delete_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ _globals['DESCRIPTOR']._loaded_options = None
35
+ _globals['DESCRIPTOR']._serialized_options = b'\n\"com.hederahashgraph.api.proto.javaP\001'
36
+ _globals['_TOKENDELETETRANSACTIONBODY']._serialized_start=48
37
+ _globals['_TOKENDELETETRANSACTIONBODY']._serialized_end=107
38
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,12 @@
1
+ import basic_types_pb2 as _basic_types_pb2
2
+ from google.protobuf import descriptor as _descriptor
3
+ from google.protobuf import message as _message
4
+ from typing import ClassVar as _ClassVar, Mapping as _Mapping, Optional as _Optional, Union as _Union
5
+
6
+ DESCRIPTOR: _descriptor.FileDescriptor
7
+
8
+ class TokenDeleteTransactionBody(_message.Message):
9
+ __slots__ = ("token",)
10
+ TOKEN_FIELD_NUMBER: _ClassVar[int]
11
+ token: _basic_types_pb2.TokenID
12
+ def __init__(self, token: _Optional[_Union[_basic_types_pb2.TokenID, _Mapping]] = ...) -> None: ...
@@ -0,0 +1,24 @@
1
+ # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2
+ """Client and server classes corresponding to protobuf-defined services."""
3
+ import grpc
4
+ import warnings
5
+
6
+
7
+ GRPC_GENERATED_VERSION = '1.70.0'
8
+ GRPC_VERSION = grpc.__version__
9
+ _version_not_supported = False
10
+
11
+ try:
12
+ from grpc._utilities import first_version_is_lower
13
+ _version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
14
+ except ImportError:
15
+ _version_not_supported = True
16
+
17
+ if _version_not_supported:
18
+ raise RuntimeError(
19
+ f'The grpc package installed is at version {GRPC_VERSION},'
20
+ + f' but the generated code in token_delete_pb2_grpc.py depends on'
21
+ + f' grpcio>={GRPC_GENERATED_VERSION}.'
22
+ + f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
23
+ + f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
24
+ )
@@ -0,0 +1,38 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: token_dissociate.proto
5
+ # Protobuf Python Version: 5.29.0
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 29,
16
+ 0,
17
+ '',
18
+ 'token_dissociate.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from . import basic_types_pb2 as basic__types__pb2
26
+
27
+
28
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x16token_dissociate.proto\x12\x05proto\x1a\x11\x62\x61sic_types.proto\"c\n\x1eTokenDissociateTransactionBody\x12!\n\x07\x61\x63\x63ount\x18\x01 \x01(\x0b\x32\x10.proto.AccountID\x12\x1e\n\x06tokens\x18\x02 \x03(\x0b\x32\x0e.proto.TokenIDB&\n\"com.hederahashgraph.api.proto.javaP\x01\x62\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'token_dissociate_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ _globals['DESCRIPTOR']._loaded_options = None
35
+ _globals['DESCRIPTOR']._serialized_options = b'\n\"com.hederahashgraph.api.proto.javaP\001'
36
+ _globals['_TOKENDISSOCIATETRANSACTIONBODY']._serialized_start=52
37
+ _globals['_TOKENDISSOCIATETRANSACTIONBODY']._serialized_end=151
38
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,15 @@
1
+ import basic_types_pb2 as _basic_types_pb2
2
+ from google.protobuf.internal import containers as _containers
3
+ from google.protobuf import descriptor as _descriptor
4
+ from google.protobuf import message as _message
5
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
6
+
7
+ DESCRIPTOR: _descriptor.FileDescriptor
8
+
9
+ class TokenDissociateTransactionBody(_message.Message):
10
+ __slots__ = ("account", "tokens")
11
+ ACCOUNT_FIELD_NUMBER: _ClassVar[int]
12
+ TOKENS_FIELD_NUMBER: _ClassVar[int]
13
+ account: _basic_types_pb2.AccountID
14
+ tokens: _containers.RepeatedCompositeFieldContainer[_basic_types_pb2.TokenID]
15
+ def __init__(self, account: _Optional[_Union[_basic_types_pb2.AccountID, _Mapping]] = ..., tokens: _Optional[_Iterable[_Union[_basic_types_pb2.TokenID, _Mapping]]] = ...) -> None: ...
@@ -0,0 +1,24 @@
1
+ # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2
+ """Client and server classes corresponding to protobuf-defined services."""
3
+ import grpc
4
+ import warnings
5
+
6
+
7
+ GRPC_GENERATED_VERSION = '1.70.0'
8
+ GRPC_VERSION = grpc.__version__
9
+ _version_not_supported = False
10
+
11
+ try:
12
+ from grpc._utilities import first_version_is_lower
13
+ _version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
14
+ except ImportError:
15
+ _version_not_supported = True
16
+
17
+ if _version_not_supported:
18
+ raise RuntimeError(
19
+ f'The grpc package installed is at version {GRPC_VERSION},'
20
+ + f' but the generated code in token_dissociate_pb2_grpc.py depends on'
21
+ + f' grpcio>={GRPC_GENERATED_VERSION}.'
22
+ + f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
23
+ + f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
24
+ )
@@ -0,0 +1,39 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: token_fee_schedule_update.proto
5
+ # Protobuf Python Version: 5.29.0
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 29,
16
+ 0,
17
+ '',
18
+ 'token_fee_schedule_update.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from . import basic_types_pb2 as basic__types__pb2
26
+ from . import custom_fees_pb2 as custom__fees__pb2
27
+
28
+
29
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1ftoken_fee_schedule_update.proto\x12\x05proto\x1a\x11\x62\x61sic_types.proto\x1a\x11\x63ustom_fees.proto\"p\n%TokenFeeScheduleUpdateTransactionBody\x12 \n\x08token_id\x18\x01 \x01(\x0b\x32\x0e.proto.TokenID\x12%\n\x0b\x63ustom_fees\x18\x02 \x03(\x0b\x32\x10.proto.CustomFeeB&\n\"com.hederahashgraph.api.proto.javaP\x01\x62\x06proto3')
30
+
31
+ _globals = globals()
32
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
33
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'token_fee_schedule_update_pb2', _globals)
34
+ if not _descriptor._USE_C_DESCRIPTORS:
35
+ _globals['DESCRIPTOR']._loaded_options = None
36
+ _globals['DESCRIPTOR']._serialized_options = b'\n\"com.hederahashgraph.api.proto.javaP\001'
37
+ _globals['_TOKENFEESCHEDULEUPDATETRANSACTIONBODY']._serialized_start=80
38
+ _globals['_TOKENFEESCHEDULEUPDATETRANSACTIONBODY']._serialized_end=192
39
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,16 @@
1
+ import basic_types_pb2 as _basic_types_pb2
2
+ import custom_fees_pb2 as _custom_fees_pb2
3
+ from google.protobuf.internal import containers as _containers
4
+ from google.protobuf import descriptor as _descriptor
5
+ from google.protobuf import message as _message
6
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
7
+
8
+ DESCRIPTOR: _descriptor.FileDescriptor
9
+
10
+ class TokenFeeScheduleUpdateTransactionBody(_message.Message):
11
+ __slots__ = ("token_id", "custom_fees")
12
+ TOKEN_ID_FIELD_NUMBER: _ClassVar[int]
13
+ CUSTOM_FEES_FIELD_NUMBER: _ClassVar[int]
14
+ token_id: _basic_types_pb2.TokenID
15
+ custom_fees: _containers.RepeatedCompositeFieldContainer[_custom_fees_pb2.CustomFee]
16
+ def __init__(self, token_id: _Optional[_Union[_basic_types_pb2.TokenID, _Mapping]] = ..., custom_fees: _Optional[_Iterable[_Union[_custom_fees_pb2.CustomFee, _Mapping]]] = ...) -> None: ...
@@ -0,0 +1,24 @@
1
+ # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2
+ """Client and server classes corresponding to protobuf-defined services."""
3
+ import grpc
4
+ import warnings
5
+
6
+
7
+ GRPC_GENERATED_VERSION = '1.70.0'
8
+ GRPC_VERSION = grpc.__version__
9
+ _version_not_supported = False
10
+
11
+ try:
12
+ from grpc._utilities import first_version_is_lower
13
+ _version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
14
+ except ImportError:
15
+ _version_not_supported = True
16
+
17
+ if _version_not_supported:
18
+ raise RuntimeError(
19
+ f'The grpc package installed is at version {GRPC_VERSION},'
20
+ + f' but the generated code in token_fee_schedule_update_pb2_grpc.py depends on'
21
+ + f' grpcio>={GRPC_GENERATED_VERSION}.'
22
+ + f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
23
+ + f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
24
+ )
@@ -0,0 +1,38 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: token_freeze_account.proto
5
+ # Protobuf Python Version: 5.29.0
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 29,
16
+ 0,
17
+ '',
18
+ 'token_freeze_account.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from . import basic_types_pb2 as basic__types__pb2
26
+
27
+
28
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1atoken_freeze_account.proto\x12\x05proto\x1a\x11\x62\x61sic_types.proto\"e\n!TokenFreezeAccountTransactionBody\x12\x1d\n\x05token\x18\x01 \x01(\x0b\x32\x0e.proto.TokenID\x12!\n\x07\x61\x63\x63ount\x18\x02 \x01(\x0b\x32\x10.proto.AccountIDB&\n\"com.hederahashgraph.api.proto.javaP\x01\x62\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'token_freeze_account_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ _globals['DESCRIPTOR']._loaded_options = None
35
+ _globals['DESCRIPTOR']._serialized_options = b'\n\"com.hederahashgraph.api.proto.javaP\001'
36
+ _globals['_TOKENFREEZEACCOUNTTRANSACTIONBODY']._serialized_start=56
37
+ _globals['_TOKENFREEZEACCOUNTTRANSACTIONBODY']._serialized_end=157
38
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,14 @@
1
+ import basic_types_pb2 as _basic_types_pb2
2
+ from google.protobuf import descriptor as _descriptor
3
+ from google.protobuf import message as _message
4
+ from typing import ClassVar as _ClassVar, Mapping as _Mapping, Optional as _Optional, Union as _Union
5
+
6
+ DESCRIPTOR: _descriptor.FileDescriptor
7
+
8
+ class TokenFreezeAccountTransactionBody(_message.Message):
9
+ __slots__ = ("token", "account")
10
+ TOKEN_FIELD_NUMBER: _ClassVar[int]
11
+ ACCOUNT_FIELD_NUMBER: _ClassVar[int]
12
+ token: _basic_types_pb2.TokenID
13
+ account: _basic_types_pb2.AccountID
14
+ def __init__(self, token: _Optional[_Union[_basic_types_pb2.TokenID, _Mapping]] = ..., account: _Optional[_Union[_basic_types_pb2.AccountID, _Mapping]] = ...) -> None: ...
@@ -0,0 +1,24 @@
1
+ # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2
+ """Client and server classes corresponding to protobuf-defined services."""
3
+ import grpc
4
+ import warnings
5
+
6
+
7
+ GRPC_GENERATED_VERSION = '1.70.0'
8
+ GRPC_VERSION = grpc.__version__
9
+ _version_not_supported = False
10
+
11
+ try:
12
+ from grpc._utilities import first_version_is_lower
13
+ _version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
14
+ except ImportError:
15
+ _version_not_supported = True
16
+
17
+ if _version_not_supported:
18
+ raise RuntimeError(
19
+ f'The grpc package installed is at version {GRPC_VERSION},'
20
+ + f' but the generated code in token_freeze_account_pb2_grpc.py depends on'
21
+ + f' grpcio>={GRPC_GENERATED_VERSION}.'
22
+ + f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
23
+ + f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
24
+ )
@@ -0,0 +1,43 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: token_get_account_nft_infos.proto
5
+ # Protobuf Python Version: 5.29.0
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 29,
16
+ 0,
17
+ '',
18
+ 'token_get_account_nft_infos.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from . import basic_types_pb2 as basic__types__pb2
26
+ from . import token_get_nft_info_pb2 as token__get__nft__info__pb2
27
+ from . import query_header_pb2 as query__header__pb2
28
+ from . import response_header_pb2 as response__header__pb2
29
+
30
+
31
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n!token_get_account_nft_infos.proto\x12\x05proto\x1a\x11\x62\x61sic_types.proto\x1a\x18token_get_nft_info.proto\x1a\x12query_header.proto\x1a\x15response_header.proto\"\x83\x01\n\x1cTokenGetAccountNftInfosQuery\x12\"\n\x06header\x18\x01 \x01(\x0b\x32\x12.proto.QueryHeader\x12#\n\taccountID\x18\x02 \x01(\x0b\x32\x10.proto.AccountID\x12\r\n\x05start\x18\x03 \x01(\x03\x12\x0b\n\x03\x65nd\x18\x04 \x01(\x03\"k\n\x1fTokenGetAccountNftInfosResponse\x12%\n\x06header\x18\x01 \x01(\x0b\x32\x15.proto.ResponseHeader\x12!\n\x04nfts\x18\x02 \x03(\x0b\x32\x13.proto.TokenNftInfoB&\n\"com.hederahashgraph.api.proto.javaP\x01\x62\x06proto3')
32
+
33
+ _globals = globals()
34
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
35
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'token_get_account_nft_infos_pb2', _globals)
36
+ if not _descriptor._USE_C_DESCRIPTORS:
37
+ _globals['DESCRIPTOR']._loaded_options = None
38
+ _globals['DESCRIPTOR']._serialized_options = b'\n\"com.hederahashgraph.api.proto.javaP\001'
39
+ _globals['_TOKENGETACCOUNTNFTINFOSQUERY']._serialized_start=133
40
+ _globals['_TOKENGETACCOUNTNFTINFOSQUERY']._serialized_end=264
41
+ _globals['_TOKENGETACCOUNTNFTINFOSRESPONSE']._serialized_start=266
42
+ _globals['_TOKENGETACCOUNTNFTINFOSRESPONSE']._serialized_end=373
43
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,30 @@
1
+ import basic_types_pb2 as _basic_types_pb2
2
+ import token_get_nft_info_pb2 as _token_get_nft_info_pb2
3
+ import query_header_pb2 as _query_header_pb2
4
+ import response_header_pb2 as _response_header_pb2
5
+ from google.protobuf.internal import containers as _containers
6
+ from google.protobuf import descriptor as _descriptor
7
+ from google.protobuf import message as _message
8
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
9
+
10
+ DESCRIPTOR: _descriptor.FileDescriptor
11
+
12
+ class TokenGetAccountNftInfosQuery(_message.Message):
13
+ __slots__ = ("header", "accountID", "start", "end")
14
+ HEADER_FIELD_NUMBER: _ClassVar[int]
15
+ ACCOUNTID_FIELD_NUMBER: _ClassVar[int]
16
+ START_FIELD_NUMBER: _ClassVar[int]
17
+ END_FIELD_NUMBER: _ClassVar[int]
18
+ header: _query_header_pb2.QueryHeader
19
+ accountID: _basic_types_pb2.AccountID
20
+ start: int
21
+ end: int
22
+ def __init__(self, header: _Optional[_Union[_query_header_pb2.QueryHeader, _Mapping]] = ..., accountID: _Optional[_Union[_basic_types_pb2.AccountID, _Mapping]] = ..., start: _Optional[int] = ..., end: _Optional[int] = ...) -> None: ...
23
+
24
+ class TokenGetAccountNftInfosResponse(_message.Message):
25
+ __slots__ = ("header", "nfts")
26
+ HEADER_FIELD_NUMBER: _ClassVar[int]
27
+ NFTS_FIELD_NUMBER: _ClassVar[int]
28
+ header: _response_header_pb2.ResponseHeader
29
+ nfts: _containers.RepeatedCompositeFieldContainer[_token_get_nft_info_pb2.TokenNftInfo]
30
+ def __init__(self, header: _Optional[_Union[_response_header_pb2.ResponseHeader, _Mapping]] = ..., nfts: _Optional[_Iterable[_Union[_token_get_nft_info_pb2.TokenNftInfo, _Mapping]]] = ...) -> None: ...
@@ -0,0 +1,24 @@
1
+ # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
2
+ """Client and server classes corresponding to protobuf-defined services."""
3
+ import grpc
4
+ import warnings
5
+
6
+
7
+ GRPC_GENERATED_VERSION = '1.70.0'
8
+ GRPC_VERSION = grpc.__version__
9
+ _version_not_supported = False
10
+
11
+ try:
12
+ from grpc._utilities import first_version_is_lower
13
+ _version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
14
+ except ImportError:
15
+ _version_not_supported = True
16
+
17
+ if _version_not_supported:
18
+ raise RuntimeError(
19
+ f'The grpc package installed is at version {GRPC_VERSION},'
20
+ + f' but the generated code in token_get_account_nft_infos_pb2_grpc.py depends on'
21
+ + f' grpcio>={GRPC_GENERATED_VERSION}.'
22
+ + f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
23
+ + f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
24
+ )
@@ -0,0 +1,47 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: token_get_info.proto
5
+ # Protobuf Python Version: 5.29.0
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 29,
16
+ 0,
17
+ '',
18
+ 'token_get_info.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from . import basic_types_pb2 as basic__types__pb2
26
+ from . import custom_fees_pb2 as custom__fees__pb2
27
+ from . import query_header_pb2 as query__header__pb2
28
+ from . import response_header_pb2 as response__header__pb2
29
+ from . import timestamp_pb2 as timestamp__pb2
30
+ from . import duration_pb2 as duration__pb2
31
+
32
+
33
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x14token_get_info.proto\x12\x05proto\x1a\x11\x62\x61sic_types.proto\x1a\x11\x63ustom_fees.proto\x1a\x12query_header.proto\x1a\x15response_header.proto\x1a\x0ftimestamp.proto\x1a\x0e\x64uration.proto\"V\n\x11TokenGetInfoQuery\x12\"\n\x06header\x18\x01 \x01(\x0b\x32\x12.proto.QueryHeader\x12\x1d\n\x05token\x18\x02 \x01(\x0b\x32\x0e.proto.TokenID\"\xef\x06\n\tTokenInfo\x12\x1f\n\x07tokenId\x18\x01 \x01(\x0b\x32\x0e.proto.TokenID\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0e\n\x06symbol\x18\x03 \x01(\t\x12\x10\n\x08\x64\x65\x63imals\x18\x04 \x01(\r\x12\x13\n\x0btotalSupply\x18\x05 \x01(\x04\x12\"\n\x08treasury\x18\x06 \x01(\x0b\x32\x10.proto.AccountID\x12\x1c\n\x08\x61\x64minKey\x18\x07 \x01(\x0b\x32\n.proto.Key\x12\x1a\n\x06kycKey\x18\x08 \x01(\x0b\x32\n.proto.Key\x12\x1d\n\tfreezeKey\x18\t \x01(\x0b\x32\n.proto.Key\x12\x1b\n\x07wipeKey\x18\n \x01(\x0b\x32\n.proto.Key\x12\x1d\n\tsupplyKey\x18\x0b \x01(\x0b\x32\n.proto.Key\x12\x35\n\x13\x64\x65\x66\x61ultFreezeStatus\x18\x0c \x01(\x0e\x32\x18.proto.TokenFreezeStatus\x12/\n\x10\x64\x65\x66\x61ultKycStatus\x18\r \x01(\x0e\x32\x15.proto.TokenKycStatus\x12\x0f\n\x07\x64\x65leted\x18\x0e \x01(\x08\x12*\n\x10\x61utoRenewAccount\x18\x0f \x01(\x0b\x32\x10.proto.AccountID\x12(\n\x0f\x61utoRenewPeriod\x18\x10 \x01(\x0b\x32\x0f.proto.Duration\x12 \n\x06\x65xpiry\x18\x11 \x01(\x0b\x32\x10.proto.Timestamp\x12\x0c\n\x04memo\x18\x12 \x01(\t\x12#\n\ttokenType\x18\x13 \x01(\x0e\x32\x10.proto.TokenType\x12*\n\nsupplyType\x18\x14 \x01(\x0e\x32\x16.proto.TokenSupplyType\x12\x11\n\tmaxSupply\x18\x15 \x01(\x03\x12$\n\x10\x66\x65\x65_schedule_key\x18\x16 \x01(\x0b\x32\n.proto.Key\x12%\n\x0b\x63ustom_fees\x18\x17 \x03(\x0b\x32\x10.proto.CustomFee\x12\x1d\n\tpause_key\x18\x18 \x01(\x0b\x32\n.proto.Key\x12-\n\x0cpause_status\x18\x19 \x01(\x0e\x32\x17.proto.TokenPauseStatus\x12\x11\n\tledger_id\x18\x1a \x01(\x0c\x12\x10\n\x08metadata\x18\x1b \x01(\x0c\x12 \n\x0cmetadata_key\x18\x1c \x01(\x0b\x32\n.proto.Key\"b\n\x14TokenGetInfoResponse\x12%\n\x06header\x18\x01 \x01(\x0b\x32\x15.proto.ResponseHeader\x12#\n\ttokenInfo\x18\x02 \x01(\x0b\x32\x10.proto.TokenInfoB&\n\"com.hederahashgraph.api.proto.javaP\x01\x62\x06proto3')
34
+
35
+ _globals = globals()
36
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
37
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'token_get_info_pb2', _globals)
38
+ if not _descriptor._USE_C_DESCRIPTORS:
39
+ _globals['DESCRIPTOR']._loaded_options = None
40
+ _globals['DESCRIPTOR']._serialized_options = b'\n\"com.hederahashgraph.api.proto.javaP\001'
41
+ _globals['_TOKENGETINFOQUERY']._serialized_start=145
42
+ _globals['_TOKENGETINFOQUERY']._serialized_end=231
43
+ _globals['_TOKENINFO']._serialized_start=234
44
+ _globals['_TOKENINFO']._serialized_end=1113
45
+ _globals['_TOKENGETINFORESPONSE']._serialized_start=1115
46
+ _globals['_TOKENGETINFORESPONSE']._serialized_end=1213
47
+ # @@protoc_insertion_point(module_scope)