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.
- hiero_sdk_python/__init__.py +93 -0
- hiero_sdk_python/account/__init__.py +0 -0
- hiero_sdk_python/account/account_balance.py +44 -0
- hiero_sdk_python/account/account_create_transaction.py +173 -0
- hiero_sdk_python/account/account_id.py +62 -0
- hiero_sdk_python/client/__init__.py +0 -0
- hiero_sdk_python/client/client.py +139 -0
- hiero_sdk_python/client/network.py +143 -0
- hiero_sdk_python/consensus/__init__.py +0 -0
- hiero_sdk_python/consensus/topic_create_transaction.py +83 -0
- hiero_sdk_python/consensus/topic_delete_transaction.py +67 -0
- hiero_sdk_python/consensus/topic_id.py +44 -0
- hiero_sdk_python/consensus/topic_info.py +91 -0
- hiero_sdk_python/consensus/topic_message.py +61 -0
- hiero_sdk_python/consensus/topic_message_submit_transaction.py +87 -0
- hiero_sdk_python/consensus/topic_update_transaction.py +173 -0
- hiero_sdk_python/crypto/__init__.py +0 -0
- hiero_sdk_python/crypto/private_key.py +196 -0
- hiero_sdk_python/crypto/public_key.py +162 -0
- hiero_sdk_python/hapi/mirror/__init__.py +0 -0
- hiero_sdk_python/hapi/mirror/consensus_service_pb2.py +44 -0
- hiero_sdk_python/hapi/mirror/consensus_service_pb2_grpc.py +106 -0
- hiero_sdk_python/hapi/mirror/mirror_network_service_pb2.py +41 -0
- hiero_sdk_python/hapi/mirror/mirror_network_service_pb2_grpc.py +108 -0
- hiero_sdk_python/hapi/services/__init__.py +0 -0
- hiero_sdk_python/hapi/services/address_book_service_pb2.py +41 -0
- hiero_sdk_python/hapi/services/address_book_service_pb2.pyi +8 -0
- hiero_sdk_python/hapi/services/address_book_service_pb2_grpc.py +444 -0
- hiero_sdk_python/hapi/services/auxiliary/tss/tss_encryption_key_pb2.py +37 -0
- hiero_sdk_python/hapi/services/auxiliary/tss/tss_encryption_key_pb2.pyi +11 -0
- hiero_sdk_python/hapi/services/auxiliary/tss/tss_encryption_key_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/auxiliary/tss/tss_message_pb2.py +37 -0
- hiero_sdk_python/hapi/services/auxiliary/tss/tss_message_pb2.pyi +17 -0
- hiero_sdk_python/hapi/services/auxiliary/tss/tss_message_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/auxiliary/tss/tss_share_signature_pb2.py +37 -0
- hiero_sdk_python/hapi/services/auxiliary/tss/tss_share_signature_pb2.pyi +17 -0
- hiero_sdk_python/hapi/services/auxiliary/tss/tss_share_signature_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/auxiliary/tss/tss_vote_pb2.py +37 -0
- hiero_sdk_python/hapi/services/auxiliary/tss/tss_vote_pb2.pyi +19 -0
- hiero_sdk_python/hapi/services/auxiliary/tss/tss_vote_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/basic_types_pb2.py +153 -0
- hiero_sdk_python/hapi/services/basic_types_pb2.pyi +694 -0
- hiero_sdk_python/hapi/services/basic_types_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/consensus_create_topic_pb2.py +39 -0
- hiero_sdk_python/hapi/services/consensus_create_topic_pb2.pyi +21 -0
- hiero_sdk_python/hapi/services/consensus_create_topic_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/consensus_delete_topic_pb2.py +38 -0
- hiero_sdk_python/hapi/services/consensus_delete_topic_pb2.pyi +12 -0
- hiero_sdk_python/hapi/services/consensus_delete_topic_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/consensus_get_topic_info_pb2.py +43 -0
- hiero_sdk_python/hapi/services/consensus_get_topic_info_pb2.pyi +27 -0
- hiero_sdk_python/hapi/services/consensus_get_topic_info_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/consensus_service_pb2.py +41 -0
- hiero_sdk_python/hapi/services/consensus_service_pb2.pyi +8 -0
- hiero_sdk_python/hapi/services/consensus_service_pb2_grpc.py +432 -0
- hiero_sdk_python/hapi/services/consensus_submit_message_pb2.py +40 -0
- hiero_sdk_python/hapi/services/consensus_submit_message_pb2.pyi +26 -0
- hiero_sdk_python/hapi/services/consensus_submit_message_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/consensus_topic_info_pb2.py +40 -0
- hiero_sdk_python/hapi/services/consensus_topic_info_pb2.pyi +30 -0
- hiero_sdk_python/hapi/services/consensus_topic_info_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/consensus_update_topic_pb2.py +41 -0
- hiero_sdk_python/hapi/services/consensus_update_topic_pb2.pyi +27 -0
- hiero_sdk_python/hapi/services/consensus_update_topic_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/contract_call_local_pb2.py +52 -0
- hiero_sdk_python/hapi/services/contract_call_local_pb2.pyi +79 -0
- hiero_sdk_python/hapi/services/contract_call_local_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/contract_call_pb2.py +38 -0
- hiero_sdk_python/hapi/services/contract_call_pb2.pyi +18 -0
- hiero_sdk_python/hapi/services/contract_call_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/contract_create_pb2.py +41 -0
- hiero_sdk_python/hapi/services/contract_create_pb2.pyi +45 -0
- hiero_sdk_python/hapi/services/contract_create_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/contract_delete_pb2.py +38 -0
- hiero_sdk_python/hapi/services/contract_delete_pb2.pyi +18 -0
- hiero_sdk_python/hapi/services/contract_delete_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/contract_get_bytecode_pb2.py +42 -0
- hiero_sdk_python/hapi/services/contract_get_bytecode_pb2.pyi +24 -0
- hiero_sdk_python/hapi/services/contract_get_bytecode_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/contract_get_info_pb2.py +48 -0
- hiero_sdk_python/hapi/services/contract_get_info_pb2.pyi +60 -0
- hiero_sdk_python/hapi/services/contract_get_info_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/contract_get_records_pb2.py +47 -0
- hiero_sdk_python/hapi/services/contract_get_records_pb2.pyi +28 -0
- hiero_sdk_python/hapi/services/contract_get_records_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/contract_types_pb2.py +39 -0
- hiero_sdk_python/hapi/services/contract_types_pb2.pyi +15 -0
- hiero_sdk_python/hapi/services/contract_types_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/contract_update_pb2.py +47 -0
- hiero_sdk_python/hapi/services/contract_update_pb2.pyi +39 -0
- hiero_sdk_python/hapi/services/contract_update_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/crypto_add_live_hash_pb2.py +41 -0
- hiero_sdk_python/hapi/services/crypto_add_live_hash_pb2.pyi +25 -0
- hiero_sdk_python/hapi/services/crypto_add_live_hash_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/crypto_approve_allowance_pb2.py +45 -0
- hiero_sdk_python/hapi/services/crypto_approve_allowance_pb2.pyi +56 -0
- hiero_sdk_python/hapi/services/crypto_approve_allowance_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/crypto_create_pb2.py +45 -0
- hiero_sdk_python/hapi/services/crypto_create_pb2.pyi +43 -0
- hiero_sdk_python/hapi/services/crypto_create_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/crypto_delete_allowance_pb2.py +40 -0
- hiero_sdk_python/hapi/services/crypto_delete_allowance_pb2.pyi +23 -0
- hiero_sdk_python/hapi/services/crypto_delete_allowance_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/crypto_delete_live_hash_pb2.py +38 -0
- hiero_sdk_python/hapi/services/crypto_delete_live_hash_pb2.pyi +14 -0
- hiero_sdk_python/hapi/services/crypto_delete_live_hash_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/crypto_delete_pb2.py +38 -0
- hiero_sdk_python/hapi/services/crypto_delete_pb2.pyi +14 -0
- hiero_sdk_python/hapi/services/crypto_delete_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/crypto_get_account_balance_pb2.py +44 -0
- hiero_sdk_python/hapi/services/crypto_get_account_balance_pb2.pyi +31 -0
- hiero_sdk_python/hapi/services/crypto_get_account_balance_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/crypto_get_account_records_pb2.py +43 -0
- hiero_sdk_python/hapi/services/crypto_get_account_records_pb2.pyi +28 -0
- hiero_sdk_python/hapi/services/crypto_get_account_records_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/crypto_get_info_pb2.py +55 -0
- hiero_sdk_python/hapi/services/crypto_get_info_pb2.pyi +73 -0
- hiero_sdk_python/hapi/services/crypto_get_info_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/crypto_get_live_hash_pb2.py +43 -0
- hiero_sdk_python/hapi/services/crypto_get_live_hash_pb2.pyi +27 -0
- hiero_sdk_python/hapi/services/crypto_get_live_hash_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/crypto_get_stakers_pb2.py +46 -0
- hiero_sdk_python/hapi/services/crypto_get_stakers_pb2.pyi +41 -0
- hiero_sdk_python/hapi/services/crypto_get_stakers_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/crypto_service_pb2.py +41 -0
- hiero_sdk_python/hapi/services/crypto_service_pb2.pyi +8 -0
- hiero_sdk_python/hapi/services/crypto_service_pb2_grpc.py +787 -0
- hiero_sdk_python/hapi/services/crypto_transfer_pb2.py +38 -0
- hiero_sdk_python/hapi/services/crypto_transfer_pb2.pyi +15 -0
- hiero_sdk_python/hapi/services/crypto_transfer_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/crypto_update_pb2.py +55 -0
- hiero_sdk_python/hapi/services/crypto_update_pb2.pyi +47 -0
- hiero_sdk_python/hapi/services/crypto_update_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/custom_fees_pb2.py +46 -0
- hiero_sdk_python/hapi/services/custom_fees_pb2.pyi +61 -0
- hiero_sdk_python/hapi/services/custom_fees_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/duration_pb2.py +37 -0
- hiero_sdk_python/hapi/services/duration_pb2.pyi +11 -0
- hiero_sdk_python/hapi/services/duration_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/ethereum_transaction_pb2.py +38 -0
- hiero_sdk_python/hapi/services/ethereum_transaction_pb2.pyi +16 -0
- hiero_sdk_python/hapi/services/ethereum_transaction_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/event/event_consensus_data_pb2.py +40 -0
- hiero_sdk_python/hapi/services/event/event_consensus_data_pb2.pyi +16 -0
- hiero_sdk_python/hapi/services/event/event_consensus_data_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/event/event_core_pb2.py +40 -0
- hiero_sdk_python/hapi/services/event/event_core_pb2.pyi +23 -0
- hiero_sdk_python/hapi/services/event/event_core_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/event/event_descriptor_pb2.py +37 -0
- hiero_sdk_python/hapi/services/event/event_descriptor_pb2.pyi +17 -0
- hiero_sdk_python/hapi/services/event/event_descriptor_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/event/event_transaction_pb2.py +38 -0
- hiero_sdk_python/hapi/services/event/event_transaction_pb2.pyi +14 -0
- hiero_sdk_python/hapi/services/event/event_transaction_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/event/gossip_event_pb2.py +41 -0
- hiero_sdk_python/hapi/services/event/gossip_event_pb2.pyi +20 -0
- hiero_sdk_python/hapi/services/event/gossip_event_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/event/state_signature_transaction_pb2.py +37 -0
- hiero_sdk_python/hapi/services/event/state_signature_transaction_pb2.pyi +15 -0
- hiero_sdk_python/hapi/services/event/state_signature_transaction_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/exchange_rate_pb2.py +40 -0
- hiero_sdk_python/hapi/services/exchange_rate_pb2.pyi +24 -0
- hiero_sdk_python/hapi/services/exchange_rate_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/file_append_pb2.py +38 -0
- hiero_sdk_python/hapi/services/file_append_pb2.pyi +14 -0
- hiero_sdk_python/hapi/services/file_append_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/file_create_pb2.py +39 -0
- hiero_sdk_python/hapi/services/file_create_pb2.pyi +25 -0
- hiero_sdk_python/hapi/services/file_create_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/file_delete_pb2.py +38 -0
- hiero_sdk_python/hapi/services/file_delete_pb2.pyi +12 -0
- hiero_sdk_python/hapi/services/file_delete_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/file_get_contents_pb2.py +44 -0
- hiero_sdk_python/hapi/services/file_get_contents_pb2.pyi +31 -0
- hiero_sdk_python/hapi/services/file_get_contents_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/file_get_info_pb2.py +45 -0
- hiero_sdk_python/hapi/services/file_get_info_pb2.pyi +42 -0
- hiero_sdk_python/hapi/services/file_get_info_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/file_service_pb2.py +41 -0
- hiero_sdk_python/hapi/services/file_service_pb2.pyi +8 -0
- hiero_sdk_python/hapi/services/file_service_pb2_grpc.py +423 -0
- hiero_sdk_python/hapi/services/file_update_pb2.py +40 -0
- hiero_sdk_python/hapi/services/file_update_pb2.pyi +22 -0
- hiero_sdk_python/hapi/services/file_update_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/freeze_pb2.py +48 -0
- hiero_sdk_python/hapi/services/freeze_pb2.pyi +28 -0
- hiero_sdk_python/hapi/services/freeze_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/freeze_service_pb2.py +39 -0
- hiero_sdk_python/hapi/services/freeze_service_pb2.pyi +6 -0
- hiero_sdk_python/hapi/services/freeze_service_pb2_grpc.py +107 -0
- hiero_sdk_python/hapi/services/freeze_type_pb2.py +37 -0
- hiero_sdk_python/hapi/services/freeze_type_pb2.pyi +20 -0
- hiero_sdk_python/hapi/services/freeze_type_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/get_account_details_pb2.py +56 -0
- hiero_sdk_python/hapi/services/get_account_details_pb2.pyi +96 -0
- hiero_sdk_python/hapi/services/get_account_details_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/get_by_key_pb2.py +45 -0
- hiero_sdk_python/hapi/services/get_by_key_pb2.pyi +38 -0
- hiero_sdk_python/hapi/services/get_by_key_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/get_by_solidity_id_pb2.py +42 -0
- hiero_sdk_python/hapi/services/get_by_solidity_id_pb2.pyi +28 -0
- hiero_sdk_python/hapi/services/get_by_solidity_id_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/network_get_execution_time_pb2.py +42 -0
- hiero_sdk_python/hapi/services/network_get_execution_time_pb2.pyi +25 -0
- hiero_sdk_python/hapi/services/network_get_execution_time_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/network_get_version_info_pb2.py +42 -0
- hiero_sdk_python/hapi/services/network_get_version_info_pb2.pyi +24 -0
- hiero_sdk_python/hapi/services/network_get_version_info_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/network_service_pb2.py +41 -0
- hiero_sdk_python/hapi/services/network_service_pb2.pyi +8 -0
- hiero_sdk_python/hapi/services/network_service_pb2_grpc.py +250 -0
- hiero_sdk_python/hapi/services/node_create_pb2.py +38 -0
- hiero_sdk_python/hapi/services/node_create_pb2.pyi +25 -0
- hiero_sdk_python/hapi/services/node_create_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/node_delete_pb2.py +37 -0
- hiero_sdk_python/hapi/services/node_delete_pb2.pyi +11 -0
- hiero_sdk_python/hapi/services/node_delete_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/node_stake_update_pb2.py +43 -0
- hiero_sdk_python/hapi/services/node_stake_update_pb2.pyi +58 -0
- hiero_sdk_python/hapi/services/node_stake_update_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/node_update_pb2.py +39 -0
- hiero_sdk_python/hapi/services/node_update_pb2.pyi +28 -0
- hiero_sdk_python/hapi/services/node_update_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/query_header_pb2.py +40 -0
- hiero_sdk_python/hapi/services/query_header_pb2.pyi +26 -0
- hiero_sdk_python/hapi/services/query_header_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/query_pb2.py +62 -0
- hiero_sdk_python/hapi/services/query_pb2.pyi +84 -0
- hiero_sdk_python/hapi/services/query_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/response_code_pb2.py +53 -0
- hiero_sdk_python/hapi/services/response_code_pb2.pyi +674 -0
- hiero_sdk_python/hapi/services/response_code_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/response_header_pb2.py +39 -0
- hiero_sdk_python/hapi/services/response_header_pb2.pyi +19 -0
- hiero_sdk_python/hapi/services/response_header_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/response_pb2.py +62 -0
- hiero_sdk_python/hapi/services/response_pb2.pyi +84 -0
- hiero_sdk_python/hapi/services/response_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/schedulable_transaction_body_pb2.py +83 -0
- hiero_sdk_python/hapi/services/schedulable_transaction_body_pb2.pyi +151 -0
- hiero_sdk_python/hapi/services/schedulable_transaction_body_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/schedule_create_pb2.py +40 -0
- hiero_sdk_python/hapi/services/schedule_create_pb2.pyi +24 -0
- hiero_sdk_python/hapi/services/schedule_create_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/schedule_delete_pb2.py +38 -0
- hiero_sdk_python/hapi/services/schedule_delete_pb2.pyi +12 -0
- hiero_sdk_python/hapi/services/schedule_delete_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/schedule_get_info_pb2.py +46 -0
- hiero_sdk_python/hapi/services/schedule_get_info_pb2.pyi +56 -0
- hiero_sdk_python/hapi/services/schedule_get_info_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/schedule_service_pb2.py +41 -0
- hiero_sdk_python/hapi/services/schedule_service_pb2.pyi +8 -0
- hiero_sdk_python/hapi/services/schedule_service_pb2_grpc.py +402 -0
- hiero_sdk_python/hapi/services/schedule_sign_pb2.py +38 -0
- hiero_sdk_python/hapi/services/schedule_sign_pb2.pyi +12 -0
- hiero_sdk_python/hapi/services/schedule_sign_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/smart_contract_service_pb2.py +43 -0
- hiero_sdk_python/hapi/services/smart_contract_service_pb2.pyi +8 -0
- hiero_sdk_python/hapi/services/smart_contract_service_pb2_grpc.py +604 -0
- hiero_sdk_python/hapi/services/system_delete_pb2.py +39 -0
- hiero_sdk_python/hapi/services/system_delete_pb2.pyi +17 -0
- hiero_sdk_python/hapi/services/system_delete_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/system_undelete_pb2.py +38 -0
- hiero_sdk_python/hapi/services/system_undelete_pb2.pyi +14 -0
- hiero_sdk_python/hapi/services/system_undelete_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/throttle_definitions_pb2.py +42 -0
- hiero_sdk_python/hapi/services/throttle_definitions_pb2.pyi +31 -0
- hiero_sdk_python/hapi/services/throttle_definitions_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/timestamp_pb2.py +39 -0
- hiero_sdk_python/hapi/services/timestamp_pb2.pyi +19 -0
- hiero_sdk_python/hapi/services/timestamp_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/token_airdrop_pb2.py +38 -0
- hiero_sdk_python/hapi/services/token_airdrop_pb2.pyi +13 -0
- hiero_sdk_python/hapi/services/token_airdrop_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/token_associate_pb2.py +38 -0
- hiero_sdk_python/hapi/services/token_associate_pb2.pyi +15 -0
- hiero_sdk_python/hapi/services/token_associate_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/token_burn_pb2.py +38 -0
- hiero_sdk_python/hapi/services/token_burn_pb2.pyi +17 -0
- hiero_sdk_python/hapi/services/token_burn_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/token_cancel_airdrop_pb2.py +38 -0
- hiero_sdk_python/hapi/services/token_cancel_airdrop_pb2.pyi +13 -0
- hiero_sdk_python/hapi/services/token_cancel_airdrop_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/token_claim_airdrop_pb2.py +38 -0
- hiero_sdk_python/hapi/services/token_claim_airdrop_pb2.pyi +13 -0
- hiero_sdk_python/hapi/services/token_claim_airdrop_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/token_create_pb2.py +41 -0
- hiero_sdk_python/hapi/services/token_create_pb2.pyi +60 -0
- hiero_sdk_python/hapi/services/token_create_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/token_delete_pb2.py +38 -0
- hiero_sdk_python/hapi/services/token_delete_pb2.pyi +12 -0
- hiero_sdk_python/hapi/services/token_delete_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/token_dissociate_pb2.py +38 -0
- hiero_sdk_python/hapi/services/token_dissociate_pb2.pyi +15 -0
- hiero_sdk_python/hapi/services/token_dissociate_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/token_fee_schedule_update_pb2.py +39 -0
- hiero_sdk_python/hapi/services/token_fee_schedule_update_pb2.pyi +16 -0
- hiero_sdk_python/hapi/services/token_fee_schedule_update_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/token_freeze_account_pb2.py +38 -0
- hiero_sdk_python/hapi/services/token_freeze_account_pb2.pyi +14 -0
- hiero_sdk_python/hapi/services/token_freeze_account_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/token_get_account_nft_infos_pb2.py +43 -0
- hiero_sdk_python/hapi/services/token_get_account_nft_infos_pb2.pyi +30 -0
- hiero_sdk_python/hapi/services/token_get_account_nft_infos_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/token_get_info_pb2.py +47 -0
- hiero_sdk_python/hapi/services/token_get_info_pb2.pyi +88 -0
- hiero_sdk_python/hapi/services/token_get_info_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/token_get_nft_info_pb2.py +45 -0
- hiero_sdk_python/hapi/services/token_get_nft_info_pb2.pyi +41 -0
- hiero_sdk_python/hapi/services/token_get_nft_info_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/token_get_nft_infos_pb2.py +43 -0
- hiero_sdk_python/hapi/services/token_get_nft_infos_pb2.pyi +32 -0
- hiero_sdk_python/hapi/services/token_get_nft_infos_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/token_grant_kyc_pb2.py +38 -0
- hiero_sdk_python/hapi/services/token_grant_kyc_pb2.pyi +14 -0
- hiero_sdk_python/hapi/services/token_grant_kyc_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/token_mint_pb2.py +38 -0
- hiero_sdk_python/hapi/services/token_mint_pb2.pyi +17 -0
- hiero_sdk_python/hapi/services/token_mint_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/token_pause_pb2.py +38 -0
- hiero_sdk_python/hapi/services/token_pause_pb2.pyi +12 -0
- hiero_sdk_python/hapi/services/token_pause_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/token_reject_pb2.py +40 -0
- hiero_sdk_python/hapi/services/token_reject_pb2.pyi +23 -0
- hiero_sdk_python/hapi/services/token_reject_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/token_revoke_kyc_pb2.py +38 -0
- hiero_sdk_python/hapi/services/token_revoke_kyc_pb2.pyi +14 -0
- hiero_sdk_python/hapi/services/token_revoke_kyc_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/token_service_pb2.py +45 -0
- hiero_sdk_python/hapi/services/token_service_pb2.pyi +8 -0
- hiero_sdk_python/hapi/services/token_service_pb2_grpc.py +1179 -0
- hiero_sdk_python/hapi/services/token_unfreeze_account_pb2.py +38 -0
- hiero_sdk_python/hapi/services/token_unfreeze_account_pb2.pyi +14 -0
- hiero_sdk_python/hapi/services/token_unfreeze_account_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/token_unpause_pb2.py +38 -0
- hiero_sdk_python/hapi/services/token_unpause_pb2.pyi +12 -0
- hiero_sdk_python/hapi/services/token_unpause_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/token_update_nfts_pb2.py +39 -0
- hiero_sdk_python/hapi/services/token_update_nfts_pb2.pyi +18 -0
- hiero_sdk_python/hapi/services/token_update_nfts_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/token_update_pb2.py +41 -0
- hiero_sdk_python/hapi/services/token_update_pb2.pyi +49 -0
- hiero_sdk_python/hapi/services/token_update_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/token_wipe_account_pb2.py +38 -0
- hiero_sdk_python/hapi/services/token_wipe_account_pb2.pyi +19 -0
- hiero_sdk_python/hapi/services/token_wipe_account_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/transaction_body_pb2.py +99 -0
- hiero_sdk_python/hapi/services/transaction_body_pb2.pyi +197 -0
- hiero_sdk_python/hapi/services/transaction_body_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/transaction_contents_pb2.py +38 -0
- hiero_sdk_python/hapi/services/transaction_contents_pb2.pyi +14 -0
- hiero_sdk_python/hapi/services/transaction_contents_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/transaction_get_fast_record_pb2.py +43 -0
- hiero_sdk_python/hapi/services/transaction_get_fast_record_pb2.pyi +25 -0
- hiero_sdk_python/hapi/services/transaction_get_fast_record_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/transaction_get_receipt_pb2.py +43 -0
- hiero_sdk_python/hapi/services/transaction_get_receipt_pb2.pyi +34 -0
- hiero_sdk_python/hapi/services/transaction_get_receipt_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/transaction_get_record_pb2.py +43 -0
- hiero_sdk_python/hapi/services/transaction_get_record_pb2.pyi +34 -0
- hiero_sdk_python/hapi/services/transaction_get_record_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/transaction_pb2.py +47 -0
- hiero_sdk_python/hapi/services/transaction_pb2.pyi +21 -0
- hiero_sdk_python/hapi/services/transaction_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/transaction_receipt_pb2.py +40 -0
- hiero_sdk_python/hapi/services/transaction_receipt_pb2.pyi +43 -0
- hiero_sdk_python/hapi/services/transaction_receipt_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/transaction_record_pb2.py +45 -0
- hiero_sdk_python/hapi/services/transaction_record_pb2.pyi +66 -0
- hiero_sdk_python/hapi/services/transaction_record_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/transaction_response_pb2.py +38 -0
- hiero_sdk_python/hapi/services/transaction_response_pb2.pyi +14 -0
- hiero_sdk_python/hapi/services/transaction_response_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/unchecked_submit_pb2.py +37 -0
- hiero_sdk_python/hapi/services/unchecked_submit_pb2.pyi +11 -0
- hiero_sdk_python/hapi/services/unchecked_submit_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/util_prng_pb2.py +37 -0
- hiero_sdk_python/hapi/services/util_prng_pb2.pyi +11 -0
- hiero_sdk_python/hapi/services/util_prng_pb2_grpc.py +24 -0
- hiero_sdk_python/hapi/services/util_service_pb2.py +39 -0
- hiero_sdk_python/hapi/services/util_service_pb2.pyi +6 -0
- hiero_sdk_python/hapi/services/util_service_pb2_grpc.py +106 -0
- hiero_sdk_python/hbar.py +33 -0
- hiero_sdk_python/query/__init__.py +0 -0
- hiero_sdk_python/query/account_balance_query.py +100 -0
- hiero_sdk_python/query/query.py +138 -0
- hiero_sdk_python/query/topic_info_query.py +105 -0
- hiero_sdk_python/query/topic_message_query.py +105 -0
- hiero_sdk_python/query/transaction_get_receipt_query.py +128 -0
- hiero_sdk_python/response_code.py +587 -0
- hiero_sdk_python/timestamp.py +166 -0
- hiero_sdk_python/tokens/__init__.py +0 -0
- hiero_sdk_python/tokens/token_associate_transaction.py +85 -0
- hiero_sdk_python/tokens/token_create_transaction.py +144 -0
- hiero_sdk_python/tokens/token_delete_transaction.py +84 -0
- hiero_sdk_python/tokens/token_dissociate_transaction.py +81 -0
- hiero_sdk_python/tokens/token_id.py +44 -0
- hiero_sdk_python/tokens/token_mint_transaction.py +143 -0
- hiero_sdk_python/transaction/__init__.py +0 -0
- hiero_sdk_python/transaction/query_payment.py +32 -0
- hiero_sdk_python/transaction/transaction.py +267 -0
- hiero_sdk_python/transaction/transaction_id.py +140 -0
- hiero_sdk_python/transaction/transaction_receipt.py +78 -0
- hiero_sdk_python/transaction/transfer_transaction.py +119 -0
- hiero_sdk_python/utils/key_format.py +22 -0
- hiero_sdk_python-0.0.0.dev2.dist-info/METADATA +822 -0
- hiero_sdk_python-0.0.0.dev2.dist-info/RECORD +410 -0
- hiero_sdk_python-0.0.0.dev2.dist-info/WHEEL +4 -0
- hiero_sdk_python-0.0.0.dev2.dist-info/entry_points.txt +4 -0
- hiero_sdk_python-0.0.0.dev2.dist-info/licenses/LICENSE +201 -0
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
import system_delete_pb2 as _system_delete_pb2
|
|
2
|
+
import system_undelete_pb2 as _system_undelete_pb2
|
|
3
|
+
import freeze_pb2 as _freeze_pb2
|
|
4
|
+
import contract_call_pb2 as _contract_call_pb2
|
|
5
|
+
import contract_create_pb2 as _contract_create_pb2
|
|
6
|
+
import contract_update_pb2 as _contract_update_pb2
|
|
7
|
+
import crypto_add_live_hash_pb2 as _crypto_add_live_hash_pb2
|
|
8
|
+
import crypto_create_pb2 as _crypto_create_pb2
|
|
9
|
+
import crypto_delete_pb2 as _crypto_delete_pb2
|
|
10
|
+
import crypto_delete_live_hash_pb2 as _crypto_delete_live_hash_pb2
|
|
11
|
+
import crypto_transfer_pb2 as _crypto_transfer_pb2
|
|
12
|
+
import crypto_update_pb2 as _crypto_update_pb2
|
|
13
|
+
import crypto_approve_allowance_pb2 as _crypto_approve_allowance_pb2
|
|
14
|
+
import crypto_delete_allowance_pb2 as _crypto_delete_allowance_pb2
|
|
15
|
+
import ethereum_transaction_pb2 as _ethereum_transaction_pb2
|
|
16
|
+
import file_append_pb2 as _file_append_pb2
|
|
17
|
+
import file_create_pb2 as _file_create_pb2
|
|
18
|
+
import file_delete_pb2 as _file_delete_pb2
|
|
19
|
+
import file_update_pb2 as _file_update_pb2
|
|
20
|
+
import duration_pb2 as _duration_pb2
|
|
21
|
+
import basic_types_pb2 as _basic_types_pb2
|
|
22
|
+
import contract_delete_pb2 as _contract_delete_pb2
|
|
23
|
+
import consensus_create_topic_pb2 as _consensus_create_topic_pb2
|
|
24
|
+
import consensus_update_topic_pb2 as _consensus_update_topic_pb2
|
|
25
|
+
import consensus_delete_topic_pb2 as _consensus_delete_topic_pb2
|
|
26
|
+
import consensus_submit_message_pb2 as _consensus_submit_message_pb2
|
|
27
|
+
import unchecked_submit_pb2 as _unchecked_submit_pb2
|
|
28
|
+
import token_create_pb2 as _token_create_pb2
|
|
29
|
+
import token_freeze_account_pb2 as _token_freeze_account_pb2
|
|
30
|
+
import token_unfreeze_account_pb2 as _token_unfreeze_account_pb2
|
|
31
|
+
import token_grant_kyc_pb2 as _token_grant_kyc_pb2
|
|
32
|
+
import token_revoke_kyc_pb2 as _token_revoke_kyc_pb2
|
|
33
|
+
import token_delete_pb2 as _token_delete_pb2
|
|
34
|
+
import token_update_pb2 as _token_update_pb2
|
|
35
|
+
import token_mint_pb2 as _token_mint_pb2
|
|
36
|
+
import token_burn_pb2 as _token_burn_pb2
|
|
37
|
+
import token_wipe_account_pb2 as _token_wipe_account_pb2
|
|
38
|
+
import token_associate_pb2 as _token_associate_pb2
|
|
39
|
+
import token_dissociate_pb2 as _token_dissociate_pb2
|
|
40
|
+
import token_fee_schedule_update_pb2 as _token_fee_schedule_update_pb2
|
|
41
|
+
import token_pause_pb2 as _token_pause_pb2
|
|
42
|
+
import token_unpause_pb2 as _token_unpause_pb2
|
|
43
|
+
import token_update_nfts_pb2 as _token_update_nfts_pb2
|
|
44
|
+
import token_reject_pb2 as _token_reject_pb2
|
|
45
|
+
import token_airdrop_pb2 as _token_airdrop_pb2
|
|
46
|
+
import token_cancel_airdrop_pb2 as _token_cancel_airdrop_pb2
|
|
47
|
+
import token_claim_airdrop_pb2 as _token_claim_airdrop_pb2
|
|
48
|
+
import schedule_create_pb2 as _schedule_create_pb2
|
|
49
|
+
import schedule_delete_pb2 as _schedule_delete_pb2
|
|
50
|
+
import schedule_sign_pb2 as _schedule_sign_pb2
|
|
51
|
+
import node_stake_update_pb2 as _node_stake_update_pb2
|
|
52
|
+
import util_prng_pb2 as _util_prng_pb2
|
|
53
|
+
import node_create_pb2 as _node_create_pb2
|
|
54
|
+
import node_update_pb2 as _node_update_pb2
|
|
55
|
+
import node_delete_pb2 as _node_delete_pb2
|
|
56
|
+
from auxiliary.tss import tss_message_pb2 as _tss_message_pb2
|
|
57
|
+
from auxiliary.tss import tss_vote_pb2 as _tss_vote_pb2
|
|
58
|
+
from auxiliary.tss import tss_share_signature_pb2 as _tss_share_signature_pb2
|
|
59
|
+
from auxiliary.tss import tss_encryption_key_pb2 as _tss_encryption_key_pb2
|
|
60
|
+
from event import state_signature_transaction_pb2 as _state_signature_transaction_pb2
|
|
61
|
+
from google.protobuf import descriptor as _descriptor
|
|
62
|
+
from google.protobuf import message as _message
|
|
63
|
+
from typing import ClassVar as _ClassVar, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
64
|
+
|
|
65
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
66
|
+
|
|
67
|
+
class TransactionBody(_message.Message):
|
|
68
|
+
__slots__ = ("transactionID", "nodeAccountID", "transactionFee", "transactionValidDuration", "generateRecord", "memo", "contractCall", "contractCreateInstance", "contractUpdateInstance", "cryptoAddLiveHash", "cryptoCreateAccount", "cryptoDelete", "cryptoDeleteLiveHash", "cryptoTransfer", "cryptoUpdateAccount", "fileAppend", "fileCreate", "fileDelete", "fileUpdate", "systemDelete", "systemUndelete", "contractDeleteInstance", "freeze", "consensusCreateTopic", "consensusUpdateTopic", "consensusDeleteTopic", "consensusSubmitMessage", "uncheckedSubmit", "tokenCreation", "tokenFreeze", "tokenUnfreeze", "tokenGrantKyc", "tokenRevokeKyc", "tokenDeletion", "tokenUpdate", "tokenMint", "tokenBurn", "tokenWipe", "tokenAssociate", "tokenDissociate", "scheduleCreate", "scheduleDelete", "scheduleSign", "token_fee_schedule_update", "token_pause", "token_unpause", "cryptoApproveAllowance", "cryptoDeleteAllowance", "ethereumTransaction", "node_stake_update", "util_prng", "token_update_nfts", "nodeCreate", "nodeUpdate", "nodeDelete", "tokenReject", "tokenAirdrop", "tokenCancelAirdrop", "tokenClaimAirdrop", "tssMessage", "tssVote", "tssShareSignature", "tssEncryptionKey", "state_signature_transaction")
|
|
69
|
+
TRANSACTIONID_FIELD_NUMBER: _ClassVar[int]
|
|
70
|
+
NODEACCOUNTID_FIELD_NUMBER: _ClassVar[int]
|
|
71
|
+
TRANSACTIONFEE_FIELD_NUMBER: _ClassVar[int]
|
|
72
|
+
TRANSACTIONVALIDDURATION_FIELD_NUMBER: _ClassVar[int]
|
|
73
|
+
GENERATERECORD_FIELD_NUMBER: _ClassVar[int]
|
|
74
|
+
MEMO_FIELD_NUMBER: _ClassVar[int]
|
|
75
|
+
CONTRACTCALL_FIELD_NUMBER: _ClassVar[int]
|
|
76
|
+
CONTRACTCREATEINSTANCE_FIELD_NUMBER: _ClassVar[int]
|
|
77
|
+
CONTRACTUPDATEINSTANCE_FIELD_NUMBER: _ClassVar[int]
|
|
78
|
+
CRYPTOADDLIVEHASH_FIELD_NUMBER: _ClassVar[int]
|
|
79
|
+
CRYPTOCREATEACCOUNT_FIELD_NUMBER: _ClassVar[int]
|
|
80
|
+
CRYPTODELETE_FIELD_NUMBER: _ClassVar[int]
|
|
81
|
+
CRYPTODELETELIVEHASH_FIELD_NUMBER: _ClassVar[int]
|
|
82
|
+
CRYPTOTRANSFER_FIELD_NUMBER: _ClassVar[int]
|
|
83
|
+
CRYPTOUPDATEACCOUNT_FIELD_NUMBER: _ClassVar[int]
|
|
84
|
+
FILEAPPEND_FIELD_NUMBER: _ClassVar[int]
|
|
85
|
+
FILECREATE_FIELD_NUMBER: _ClassVar[int]
|
|
86
|
+
FILEDELETE_FIELD_NUMBER: _ClassVar[int]
|
|
87
|
+
FILEUPDATE_FIELD_NUMBER: _ClassVar[int]
|
|
88
|
+
SYSTEMDELETE_FIELD_NUMBER: _ClassVar[int]
|
|
89
|
+
SYSTEMUNDELETE_FIELD_NUMBER: _ClassVar[int]
|
|
90
|
+
CONTRACTDELETEINSTANCE_FIELD_NUMBER: _ClassVar[int]
|
|
91
|
+
FREEZE_FIELD_NUMBER: _ClassVar[int]
|
|
92
|
+
CONSENSUSCREATETOPIC_FIELD_NUMBER: _ClassVar[int]
|
|
93
|
+
CONSENSUSUPDATETOPIC_FIELD_NUMBER: _ClassVar[int]
|
|
94
|
+
CONSENSUSDELETETOPIC_FIELD_NUMBER: _ClassVar[int]
|
|
95
|
+
CONSENSUSSUBMITMESSAGE_FIELD_NUMBER: _ClassVar[int]
|
|
96
|
+
UNCHECKEDSUBMIT_FIELD_NUMBER: _ClassVar[int]
|
|
97
|
+
TOKENCREATION_FIELD_NUMBER: _ClassVar[int]
|
|
98
|
+
TOKENFREEZE_FIELD_NUMBER: _ClassVar[int]
|
|
99
|
+
TOKENUNFREEZE_FIELD_NUMBER: _ClassVar[int]
|
|
100
|
+
TOKENGRANTKYC_FIELD_NUMBER: _ClassVar[int]
|
|
101
|
+
TOKENREVOKEKYC_FIELD_NUMBER: _ClassVar[int]
|
|
102
|
+
TOKENDELETION_FIELD_NUMBER: _ClassVar[int]
|
|
103
|
+
TOKENUPDATE_FIELD_NUMBER: _ClassVar[int]
|
|
104
|
+
TOKENMINT_FIELD_NUMBER: _ClassVar[int]
|
|
105
|
+
TOKENBURN_FIELD_NUMBER: _ClassVar[int]
|
|
106
|
+
TOKENWIPE_FIELD_NUMBER: _ClassVar[int]
|
|
107
|
+
TOKENASSOCIATE_FIELD_NUMBER: _ClassVar[int]
|
|
108
|
+
TOKENDISSOCIATE_FIELD_NUMBER: _ClassVar[int]
|
|
109
|
+
SCHEDULECREATE_FIELD_NUMBER: _ClassVar[int]
|
|
110
|
+
SCHEDULEDELETE_FIELD_NUMBER: _ClassVar[int]
|
|
111
|
+
SCHEDULESIGN_FIELD_NUMBER: _ClassVar[int]
|
|
112
|
+
TOKEN_FEE_SCHEDULE_UPDATE_FIELD_NUMBER: _ClassVar[int]
|
|
113
|
+
TOKEN_PAUSE_FIELD_NUMBER: _ClassVar[int]
|
|
114
|
+
TOKEN_UNPAUSE_FIELD_NUMBER: _ClassVar[int]
|
|
115
|
+
CRYPTOAPPROVEALLOWANCE_FIELD_NUMBER: _ClassVar[int]
|
|
116
|
+
CRYPTODELETEALLOWANCE_FIELD_NUMBER: _ClassVar[int]
|
|
117
|
+
ETHEREUMTRANSACTION_FIELD_NUMBER: _ClassVar[int]
|
|
118
|
+
NODE_STAKE_UPDATE_FIELD_NUMBER: _ClassVar[int]
|
|
119
|
+
UTIL_PRNG_FIELD_NUMBER: _ClassVar[int]
|
|
120
|
+
TOKEN_UPDATE_NFTS_FIELD_NUMBER: _ClassVar[int]
|
|
121
|
+
NODECREATE_FIELD_NUMBER: _ClassVar[int]
|
|
122
|
+
NODEUPDATE_FIELD_NUMBER: _ClassVar[int]
|
|
123
|
+
NODEDELETE_FIELD_NUMBER: _ClassVar[int]
|
|
124
|
+
TOKENREJECT_FIELD_NUMBER: _ClassVar[int]
|
|
125
|
+
TOKENAIRDROP_FIELD_NUMBER: _ClassVar[int]
|
|
126
|
+
TOKENCANCELAIRDROP_FIELD_NUMBER: _ClassVar[int]
|
|
127
|
+
TOKENCLAIMAIRDROP_FIELD_NUMBER: _ClassVar[int]
|
|
128
|
+
TSSMESSAGE_FIELD_NUMBER: _ClassVar[int]
|
|
129
|
+
TSSVOTE_FIELD_NUMBER: _ClassVar[int]
|
|
130
|
+
TSSSHARESIGNATURE_FIELD_NUMBER: _ClassVar[int]
|
|
131
|
+
TSSENCRYPTIONKEY_FIELD_NUMBER: _ClassVar[int]
|
|
132
|
+
STATE_SIGNATURE_TRANSACTION_FIELD_NUMBER: _ClassVar[int]
|
|
133
|
+
transactionID: _basic_types_pb2.TransactionID
|
|
134
|
+
nodeAccountID: _basic_types_pb2.AccountID
|
|
135
|
+
transactionFee: int
|
|
136
|
+
transactionValidDuration: _duration_pb2.Duration
|
|
137
|
+
generateRecord: bool
|
|
138
|
+
memo: str
|
|
139
|
+
contractCall: _contract_call_pb2.ContractCallTransactionBody
|
|
140
|
+
contractCreateInstance: _contract_create_pb2.ContractCreateTransactionBody
|
|
141
|
+
contractUpdateInstance: _contract_update_pb2.ContractUpdateTransactionBody
|
|
142
|
+
cryptoAddLiveHash: _crypto_add_live_hash_pb2.CryptoAddLiveHashTransactionBody
|
|
143
|
+
cryptoCreateAccount: _crypto_create_pb2.CryptoCreateTransactionBody
|
|
144
|
+
cryptoDelete: _crypto_delete_pb2.CryptoDeleteTransactionBody
|
|
145
|
+
cryptoDeleteLiveHash: _crypto_delete_live_hash_pb2.CryptoDeleteLiveHashTransactionBody
|
|
146
|
+
cryptoTransfer: _crypto_transfer_pb2.CryptoTransferTransactionBody
|
|
147
|
+
cryptoUpdateAccount: _crypto_update_pb2.CryptoUpdateTransactionBody
|
|
148
|
+
fileAppend: _file_append_pb2.FileAppendTransactionBody
|
|
149
|
+
fileCreate: _file_create_pb2.FileCreateTransactionBody
|
|
150
|
+
fileDelete: _file_delete_pb2.FileDeleteTransactionBody
|
|
151
|
+
fileUpdate: _file_update_pb2.FileUpdateTransactionBody
|
|
152
|
+
systemDelete: _system_delete_pb2.SystemDeleteTransactionBody
|
|
153
|
+
systemUndelete: _system_undelete_pb2.SystemUndeleteTransactionBody
|
|
154
|
+
contractDeleteInstance: _contract_delete_pb2.ContractDeleteTransactionBody
|
|
155
|
+
freeze: _freeze_pb2.FreezeTransactionBody
|
|
156
|
+
consensusCreateTopic: _consensus_create_topic_pb2.ConsensusCreateTopicTransactionBody
|
|
157
|
+
consensusUpdateTopic: _consensus_update_topic_pb2.ConsensusUpdateTopicTransactionBody
|
|
158
|
+
consensusDeleteTopic: _consensus_delete_topic_pb2.ConsensusDeleteTopicTransactionBody
|
|
159
|
+
consensusSubmitMessage: _consensus_submit_message_pb2.ConsensusSubmitMessageTransactionBody
|
|
160
|
+
uncheckedSubmit: _unchecked_submit_pb2.UncheckedSubmitBody
|
|
161
|
+
tokenCreation: _token_create_pb2.TokenCreateTransactionBody
|
|
162
|
+
tokenFreeze: _token_freeze_account_pb2.TokenFreezeAccountTransactionBody
|
|
163
|
+
tokenUnfreeze: _token_unfreeze_account_pb2.TokenUnfreezeAccountTransactionBody
|
|
164
|
+
tokenGrantKyc: _token_grant_kyc_pb2.TokenGrantKycTransactionBody
|
|
165
|
+
tokenRevokeKyc: _token_revoke_kyc_pb2.TokenRevokeKycTransactionBody
|
|
166
|
+
tokenDeletion: _token_delete_pb2.TokenDeleteTransactionBody
|
|
167
|
+
tokenUpdate: _token_update_pb2.TokenUpdateTransactionBody
|
|
168
|
+
tokenMint: _token_mint_pb2.TokenMintTransactionBody
|
|
169
|
+
tokenBurn: _token_burn_pb2.TokenBurnTransactionBody
|
|
170
|
+
tokenWipe: _token_wipe_account_pb2.TokenWipeAccountTransactionBody
|
|
171
|
+
tokenAssociate: _token_associate_pb2.TokenAssociateTransactionBody
|
|
172
|
+
tokenDissociate: _token_dissociate_pb2.TokenDissociateTransactionBody
|
|
173
|
+
scheduleCreate: _schedule_create_pb2.ScheduleCreateTransactionBody
|
|
174
|
+
scheduleDelete: _schedule_delete_pb2.ScheduleDeleteTransactionBody
|
|
175
|
+
scheduleSign: _schedule_sign_pb2.ScheduleSignTransactionBody
|
|
176
|
+
token_fee_schedule_update: _token_fee_schedule_update_pb2.TokenFeeScheduleUpdateTransactionBody
|
|
177
|
+
token_pause: _token_pause_pb2.TokenPauseTransactionBody
|
|
178
|
+
token_unpause: _token_unpause_pb2.TokenUnpauseTransactionBody
|
|
179
|
+
cryptoApproveAllowance: _crypto_approve_allowance_pb2.CryptoApproveAllowanceTransactionBody
|
|
180
|
+
cryptoDeleteAllowance: _crypto_delete_allowance_pb2.CryptoDeleteAllowanceTransactionBody
|
|
181
|
+
ethereumTransaction: _ethereum_transaction_pb2.EthereumTransactionBody
|
|
182
|
+
node_stake_update: _node_stake_update_pb2.NodeStakeUpdateTransactionBody
|
|
183
|
+
util_prng: _util_prng_pb2.UtilPrngTransactionBody
|
|
184
|
+
token_update_nfts: _token_update_nfts_pb2.TokenUpdateNftsTransactionBody
|
|
185
|
+
nodeCreate: _node_create_pb2.NodeCreateTransactionBody
|
|
186
|
+
nodeUpdate: _node_update_pb2.NodeUpdateTransactionBody
|
|
187
|
+
nodeDelete: _node_delete_pb2.NodeDeleteTransactionBody
|
|
188
|
+
tokenReject: _token_reject_pb2.TokenRejectTransactionBody
|
|
189
|
+
tokenAirdrop: _token_airdrop_pb2.TokenAirdropTransactionBody
|
|
190
|
+
tokenCancelAirdrop: _token_cancel_airdrop_pb2.TokenCancelAirdropTransactionBody
|
|
191
|
+
tokenClaimAirdrop: _token_claim_airdrop_pb2.TokenClaimAirdropTransactionBody
|
|
192
|
+
tssMessage: _tss_message_pb2.TssMessageTransactionBody
|
|
193
|
+
tssVote: _tss_vote_pb2.TssVoteTransactionBody
|
|
194
|
+
tssShareSignature: _tss_share_signature_pb2.TssShareSignatureTransactionBody
|
|
195
|
+
tssEncryptionKey: _tss_encryption_key_pb2.TssEncryptionKeyTransactionBody
|
|
196
|
+
state_signature_transaction: _state_signature_transaction_pb2.StateSignatureTransaction
|
|
197
|
+
def __init__(self, transactionID: _Optional[_Union[_basic_types_pb2.TransactionID, _Mapping]] = ..., nodeAccountID: _Optional[_Union[_basic_types_pb2.AccountID, _Mapping]] = ..., transactionFee: _Optional[int] = ..., transactionValidDuration: _Optional[_Union[_duration_pb2.Duration, _Mapping]] = ..., generateRecord: bool = ..., memo: _Optional[str] = ..., contractCall: _Optional[_Union[_contract_call_pb2.ContractCallTransactionBody, _Mapping]] = ..., contractCreateInstance: _Optional[_Union[_contract_create_pb2.ContractCreateTransactionBody, _Mapping]] = ..., contractUpdateInstance: _Optional[_Union[_contract_update_pb2.ContractUpdateTransactionBody, _Mapping]] = ..., cryptoAddLiveHash: _Optional[_Union[_crypto_add_live_hash_pb2.CryptoAddLiveHashTransactionBody, _Mapping]] = ..., cryptoCreateAccount: _Optional[_Union[_crypto_create_pb2.CryptoCreateTransactionBody, _Mapping]] = ..., cryptoDelete: _Optional[_Union[_crypto_delete_pb2.CryptoDeleteTransactionBody, _Mapping]] = ..., cryptoDeleteLiveHash: _Optional[_Union[_crypto_delete_live_hash_pb2.CryptoDeleteLiveHashTransactionBody, _Mapping]] = ..., cryptoTransfer: _Optional[_Union[_crypto_transfer_pb2.CryptoTransferTransactionBody, _Mapping]] = ..., cryptoUpdateAccount: _Optional[_Union[_crypto_update_pb2.CryptoUpdateTransactionBody, _Mapping]] = ..., fileAppend: _Optional[_Union[_file_append_pb2.FileAppendTransactionBody, _Mapping]] = ..., fileCreate: _Optional[_Union[_file_create_pb2.FileCreateTransactionBody, _Mapping]] = ..., fileDelete: _Optional[_Union[_file_delete_pb2.FileDeleteTransactionBody, _Mapping]] = ..., fileUpdate: _Optional[_Union[_file_update_pb2.FileUpdateTransactionBody, _Mapping]] = ..., systemDelete: _Optional[_Union[_system_delete_pb2.SystemDeleteTransactionBody, _Mapping]] = ..., systemUndelete: _Optional[_Union[_system_undelete_pb2.SystemUndeleteTransactionBody, _Mapping]] = ..., contractDeleteInstance: _Optional[_Union[_contract_delete_pb2.ContractDeleteTransactionBody, _Mapping]] = ..., freeze: _Optional[_Union[_freeze_pb2.FreezeTransactionBody, _Mapping]] = ..., consensusCreateTopic: _Optional[_Union[_consensus_create_topic_pb2.ConsensusCreateTopicTransactionBody, _Mapping]] = ..., consensusUpdateTopic: _Optional[_Union[_consensus_update_topic_pb2.ConsensusUpdateTopicTransactionBody, _Mapping]] = ..., consensusDeleteTopic: _Optional[_Union[_consensus_delete_topic_pb2.ConsensusDeleteTopicTransactionBody, _Mapping]] = ..., consensusSubmitMessage: _Optional[_Union[_consensus_submit_message_pb2.ConsensusSubmitMessageTransactionBody, _Mapping]] = ..., uncheckedSubmit: _Optional[_Union[_unchecked_submit_pb2.UncheckedSubmitBody, _Mapping]] = ..., tokenCreation: _Optional[_Union[_token_create_pb2.TokenCreateTransactionBody, _Mapping]] = ..., tokenFreeze: _Optional[_Union[_token_freeze_account_pb2.TokenFreezeAccountTransactionBody, _Mapping]] = ..., tokenUnfreeze: _Optional[_Union[_token_unfreeze_account_pb2.TokenUnfreezeAccountTransactionBody, _Mapping]] = ..., tokenGrantKyc: _Optional[_Union[_token_grant_kyc_pb2.TokenGrantKycTransactionBody, _Mapping]] = ..., tokenRevokeKyc: _Optional[_Union[_token_revoke_kyc_pb2.TokenRevokeKycTransactionBody, _Mapping]] = ..., tokenDeletion: _Optional[_Union[_token_delete_pb2.TokenDeleteTransactionBody, _Mapping]] = ..., tokenUpdate: _Optional[_Union[_token_update_pb2.TokenUpdateTransactionBody, _Mapping]] = ..., tokenMint: _Optional[_Union[_token_mint_pb2.TokenMintTransactionBody, _Mapping]] = ..., tokenBurn: _Optional[_Union[_token_burn_pb2.TokenBurnTransactionBody, _Mapping]] = ..., tokenWipe: _Optional[_Union[_token_wipe_account_pb2.TokenWipeAccountTransactionBody, _Mapping]] = ..., tokenAssociate: _Optional[_Union[_token_associate_pb2.TokenAssociateTransactionBody, _Mapping]] = ..., tokenDissociate: _Optional[_Union[_token_dissociate_pb2.TokenDissociateTransactionBody, _Mapping]] = ..., scheduleCreate: _Optional[_Union[_schedule_create_pb2.ScheduleCreateTransactionBody, _Mapping]] = ..., scheduleDelete: _Optional[_Union[_schedule_delete_pb2.ScheduleDeleteTransactionBody, _Mapping]] = ..., scheduleSign: _Optional[_Union[_schedule_sign_pb2.ScheduleSignTransactionBody, _Mapping]] = ..., token_fee_schedule_update: _Optional[_Union[_token_fee_schedule_update_pb2.TokenFeeScheduleUpdateTransactionBody, _Mapping]] = ..., token_pause: _Optional[_Union[_token_pause_pb2.TokenPauseTransactionBody, _Mapping]] = ..., token_unpause: _Optional[_Union[_token_unpause_pb2.TokenUnpauseTransactionBody, _Mapping]] = ..., cryptoApproveAllowance: _Optional[_Union[_crypto_approve_allowance_pb2.CryptoApproveAllowanceTransactionBody, _Mapping]] = ..., cryptoDeleteAllowance: _Optional[_Union[_crypto_delete_allowance_pb2.CryptoDeleteAllowanceTransactionBody, _Mapping]] = ..., ethereumTransaction: _Optional[_Union[_ethereum_transaction_pb2.EthereumTransactionBody, _Mapping]] = ..., node_stake_update: _Optional[_Union[_node_stake_update_pb2.NodeStakeUpdateTransactionBody, _Mapping]] = ..., util_prng: _Optional[_Union[_util_prng_pb2.UtilPrngTransactionBody, _Mapping]] = ..., token_update_nfts: _Optional[_Union[_token_update_nfts_pb2.TokenUpdateNftsTransactionBody, _Mapping]] = ..., nodeCreate: _Optional[_Union[_node_create_pb2.NodeCreateTransactionBody, _Mapping]] = ..., nodeUpdate: _Optional[_Union[_node_update_pb2.NodeUpdateTransactionBody, _Mapping]] = ..., nodeDelete: _Optional[_Union[_node_delete_pb2.NodeDeleteTransactionBody, _Mapping]] = ..., tokenReject: _Optional[_Union[_token_reject_pb2.TokenRejectTransactionBody, _Mapping]] = ..., tokenAirdrop: _Optional[_Union[_token_airdrop_pb2.TokenAirdropTransactionBody, _Mapping]] = ..., tokenCancelAirdrop: _Optional[_Union[_token_cancel_airdrop_pb2.TokenCancelAirdropTransactionBody, _Mapping]] = ..., tokenClaimAirdrop: _Optional[_Union[_token_claim_airdrop_pb2.TokenClaimAirdropTransactionBody, _Mapping]] = ..., tssMessage: _Optional[_Union[_tss_message_pb2.TssMessageTransactionBody, _Mapping]] = ..., tssVote: _Optional[_Union[_tss_vote_pb2.TssVoteTransactionBody, _Mapping]] = ..., tssShareSignature: _Optional[_Union[_tss_share_signature_pb2.TssShareSignatureTransactionBody, _Mapping]] = ..., tssEncryptionKey: _Optional[_Union[_tss_encryption_key_pb2.TssEncryptionKeyTransactionBody, _Mapping]] = ..., state_signature_transaction: _Optional[_Union[_state_signature_transaction_pb2.StateSignatureTransaction, _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_body_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_contents.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_contents.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\x1atransaction_contents.proto\x12\x05proto\x1a\x11\x62\x61sic_types.proto\"K\n\x11SignedTransaction\x12\x11\n\tbodyBytes\x18\x01 \x01(\x0c\x12#\n\x06sigMap\x18\x02 \x01(\x0b\x32\x13.proto.SignatureMapB&\n\"com.hederahashgraph.api.proto.javaP\x01\x62\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'transaction_contents_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['_SIGNEDTRANSACTION']._serialized_start=56
|
|
37
|
+
_globals['_SIGNEDTRANSACTION']._serialized_end=131
|
|
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 SignedTransaction(_message.Message):
|
|
9
|
+
__slots__ = ("bodyBytes", "sigMap")
|
|
10
|
+
BODYBYTES_FIELD_NUMBER: _ClassVar[int]
|
|
11
|
+
SIGMAP_FIELD_NUMBER: _ClassVar[int]
|
|
12
|
+
bodyBytes: bytes
|
|
13
|
+
sigMap: _basic_types_pb2.SignatureMap
|
|
14
|
+
def __init__(self, bodyBytes: _Optional[bytes] = ..., sigMap: _Optional[_Union[_basic_types_pb2.SignatureMap, _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_contents_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: transaction_get_fast_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_get_fast_record.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from . import transaction_record_pb2 as transaction__record__pb2
|
|
26
|
+
from . import basic_types_pb2 as basic__types__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!transaction_get_fast_record.proto\x12\x05proto\x1a\x18transaction_record.proto\x1a\x11\x62\x61sic_types.proto\x1a\x12query_header.proto\x1a\x15response_header.proto\"p\n\x1dTransactionGetFastRecordQuery\x12\"\n\x06header\x18\x01 \x01(\x0b\x32\x12.proto.QueryHeader\x12+\n\rtransactionID\x18\x02 \x01(\x0b\x32\x14.proto.TransactionID\"~\n TransactionGetFastRecordResponse\x12%\n\x06header\x18\x01 \x01(\x0b\x32\x15.proto.ResponseHeader\x12\x33\n\x11transactionRecord\x18\x02 \x01(\x0b\x32\x18.proto.TransactionRecordB&\n\"com.hederahashgraph.api.proto.javaP\x01\x62\x06proto3')
|
|
32
|
+
|
|
33
|
+
_globals = globals()
|
|
34
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
35
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'transaction_get_fast_record_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['_TRANSACTIONGETFASTRECORDQUERY']._serialized_start=132
|
|
40
|
+
_globals['_TRANSACTIONGETFASTRECORDQUERY']._serialized_end=244
|
|
41
|
+
_globals['_TRANSACTIONGETFASTRECORDRESPONSE']._serialized_start=246
|
|
42
|
+
_globals['_TRANSACTIONGETFASTRECORDRESPONSE']._serialized_end=372
|
|
43
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import transaction_record_pb2 as _transaction_record_pb2
|
|
2
|
+
import basic_types_pb2 as _basic_types_pb2
|
|
3
|
+
import query_header_pb2 as _query_header_pb2
|
|
4
|
+
import response_header_pb2 as _response_header_pb2
|
|
5
|
+
from google.protobuf import descriptor as _descriptor
|
|
6
|
+
from google.protobuf import message as _message
|
|
7
|
+
from typing import ClassVar as _ClassVar, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
8
|
+
|
|
9
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
10
|
+
|
|
11
|
+
class TransactionGetFastRecordQuery(_message.Message):
|
|
12
|
+
__slots__ = ("header", "transactionID")
|
|
13
|
+
HEADER_FIELD_NUMBER: _ClassVar[int]
|
|
14
|
+
TRANSACTIONID_FIELD_NUMBER: _ClassVar[int]
|
|
15
|
+
header: _query_header_pb2.QueryHeader
|
|
16
|
+
transactionID: _basic_types_pb2.TransactionID
|
|
17
|
+
def __init__(self, header: _Optional[_Union[_query_header_pb2.QueryHeader, _Mapping]] = ..., transactionID: _Optional[_Union[_basic_types_pb2.TransactionID, _Mapping]] = ...) -> None: ...
|
|
18
|
+
|
|
19
|
+
class TransactionGetFastRecordResponse(_message.Message):
|
|
20
|
+
__slots__ = ("header", "transactionRecord")
|
|
21
|
+
HEADER_FIELD_NUMBER: _ClassVar[int]
|
|
22
|
+
TRANSACTIONRECORD_FIELD_NUMBER: _ClassVar[int]
|
|
23
|
+
header: _response_header_pb2.ResponseHeader
|
|
24
|
+
transactionRecord: _transaction_record_pb2.TransactionRecord
|
|
25
|
+
def __init__(self, header: _Optional[_Union[_response_header_pb2.ResponseHeader, _Mapping]] = ..., transactionRecord: _Optional[_Union[_transaction_record_pb2.TransactionRecord, _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_get_fast_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,43 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: transaction_get_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_get_receipt.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from . import transaction_receipt_pb2 as transaction__receipt__pb2
|
|
26
|
+
from . import basic_types_pb2 as basic__types__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\x1dtransaction_get_receipt.proto\x12\x05proto\x1a\x19transaction_receipt.proto\x1a\x11\x62\x61sic_types.proto\x1a\x12query_header.proto\x1a\x15response_header.proto\"\xa8\x01\n\x1aTransactionGetReceiptQuery\x12\"\n\x06header\x18\x01 \x01(\x0b\x32\x12.proto.QueryHeader\x12+\n\rtransactionID\x18\x02 \x01(\x0b\x32\x14.proto.TransactionID\x12\x19\n\x11includeDuplicates\x18\x03 \x01(\x08\x12\x1e\n\x16include_child_receipts\x18\x04 \x01(\x08\"\xf2\x01\n\x1dTransactionGetReceiptResponse\x12%\n\x06header\x18\x01 \x01(\x0b\x32\x15.proto.ResponseHeader\x12*\n\x07receipt\x18\x02 \x01(\x0b\x32\x19.proto.TransactionReceipt\x12?\n\x1c\x64uplicateTransactionReceipts\x18\x04 \x03(\x0b\x32\x19.proto.TransactionReceipt\x12=\n\x1a\x63hild_transaction_receipts\x18\x05 \x03(\x0b\x32\x19.proto.TransactionReceiptB&\n\"com.hederahashgraph.api.proto.javaP\x01\x62\x06proto3')
|
|
32
|
+
|
|
33
|
+
_globals = globals()
|
|
34
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
35
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'transaction_get_receipt_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['_TRANSACTIONGETRECEIPTQUERY']._serialized_start=130
|
|
40
|
+
_globals['_TRANSACTIONGETRECEIPTQUERY']._serialized_end=298
|
|
41
|
+
_globals['_TRANSACTIONGETRECEIPTRESPONSE']._serialized_start=301
|
|
42
|
+
_globals['_TRANSACTIONGETRECEIPTRESPONSE']._serialized_end=543
|
|
43
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import transaction_receipt_pb2 as _transaction_receipt_pb2
|
|
2
|
+
import basic_types_pb2 as _basic_types_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 TransactionGetReceiptQuery(_message.Message):
|
|
13
|
+
__slots__ = ("header", "transactionID", "includeDuplicates", "include_child_receipts")
|
|
14
|
+
HEADER_FIELD_NUMBER: _ClassVar[int]
|
|
15
|
+
TRANSACTIONID_FIELD_NUMBER: _ClassVar[int]
|
|
16
|
+
INCLUDEDUPLICATES_FIELD_NUMBER: _ClassVar[int]
|
|
17
|
+
INCLUDE_CHILD_RECEIPTS_FIELD_NUMBER: _ClassVar[int]
|
|
18
|
+
header: _query_header_pb2.QueryHeader
|
|
19
|
+
transactionID: _basic_types_pb2.TransactionID
|
|
20
|
+
includeDuplicates: bool
|
|
21
|
+
include_child_receipts: bool
|
|
22
|
+
def __init__(self, header: _Optional[_Union[_query_header_pb2.QueryHeader, _Mapping]] = ..., transactionID: _Optional[_Union[_basic_types_pb2.TransactionID, _Mapping]] = ..., includeDuplicates: bool = ..., include_child_receipts: bool = ...) -> None: ...
|
|
23
|
+
|
|
24
|
+
class TransactionGetReceiptResponse(_message.Message):
|
|
25
|
+
__slots__ = ("header", "receipt", "duplicateTransactionReceipts", "child_transaction_receipts")
|
|
26
|
+
HEADER_FIELD_NUMBER: _ClassVar[int]
|
|
27
|
+
RECEIPT_FIELD_NUMBER: _ClassVar[int]
|
|
28
|
+
DUPLICATETRANSACTIONRECEIPTS_FIELD_NUMBER: _ClassVar[int]
|
|
29
|
+
CHILD_TRANSACTION_RECEIPTS_FIELD_NUMBER: _ClassVar[int]
|
|
30
|
+
header: _response_header_pb2.ResponseHeader
|
|
31
|
+
receipt: _transaction_receipt_pb2.TransactionReceipt
|
|
32
|
+
duplicateTransactionReceipts: _containers.RepeatedCompositeFieldContainer[_transaction_receipt_pb2.TransactionReceipt]
|
|
33
|
+
child_transaction_receipts: _containers.RepeatedCompositeFieldContainer[_transaction_receipt_pb2.TransactionReceipt]
|
|
34
|
+
def __init__(self, header: _Optional[_Union[_response_header_pb2.ResponseHeader, _Mapping]] = ..., receipt: _Optional[_Union[_transaction_receipt_pb2.TransactionReceipt, _Mapping]] = ..., duplicateTransactionReceipts: _Optional[_Iterable[_Union[_transaction_receipt_pb2.TransactionReceipt, _Mapping]]] = ..., child_transaction_receipts: _Optional[_Iterable[_Union[_transaction_receipt_pb2.TransactionReceipt, _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_get_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,43 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: transaction_get_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_get_record.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from . import transaction_record_pb2 as transaction__record__pb2
|
|
26
|
+
from . import basic_types_pb2 as basic__types__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\x1ctransaction_get_record.proto\x12\x05proto\x1a\x18transaction_record.proto\x1a\x11\x62\x61sic_types.proto\x1a\x12query_header.proto\x1a\x15response_header.proto\"\xa6\x01\n\x19TransactionGetRecordQuery\x12\"\n\x06header\x18\x01 \x01(\x0b\x32\x12.proto.QueryHeader\x12+\n\rtransactionID\x18\x02 \x01(\x0b\x32\x14.proto.TransactionID\x12\x19\n\x11includeDuplicates\x18\x03 \x01(\x08\x12\x1d\n\x15include_child_records\x18\x04 \x01(\x08\"\xf6\x01\n\x1cTransactionGetRecordResponse\x12%\n\x06header\x18\x01 \x01(\x0b\x32\x15.proto.ResponseHeader\x12\x33\n\x11transactionRecord\x18\x03 \x01(\x0b\x32\x18.proto.TransactionRecord\x12=\n\x1b\x64uplicateTransactionRecords\x18\x04 \x03(\x0b\x32\x18.proto.TransactionRecord\x12;\n\x19\x63hild_transaction_records\x18\x05 \x03(\x0b\x32\x18.proto.TransactionRecordB&\n\"com.hederahashgraph.api.proto.javaP\x01\x62\x06proto3')
|
|
32
|
+
|
|
33
|
+
_globals = globals()
|
|
34
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
35
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'transaction_get_record_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['_TRANSACTIONGETRECORDQUERY']._serialized_start=128
|
|
40
|
+
_globals['_TRANSACTIONGETRECORDQUERY']._serialized_end=294
|
|
41
|
+
_globals['_TRANSACTIONGETRECORDRESPONSE']._serialized_start=297
|
|
42
|
+
_globals['_TRANSACTIONGETRECORDRESPONSE']._serialized_end=543
|
|
43
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import transaction_record_pb2 as _transaction_record_pb2
|
|
2
|
+
import basic_types_pb2 as _basic_types_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 TransactionGetRecordQuery(_message.Message):
|
|
13
|
+
__slots__ = ("header", "transactionID", "includeDuplicates", "include_child_records")
|
|
14
|
+
HEADER_FIELD_NUMBER: _ClassVar[int]
|
|
15
|
+
TRANSACTIONID_FIELD_NUMBER: _ClassVar[int]
|
|
16
|
+
INCLUDEDUPLICATES_FIELD_NUMBER: _ClassVar[int]
|
|
17
|
+
INCLUDE_CHILD_RECORDS_FIELD_NUMBER: _ClassVar[int]
|
|
18
|
+
header: _query_header_pb2.QueryHeader
|
|
19
|
+
transactionID: _basic_types_pb2.TransactionID
|
|
20
|
+
includeDuplicates: bool
|
|
21
|
+
include_child_records: bool
|
|
22
|
+
def __init__(self, header: _Optional[_Union[_query_header_pb2.QueryHeader, _Mapping]] = ..., transactionID: _Optional[_Union[_basic_types_pb2.TransactionID, _Mapping]] = ..., includeDuplicates: bool = ..., include_child_records: bool = ...) -> None: ...
|
|
23
|
+
|
|
24
|
+
class TransactionGetRecordResponse(_message.Message):
|
|
25
|
+
__slots__ = ("header", "transactionRecord", "duplicateTransactionRecords", "child_transaction_records")
|
|
26
|
+
HEADER_FIELD_NUMBER: _ClassVar[int]
|
|
27
|
+
TRANSACTIONRECORD_FIELD_NUMBER: _ClassVar[int]
|
|
28
|
+
DUPLICATETRANSACTIONRECORDS_FIELD_NUMBER: _ClassVar[int]
|
|
29
|
+
CHILD_TRANSACTION_RECORDS_FIELD_NUMBER: _ClassVar[int]
|
|
30
|
+
header: _response_header_pb2.ResponseHeader
|
|
31
|
+
transactionRecord: _transaction_record_pb2.TransactionRecord
|
|
32
|
+
duplicateTransactionRecords: _containers.RepeatedCompositeFieldContainer[_transaction_record_pb2.TransactionRecord]
|
|
33
|
+
child_transaction_records: _containers.RepeatedCompositeFieldContainer[_transaction_record_pb2.TransactionRecord]
|
|
34
|
+
def __init__(self, header: _Optional[_Union[_response_header_pb2.ResponseHeader, _Mapping]] = ..., transactionRecord: _Optional[_Union[_transaction_record_pb2.TransactionRecord, _Mapping]] = ..., duplicateTransactionRecords: _Optional[_Iterable[_Union[_transaction_record_pb2.TransactionRecord, _Mapping]]] = ..., child_transaction_records: _Optional[_Iterable[_Union[_transaction_record_pb2.TransactionRecord, _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_get_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
|
+
)
|