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,47 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: transaction.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
+ 'transaction.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 transaction_body_pb2 as transaction__body__pb2
27
+
28
+
29
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x11transaction.proto\x12\x05proto\x1a\x11\x62\x61sic_types.proto\x1a\x16transaction_body.proto\"\xbf\x01\n\x0bTransaction\x12(\n\x04\x62ody\x18\x01 \x01(\x0b\x32\x16.proto.TransactionBodyB\x02\x18\x01\x12&\n\x04sigs\x18\x02 \x01(\x0b\x32\x14.proto.SignatureListB\x02\x18\x01\x12\'\n\x06sigMap\x18\x03 \x01(\x0b\x32\x13.proto.SignatureMapB\x02\x18\x01\x12\x15\n\tbodyBytes\x18\x04 \x01(\x0c\x42\x02\x18\x01\x12\x1e\n\x16signedTransactionBytes\x18\x05 \x01(\x0c\x42&\n\"com.hederahashgraph.api.proto.javaP\x01\x62\x06proto3')
30
+
31
+ _globals = globals()
32
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
33
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'transaction_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['_TRANSACTION'].fields_by_name['body']._loaded_options = None
38
+ _globals['_TRANSACTION'].fields_by_name['body']._serialized_options = b'\030\001'
39
+ _globals['_TRANSACTION'].fields_by_name['sigs']._loaded_options = None
40
+ _globals['_TRANSACTION'].fields_by_name['sigs']._serialized_options = b'\030\001'
41
+ _globals['_TRANSACTION'].fields_by_name['sigMap']._loaded_options = None
42
+ _globals['_TRANSACTION'].fields_by_name['sigMap']._serialized_options = b'\030\001'
43
+ _globals['_TRANSACTION'].fields_by_name['bodyBytes']._loaded_options = None
44
+ _globals['_TRANSACTION'].fields_by_name['bodyBytes']._serialized_options = b'\030\001'
45
+ _globals['_TRANSACTION']._serialized_start=72
46
+ _globals['_TRANSACTION']._serialized_end=263
47
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,21 @@
1
+ import basic_types_pb2 as _basic_types_pb2
2
+ import transaction_body_pb2 as _transaction_body_pb2
3
+ from google.protobuf import descriptor as _descriptor
4
+ from google.protobuf import message as _message
5
+ from typing import ClassVar as _ClassVar, Mapping as _Mapping, Optional as _Optional, Union as _Union
6
+
7
+ DESCRIPTOR: _descriptor.FileDescriptor
8
+
9
+ class Transaction(_message.Message):
10
+ __slots__ = ("body", "sigs", "sigMap", "bodyBytes", "signedTransactionBytes")
11
+ BODY_FIELD_NUMBER: _ClassVar[int]
12
+ SIGS_FIELD_NUMBER: _ClassVar[int]
13
+ SIGMAP_FIELD_NUMBER: _ClassVar[int]
14
+ BODYBYTES_FIELD_NUMBER: _ClassVar[int]
15
+ SIGNEDTRANSACTIONBYTES_FIELD_NUMBER: _ClassVar[int]
16
+ body: _transaction_body_pb2.TransactionBody
17
+ sigs: _basic_types_pb2.SignatureList
18
+ sigMap: _basic_types_pb2.SignatureMap
19
+ bodyBytes: bytes
20
+ signedTransactionBytes: bytes
21
+ def __init__(self, body: _Optional[_Union[_transaction_body_pb2.TransactionBody, _Mapping]] = ..., sigs: _Optional[_Union[_basic_types_pb2.SignatureList, _Mapping]] = ..., sigMap: _Optional[_Union[_basic_types_pb2.SignatureMap, _Mapping]] = ..., bodyBytes: _Optional[bytes] = ..., signedTransactionBytes: _Optional[bytes] = ...) -> 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 transaction_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,40 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: transaction_receipt.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
+ 'transaction_receipt.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 response_code_pb2 as response__code__pb2
27
+ from . import exchange_rate_pb2 as exchange__rate__pb2
28
+
29
+
30
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x19transaction_receipt.proto\x12\x05proto\x1a\x11\x62\x61sic_types.proto\x1a\x13response_code.proto\x1a\x13\x65xchange_rate.proto\"\x8d\x04\n\x12TransactionReceipt\x12\'\n\x06status\x18\x01 \x01(\x0e\x32\x17.proto.ResponseCodeEnum\x12#\n\taccountID\x18\x02 \x01(\x0b\x32\x10.proto.AccountID\x12\x1d\n\x06\x66ileID\x18\x03 \x01(\x0b\x32\r.proto.FileID\x12%\n\ncontractID\x18\x04 \x01(\x0b\x32\x11.proto.ContractID\x12,\n\x0c\x65xchangeRate\x18\x05 \x01(\x0b\x32\x16.proto.ExchangeRateSet\x12\x1f\n\x07topicID\x18\x06 \x01(\x0b\x32\x0e.proto.TopicID\x12\x1b\n\x13topicSequenceNumber\x18\x07 \x01(\x04\x12\x18\n\x10topicRunningHash\x18\x08 \x01(\x0c\x12\x1f\n\x17topicRunningHashVersion\x18\t \x01(\x04\x12\x1f\n\x07tokenID\x18\n \x01(\x0b\x32\x0e.proto.TokenID\x12\x16\n\x0enewTotalSupply\x18\x0b \x01(\x04\x12%\n\nscheduleID\x18\x0c \x01(\x0b\x32\x11.proto.ScheduleID\x12\x34\n\x16scheduledTransactionID\x18\r \x01(\x0b\x32\x14.proto.TransactionID\x12\x15\n\rserialNumbers\x18\x0e \x03(\x03\x12\x0f\n\x07node_id\x18\x0f \x01(\x04\x42&\n\"com.hederahashgraph.api.proto.javaP\x01\x62\x06proto3')
31
+
32
+ _globals = globals()
33
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
34
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'transaction_receipt_pb2', _globals)
35
+ if not _descriptor._USE_C_DESCRIPTORS:
36
+ _globals['DESCRIPTOR']._loaded_options = None
37
+ _globals['DESCRIPTOR']._serialized_options = b'\n\"com.hederahashgraph.api.proto.javaP\001'
38
+ _globals['_TRANSACTIONRECEIPT']._serialized_start=98
39
+ _globals['_TRANSACTIONRECEIPT']._serialized_end=623
40
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,43 @@
1
+ import basic_types_pb2 as _basic_types_pb2
2
+ import response_code_pb2 as _response_code_pb2
3
+ import exchange_rate_pb2 as _exchange_rate_pb2
4
+ from google.protobuf.internal import containers as _containers
5
+ from google.protobuf import descriptor as _descriptor
6
+ from google.protobuf import message as _message
7
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
8
+
9
+ DESCRIPTOR: _descriptor.FileDescriptor
10
+
11
+ class TransactionReceipt(_message.Message):
12
+ __slots__ = ("status", "accountID", "fileID", "contractID", "exchangeRate", "topicID", "topicSequenceNumber", "topicRunningHash", "topicRunningHashVersion", "tokenID", "newTotalSupply", "scheduleID", "scheduledTransactionID", "serialNumbers", "node_id")
13
+ STATUS_FIELD_NUMBER: _ClassVar[int]
14
+ ACCOUNTID_FIELD_NUMBER: _ClassVar[int]
15
+ FILEID_FIELD_NUMBER: _ClassVar[int]
16
+ CONTRACTID_FIELD_NUMBER: _ClassVar[int]
17
+ EXCHANGERATE_FIELD_NUMBER: _ClassVar[int]
18
+ TOPICID_FIELD_NUMBER: _ClassVar[int]
19
+ TOPICSEQUENCENUMBER_FIELD_NUMBER: _ClassVar[int]
20
+ TOPICRUNNINGHASH_FIELD_NUMBER: _ClassVar[int]
21
+ TOPICRUNNINGHASHVERSION_FIELD_NUMBER: _ClassVar[int]
22
+ TOKENID_FIELD_NUMBER: _ClassVar[int]
23
+ NEWTOTALSUPPLY_FIELD_NUMBER: _ClassVar[int]
24
+ SCHEDULEID_FIELD_NUMBER: _ClassVar[int]
25
+ SCHEDULEDTRANSACTIONID_FIELD_NUMBER: _ClassVar[int]
26
+ SERIALNUMBERS_FIELD_NUMBER: _ClassVar[int]
27
+ NODE_ID_FIELD_NUMBER: _ClassVar[int]
28
+ status: _response_code_pb2.ResponseCodeEnum
29
+ accountID: _basic_types_pb2.AccountID
30
+ fileID: _basic_types_pb2.FileID
31
+ contractID: _basic_types_pb2.ContractID
32
+ exchangeRate: _exchange_rate_pb2.ExchangeRateSet
33
+ topicID: _basic_types_pb2.TopicID
34
+ topicSequenceNumber: int
35
+ topicRunningHash: bytes
36
+ topicRunningHashVersion: int
37
+ tokenID: _basic_types_pb2.TokenID
38
+ newTotalSupply: int
39
+ scheduleID: _basic_types_pb2.ScheduleID
40
+ scheduledTransactionID: _basic_types_pb2.TransactionID
41
+ serialNumbers: _containers.RepeatedScalarFieldContainer[int]
42
+ node_id: int
43
+ def __init__(self, status: _Optional[_Union[_response_code_pb2.ResponseCodeEnum, str]] = ..., accountID: _Optional[_Union[_basic_types_pb2.AccountID, _Mapping]] = ..., fileID: _Optional[_Union[_basic_types_pb2.FileID, _Mapping]] = ..., contractID: _Optional[_Union[_basic_types_pb2.ContractID, _Mapping]] = ..., exchangeRate: _Optional[_Union[_exchange_rate_pb2.ExchangeRateSet, _Mapping]] = ..., topicID: _Optional[_Union[_basic_types_pb2.TopicID, _Mapping]] = ..., topicSequenceNumber: _Optional[int] = ..., topicRunningHash: _Optional[bytes] = ..., topicRunningHashVersion: _Optional[int] = ..., tokenID: _Optional[_Union[_basic_types_pb2.TokenID, _Mapping]] = ..., newTotalSupply: _Optional[int] = ..., scheduleID: _Optional[_Union[_basic_types_pb2.ScheduleID, _Mapping]] = ..., scheduledTransactionID: _Optional[_Union[_basic_types_pb2.TransactionID, _Mapping]] = ..., serialNumbers: _Optional[_Iterable[int]] = ..., node_id: _Optional[int] = ...) -> 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 transaction_receipt_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,45 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: transaction_record.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
+ 'transaction_record.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from . import timestamp_pb2 as timestamp__pb2
26
+ from . import basic_types_pb2 as basic__types__pb2
27
+ from . import custom_fees_pb2 as custom__fees__pb2
28
+ from . import transaction_receipt_pb2 as transaction__receipt__pb2
29
+ from . import crypto_transfer_pb2 as crypto__transfer__pb2
30
+ from . import contract_call_local_pb2 as contract__call__local__pb2
31
+
32
+
33
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x18transaction_record.proto\x12\x05proto\x1a\x0ftimestamp.proto\x1a\x11\x62\x61sic_types.proto\x1a\x11\x63ustom_fees.proto\x1a\x19transaction_receipt.proto\x1a\x15\x63rypto_transfer.proto\x1a\x19\x63ontract_call_local.proto\"\xf5\x06\n\x11TransactionRecord\x12*\n\x07receipt\x18\x01 \x01(\x0b\x32\x19.proto.TransactionReceipt\x12\x17\n\x0ftransactionHash\x18\x02 \x01(\x0c\x12,\n\x12\x63onsensusTimestamp\x18\x03 \x01(\x0b\x32\x10.proto.Timestamp\x12+\n\rtransactionID\x18\x04 \x01(\x0b\x32\x14.proto.TransactionID\x12\x0c\n\x04memo\x18\x05 \x01(\t\x12\x16\n\x0etransactionFee\x18\x06 \x01(\x04\x12;\n\x12\x63ontractCallResult\x18\x07 \x01(\x0b\x32\x1d.proto.ContractFunctionResultH\x00\x12=\n\x14\x63ontractCreateResult\x18\x08 \x01(\x0b\x32\x1d.proto.ContractFunctionResultH\x00\x12)\n\x0ctransferList\x18\n \x01(\x0b\x32\x13.proto.TransferList\x12\x34\n\x12tokenTransferLists\x18\x0b \x03(\x0b\x32\x18.proto.TokenTransferList\x12&\n\x0bscheduleRef\x18\x0c \x01(\x0b\x32\x11.proto.ScheduleID\x12\x36\n\x14\x61ssessed_custom_fees\x18\r \x03(\x0b\x32\x18.proto.AssessedCustomFee\x12=\n\x1c\x61utomatic_token_associations\x18\x0e \x03(\x0b\x32\x17.proto.TokenAssociation\x12\x34\n\x1aparent_consensus_timestamp\x18\x0f \x01(\x0b\x32\x10.proto.Timestamp\x12\r\n\x05\x61lias\x18\x10 \x01(\x0c\x12\x15\n\rethereum_hash\x18\x11 \x01(\x0c\x12\x32\n\x14paid_staking_rewards\x18\x12 \x03(\x0b\x32\x14.proto.AccountAmount\x12\x14\n\nprng_bytes\x18\x13 \x01(\x0cH\x01\x12\x15\n\x0bprng_number\x18\x14 \x01(\x05H\x01\x12\x13\n\x0b\x65vm_address\x18\x15 \x01(\x0c\x12\x39\n\x14new_pending_airdrops\x18\x16 \x03(\x0b\x32\x1b.proto.PendingAirdropRecordB\x06\n\x04\x62odyB\t\n\x07\x65ntropy\"\x86\x01\n\x14PendingAirdropRecord\x12\x33\n\x12pending_airdrop_id\x18\x01 \x01(\x0b\x32\x17.proto.PendingAirdropId\x12\x39\n\x15pending_airdrop_value\x18\x02 \x01(\x0b\x32\x1a.proto.PendingAirdropValueB&\n\"com.hederahashgraph.api.proto.javaP\x01\x62\x06proto3')
34
+
35
+ _globals = globals()
36
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
37
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'transaction_record_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['_TRANSACTIONRECORD']._serialized_start=168
42
+ _globals['_TRANSACTIONRECORD']._serialized_end=1053
43
+ _globals['_PENDINGAIRDROPRECORD']._serialized_start=1056
44
+ _globals['_PENDINGAIRDROPRECORD']._serialized_end=1190
45
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,66 @@
1
+ import timestamp_pb2 as _timestamp_pb2
2
+ import basic_types_pb2 as _basic_types_pb2
3
+ import custom_fees_pb2 as _custom_fees_pb2
4
+ import transaction_receipt_pb2 as _transaction_receipt_pb2
5
+ import crypto_transfer_pb2 as _crypto_transfer_pb2
6
+ import contract_call_local_pb2 as _contract_call_local_pb2
7
+ from google.protobuf.internal import containers as _containers
8
+ from google.protobuf import descriptor as _descriptor
9
+ from google.protobuf import message as _message
10
+ from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
11
+
12
+ DESCRIPTOR: _descriptor.FileDescriptor
13
+
14
+ class TransactionRecord(_message.Message):
15
+ __slots__ = ("receipt", "transactionHash", "consensusTimestamp", "transactionID", "memo", "transactionFee", "contractCallResult", "contractCreateResult", "transferList", "tokenTransferLists", "scheduleRef", "assessed_custom_fees", "automatic_token_associations", "parent_consensus_timestamp", "alias", "ethereum_hash", "paid_staking_rewards", "prng_bytes", "prng_number", "evm_address", "new_pending_airdrops")
16
+ RECEIPT_FIELD_NUMBER: _ClassVar[int]
17
+ TRANSACTIONHASH_FIELD_NUMBER: _ClassVar[int]
18
+ CONSENSUSTIMESTAMP_FIELD_NUMBER: _ClassVar[int]
19
+ TRANSACTIONID_FIELD_NUMBER: _ClassVar[int]
20
+ MEMO_FIELD_NUMBER: _ClassVar[int]
21
+ TRANSACTIONFEE_FIELD_NUMBER: _ClassVar[int]
22
+ CONTRACTCALLRESULT_FIELD_NUMBER: _ClassVar[int]
23
+ CONTRACTCREATERESULT_FIELD_NUMBER: _ClassVar[int]
24
+ TRANSFERLIST_FIELD_NUMBER: _ClassVar[int]
25
+ TOKENTRANSFERLISTS_FIELD_NUMBER: _ClassVar[int]
26
+ SCHEDULEREF_FIELD_NUMBER: _ClassVar[int]
27
+ ASSESSED_CUSTOM_FEES_FIELD_NUMBER: _ClassVar[int]
28
+ AUTOMATIC_TOKEN_ASSOCIATIONS_FIELD_NUMBER: _ClassVar[int]
29
+ PARENT_CONSENSUS_TIMESTAMP_FIELD_NUMBER: _ClassVar[int]
30
+ ALIAS_FIELD_NUMBER: _ClassVar[int]
31
+ ETHEREUM_HASH_FIELD_NUMBER: _ClassVar[int]
32
+ PAID_STAKING_REWARDS_FIELD_NUMBER: _ClassVar[int]
33
+ PRNG_BYTES_FIELD_NUMBER: _ClassVar[int]
34
+ PRNG_NUMBER_FIELD_NUMBER: _ClassVar[int]
35
+ EVM_ADDRESS_FIELD_NUMBER: _ClassVar[int]
36
+ NEW_PENDING_AIRDROPS_FIELD_NUMBER: _ClassVar[int]
37
+ receipt: _transaction_receipt_pb2.TransactionReceipt
38
+ transactionHash: bytes
39
+ consensusTimestamp: _timestamp_pb2.Timestamp
40
+ transactionID: _basic_types_pb2.TransactionID
41
+ memo: str
42
+ transactionFee: int
43
+ contractCallResult: _contract_call_local_pb2.ContractFunctionResult
44
+ contractCreateResult: _contract_call_local_pb2.ContractFunctionResult
45
+ transferList: _basic_types_pb2.TransferList
46
+ tokenTransferLists: _containers.RepeatedCompositeFieldContainer[_basic_types_pb2.TokenTransferList]
47
+ scheduleRef: _basic_types_pb2.ScheduleID
48
+ assessed_custom_fees: _containers.RepeatedCompositeFieldContainer[_custom_fees_pb2.AssessedCustomFee]
49
+ automatic_token_associations: _containers.RepeatedCompositeFieldContainer[_basic_types_pb2.TokenAssociation]
50
+ parent_consensus_timestamp: _timestamp_pb2.Timestamp
51
+ alias: bytes
52
+ ethereum_hash: bytes
53
+ paid_staking_rewards: _containers.RepeatedCompositeFieldContainer[_basic_types_pb2.AccountAmount]
54
+ prng_bytes: bytes
55
+ prng_number: int
56
+ evm_address: bytes
57
+ new_pending_airdrops: _containers.RepeatedCompositeFieldContainer[PendingAirdropRecord]
58
+ def __init__(self, receipt: _Optional[_Union[_transaction_receipt_pb2.TransactionReceipt, _Mapping]] = ..., transactionHash: _Optional[bytes] = ..., consensusTimestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]] = ..., transactionID: _Optional[_Union[_basic_types_pb2.TransactionID, _Mapping]] = ..., memo: _Optional[str] = ..., transactionFee: _Optional[int] = ..., contractCallResult: _Optional[_Union[_contract_call_local_pb2.ContractFunctionResult, _Mapping]] = ..., contractCreateResult: _Optional[_Union[_contract_call_local_pb2.ContractFunctionResult, _Mapping]] = ..., transferList: _Optional[_Union[_basic_types_pb2.TransferList, _Mapping]] = ..., tokenTransferLists: _Optional[_Iterable[_Union[_basic_types_pb2.TokenTransferList, _Mapping]]] = ..., scheduleRef: _Optional[_Union[_basic_types_pb2.ScheduleID, _Mapping]] = ..., assessed_custom_fees: _Optional[_Iterable[_Union[_custom_fees_pb2.AssessedCustomFee, _Mapping]]] = ..., automatic_token_associations: _Optional[_Iterable[_Union[_basic_types_pb2.TokenAssociation, _Mapping]]] = ..., parent_consensus_timestamp: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]] = ..., alias: _Optional[bytes] = ..., ethereum_hash: _Optional[bytes] = ..., paid_staking_rewards: _Optional[_Iterable[_Union[_basic_types_pb2.AccountAmount, _Mapping]]] = ..., prng_bytes: _Optional[bytes] = ..., prng_number: _Optional[int] = ..., evm_address: _Optional[bytes] = ..., new_pending_airdrops: _Optional[_Iterable[_Union[PendingAirdropRecord, _Mapping]]] = ...) -> None: ...
59
+
60
+ class PendingAirdropRecord(_message.Message):
61
+ __slots__ = ("pending_airdrop_id", "pending_airdrop_value")
62
+ PENDING_AIRDROP_ID_FIELD_NUMBER: _ClassVar[int]
63
+ PENDING_AIRDROP_VALUE_FIELD_NUMBER: _ClassVar[int]
64
+ pending_airdrop_id: _basic_types_pb2.PendingAirdropId
65
+ pending_airdrop_value: _basic_types_pb2.PendingAirdropValue
66
+ def __init__(self, pending_airdrop_id: _Optional[_Union[_basic_types_pb2.PendingAirdropId, _Mapping]] = ..., pending_airdrop_value: _Optional[_Union[_basic_types_pb2.PendingAirdropValue, _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 transaction_record_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: transaction_response.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
+ 'transaction_response.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from . import response_code_pb2 as response__code__pb2
26
+
27
+
28
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1atransaction_response.proto\x12\x05proto\x1a\x13response_code.proto\"a\n\x13TransactionResponse\x12<\n\x1bnodeTransactionPrecheckCode\x18\x01 \x01(\x0e\x32\x17.proto.ResponseCodeEnum\x12\x0c\n\x04\x63ost\x18\x02 \x01(\x04\x42&\n\"com.hederahashgraph.api.proto.javaP\x01\x62\x06proto3')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'transaction_response_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['_TRANSACTIONRESPONSE']._serialized_start=58
37
+ _globals['_TRANSACTIONRESPONSE']._serialized_end=155
38
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,14 @@
1
+ import response_code_pb2 as _response_code_pb2
2
+ from google.protobuf import descriptor as _descriptor
3
+ from google.protobuf import message as _message
4
+ from typing import ClassVar as _ClassVar, Optional as _Optional, Union as _Union
5
+
6
+ DESCRIPTOR: _descriptor.FileDescriptor
7
+
8
+ class TransactionResponse(_message.Message):
9
+ __slots__ = ("nodeTransactionPrecheckCode", "cost")
10
+ NODETRANSACTIONPRECHECKCODE_FIELD_NUMBER: _ClassVar[int]
11
+ COST_FIELD_NUMBER: _ClassVar[int]
12
+ nodeTransactionPrecheckCode: _response_code_pb2.ResponseCodeEnum
13
+ cost: int
14
+ def __init__(self, nodeTransactionPrecheckCode: _Optional[_Union[_response_code_pb2.ResponseCodeEnum, str]] = ..., cost: _Optional[int] = ...) -> 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 transaction_response_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,37 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: unchecked_submit.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
+ 'unchecked_submit.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x16unchecked_submit.proto\x12\x05proto\"/\n\x13UncheckedSubmitBody\x12\x18\n\x10transactionBytes\x18\x01 \x01(\x0c\x42&\n\"com.hederahashgraph.api.proto.javaP\x01\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'unchecked_submit_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ _globals['DESCRIPTOR']._loaded_options = None
34
+ _globals['DESCRIPTOR']._serialized_options = b'\n\"com.hederahashgraph.api.proto.javaP\001'
35
+ _globals['_UNCHECKEDSUBMITBODY']._serialized_start=33
36
+ _globals['_UNCHECKEDSUBMITBODY']._serialized_end=80
37
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,11 @@
1
+ from google.protobuf import descriptor as _descriptor
2
+ from google.protobuf import message as _message
3
+ from typing import ClassVar as _ClassVar, Optional as _Optional
4
+
5
+ DESCRIPTOR: _descriptor.FileDescriptor
6
+
7
+ class UncheckedSubmitBody(_message.Message):
8
+ __slots__ = ("transactionBytes",)
9
+ TRANSACTIONBYTES_FIELD_NUMBER: _ClassVar[int]
10
+ transactionBytes: bytes
11
+ def __init__(self, transactionBytes: _Optional[bytes] = ...) -> 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 unchecked_submit_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,37 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: util_prng.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
+ 'util_prng.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x0futil_prng.proto\x12\x05proto\"(\n\x17UtilPrngTransactionBody\x12\r\n\x05range\x18\x01 \x01(\x05\x42&\n\"com.hederahashgraph.api.proto.javaP\x01\x62\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'util_prng_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ _globals['DESCRIPTOR']._loaded_options = None
34
+ _globals['DESCRIPTOR']._serialized_options = b'\n\"com.hederahashgraph.api.proto.javaP\001'
35
+ _globals['_UTILPRNGTRANSACTIONBODY']._serialized_start=26
36
+ _globals['_UTILPRNGTRANSACTIONBODY']._serialized_end=66
37
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,11 @@
1
+ from google.protobuf import descriptor as _descriptor
2
+ from google.protobuf import message as _message
3
+ from typing import ClassVar as _ClassVar, Optional as _Optional
4
+
5
+ DESCRIPTOR: _descriptor.FileDescriptor
6
+
7
+ class UtilPrngTransactionBody(_message.Message):
8
+ __slots__ = ("range",)
9
+ RANGE_FIELD_NUMBER: _ClassVar[int]
10
+ range: int
11
+ def __init__(self, range: _Optional[int] = ...) -> 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 util_prng_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: util_service.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
+ 'util_service.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from . import transaction_response_pb2 as transaction__response__pb2
26
+ from . import transaction_pb2 as transaction__pb2
27
+
28
+
29
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x12util_service.proto\x12\x05proto\x1a\x1atransaction_response.proto\x1a\x11transaction.proto2E\n\x0bUtilService\x12\x36\n\x04prng\x12\x12.proto.Transaction\x1a\x1a.proto.TransactionResponseB(\n&com.hederahashgraph.service.proto.javab\x06proto3')
30
+
31
+ _globals = globals()
32
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
33
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'util_service_pb2', _globals)
34
+ if not _descriptor._USE_C_DESCRIPTORS:
35
+ _globals['DESCRIPTOR']._loaded_options = None
36
+ _globals['DESCRIPTOR']._serialized_options = b'\n&com.hederahashgraph.service.proto.java'
37
+ _globals['_UTILSERVICE']._serialized_start=76
38
+ _globals['_UTILSERVICE']._serialized_end=145
39
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,6 @@
1
+ import transaction_response_pb2 as _transaction_response_pb2
2
+ import transaction_pb2 as _transaction_pb2
3
+ from google.protobuf import descriptor as _descriptor
4
+ from typing import ClassVar as _ClassVar
5
+
6
+ DESCRIPTOR: _descriptor.FileDescriptor