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,38 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: token_unfreeze_account.proto
|
|
5
|
+
# Protobuf Python Version: 5.29.0
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
29,
|
|
16
|
+
0,
|
|
17
|
+
'',
|
|
18
|
+
'token_unfreeze_account.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from . import basic_types_pb2 as basic__types__pb2
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x1ctoken_unfreeze_account.proto\x12\x05proto\x1a\x11\x62\x61sic_types.proto\"g\n#TokenUnfreezeAccountTransactionBody\x12\x1d\n\x05token\x18\x01 \x01(\x0b\x32\x0e.proto.TokenID\x12!\n\x07\x61\x63\x63ount\x18\x02 \x01(\x0b\x32\x10.proto.AccountIDB&\n\"com.hederahashgraph.api.proto.javaP\x01\x62\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'token_unfreeze_account_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
35
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n\"com.hederahashgraph.api.proto.javaP\001'
|
|
36
|
+
_globals['_TOKENUNFREEZEACCOUNTTRANSACTIONBODY']._serialized_start=58
|
|
37
|
+
_globals['_TOKENUNFREEZEACCOUNTTRANSACTIONBODY']._serialized_end=161
|
|
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 TokenUnfreezeAccountTransactionBody(_message.Message):
|
|
9
|
+
__slots__ = ("token", "account")
|
|
10
|
+
TOKEN_FIELD_NUMBER: _ClassVar[int]
|
|
11
|
+
ACCOUNT_FIELD_NUMBER: _ClassVar[int]
|
|
12
|
+
token: _basic_types_pb2.TokenID
|
|
13
|
+
account: _basic_types_pb2.AccountID
|
|
14
|
+
def __init__(self, token: _Optional[_Union[_basic_types_pb2.TokenID, _Mapping]] = ..., account: _Optional[_Union[_basic_types_pb2.AccountID, _Mapping]] = ...) -> None: ...
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
|
2
|
+
"""Client and server classes corresponding to protobuf-defined services."""
|
|
3
|
+
import grpc
|
|
4
|
+
import warnings
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
GRPC_GENERATED_VERSION = '1.70.0'
|
|
8
|
+
GRPC_VERSION = grpc.__version__
|
|
9
|
+
_version_not_supported = False
|
|
10
|
+
|
|
11
|
+
try:
|
|
12
|
+
from grpc._utilities import first_version_is_lower
|
|
13
|
+
_version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
|
|
14
|
+
except ImportError:
|
|
15
|
+
_version_not_supported = True
|
|
16
|
+
|
|
17
|
+
if _version_not_supported:
|
|
18
|
+
raise RuntimeError(
|
|
19
|
+
f'The grpc package installed is at version {GRPC_VERSION},'
|
|
20
|
+
+ f' but the generated code in token_unfreeze_account_pb2_grpc.py depends on'
|
|
21
|
+
+ f' grpcio>={GRPC_GENERATED_VERSION}.'
|
|
22
|
+
+ f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
|
|
23
|
+
+ f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
|
|
24
|
+
)
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: token_unpause.proto
|
|
5
|
+
# Protobuf Python Version: 5.29.0
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
29,
|
|
16
|
+
0,
|
|
17
|
+
'',
|
|
18
|
+
'token_unpause.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\x13token_unpause.proto\x12\x05proto\x1a\x11\x62\x61sic_types.proto\"<\n\x1bTokenUnpauseTransactionBody\x12\x1d\n\x05token\x18\x01 \x01(\x0b\x32\x0e.proto.TokenIDB&\n\"com.hederahashgraph.api.proto.javaP\x01\x62\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'token_unpause_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['_TOKENUNPAUSETRANSACTIONBODY']._serialized_start=49
|
|
37
|
+
_globals['_TOKENUNPAUSETRANSACTIONBODY']._serialized_end=109
|
|
38
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import basic_types_pb2 as _basic_types_pb2
|
|
2
|
+
from google.protobuf import descriptor as _descriptor
|
|
3
|
+
from google.protobuf import message as _message
|
|
4
|
+
from typing import ClassVar as _ClassVar, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
5
|
+
|
|
6
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
7
|
+
|
|
8
|
+
class TokenUnpauseTransactionBody(_message.Message):
|
|
9
|
+
__slots__ = ("token",)
|
|
10
|
+
TOKEN_FIELD_NUMBER: _ClassVar[int]
|
|
11
|
+
token: _basic_types_pb2.TokenID
|
|
12
|
+
def __init__(self, token: _Optional[_Union[_basic_types_pb2.TokenID, _Mapping]] = ...) -> None: ...
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
|
2
|
+
"""Client and server classes corresponding to protobuf-defined services."""
|
|
3
|
+
import grpc
|
|
4
|
+
import warnings
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
GRPC_GENERATED_VERSION = '1.70.0'
|
|
8
|
+
GRPC_VERSION = grpc.__version__
|
|
9
|
+
_version_not_supported = False
|
|
10
|
+
|
|
11
|
+
try:
|
|
12
|
+
from grpc._utilities import first_version_is_lower
|
|
13
|
+
_version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
|
|
14
|
+
except ImportError:
|
|
15
|
+
_version_not_supported = True
|
|
16
|
+
|
|
17
|
+
if _version_not_supported:
|
|
18
|
+
raise RuntimeError(
|
|
19
|
+
f'The grpc package installed is at version {GRPC_VERSION},'
|
|
20
|
+
+ f' but the generated code in token_unpause_pb2_grpc.py depends on'
|
|
21
|
+
+ f' grpcio>={GRPC_GENERATED_VERSION}.'
|
|
22
|
+
+ f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
|
|
23
|
+
+ f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
|
|
24
|
+
)
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: token_update_nfts.proto
|
|
5
|
+
# Protobuf Python Version: 5.29.0
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
29,
|
|
16
|
+
0,
|
|
17
|
+
'',
|
|
18
|
+
'token_update_nfts.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 google.protobuf import wrappers_pb2 as google_dot_protobuf_dot_wrappers__pb2
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x17token_update_nfts.proto\x12\x05proto\x1a\x11\x62\x61sic_types.proto\x1a\x1egoogle/protobuf/wrappers.proto\"\x86\x01\n\x1eTokenUpdateNftsTransactionBody\x12\x1d\n\x05token\x18\x01 \x01(\x0b\x32\x0e.proto.TokenID\x12\x16\n\x0eserial_numbers\x18\x02 \x03(\x03\x12-\n\x08metadata\x18\x03 \x01(\x0b\x32\x1b.google.protobuf.BytesValueB&\n\"com.hederahashgraph.api.proto.javaP\x01\x62\x06proto3')
|
|
30
|
+
|
|
31
|
+
_globals = globals()
|
|
32
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
33
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'token_update_nfts_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['_TOKENUPDATENFTSTRANSACTIONBODY']._serialized_start=86
|
|
38
|
+
_globals['_TOKENUPDATENFTSTRANSACTIONBODY']._serialized_end=220
|
|
39
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import basic_types_pb2 as _basic_types_pb2
|
|
2
|
+
from google.protobuf import wrappers_pb2 as _wrappers_pb2
|
|
3
|
+
from google.protobuf.internal import containers as _containers
|
|
4
|
+
from google.protobuf import descriptor as _descriptor
|
|
5
|
+
from google.protobuf import message as _message
|
|
6
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
7
|
+
|
|
8
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
9
|
+
|
|
10
|
+
class TokenUpdateNftsTransactionBody(_message.Message):
|
|
11
|
+
__slots__ = ("token", "serial_numbers", "metadata")
|
|
12
|
+
TOKEN_FIELD_NUMBER: _ClassVar[int]
|
|
13
|
+
SERIAL_NUMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
14
|
+
METADATA_FIELD_NUMBER: _ClassVar[int]
|
|
15
|
+
token: _basic_types_pb2.TokenID
|
|
16
|
+
serial_numbers: _containers.RepeatedScalarFieldContainer[int]
|
|
17
|
+
metadata: _wrappers_pb2.BytesValue
|
|
18
|
+
def __init__(self, token: _Optional[_Union[_basic_types_pb2.TokenID, _Mapping]] = ..., serial_numbers: _Optional[_Iterable[int]] = ..., metadata: _Optional[_Union[_wrappers_pb2.BytesValue, _Mapping]] = ...) -> None: ...
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
|
2
|
+
"""Client and server classes corresponding to protobuf-defined services."""
|
|
3
|
+
import grpc
|
|
4
|
+
import warnings
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
GRPC_GENERATED_VERSION = '1.70.0'
|
|
8
|
+
GRPC_VERSION = grpc.__version__
|
|
9
|
+
_version_not_supported = False
|
|
10
|
+
|
|
11
|
+
try:
|
|
12
|
+
from grpc._utilities import first_version_is_lower
|
|
13
|
+
_version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
|
|
14
|
+
except ImportError:
|
|
15
|
+
_version_not_supported = True
|
|
16
|
+
|
|
17
|
+
if _version_not_supported:
|
|
18
|
+
raise RuntimeError(
|
|
19
|
+
f'The grpc package installed is at version {GRPC_VERSION},'
|
|
20
|
+
+ f' but the generated code in token_update_nfts_pb2_grpc.py depends on'
|
|
21
|
+
+ f' grpcio>={GRPC_GENERATED_VERSION}.'
|
|
22
|
+
+ f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
|
|
23
|
+
+ f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
|
|
24
|
+
)
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: token_update.proto
|
|
5
|
+
# Protobuf Python Version: 5.29.0
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
29,
|
|
16
|
+
0,
|
|
17
|
+
'',
|
|
18
|
+
'token_update.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from . import basic_types_pb2 as basic__types__pb2
|
|
26
|
+
from . import duration_pb2 as duration__pb2
|
|
27
|
+
from . import timestamp_pb2 as timestamp__pb2
|
|
28
|
+
from google.protobuf import wrappers_pb2 as google_dot_protobuf_dot_wrappers__pb2
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x12token_update.proto\x12\x05proto\x1a\x11\x62\x61sic_types.proto\x1a\x0e\x64uration.proto\x1a\x0ftimestamp.proto\x1a\x1egoogle/protobuf/wrappers.proto\"\x86\x05\n\x1aTokenUpdateTransactionBody\x12\x1d\n\x05token\x18\x01 \x01(\x0b\x32\x0e.proto.TokenID\x12\x0e\n\x06symbol\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\"\n\x08treasury\x18\x04 \x01(\x0b\x32\x10.proto.AccountID\x12\x1c\n\x08\x61\x64minKey\x18\x05 \x01(\x0b\x32\n.proto.Key\x12\x1a\n\x06kycKey\x18\x06 \x01(\x0b\x32\n.proto.Key\x12\x1d\n\tfreezeKey\x18\x07 \x01(\x0b\x32\n.proto.Key\x12\x1b\n\x07wipeKey\x18\x08 \x01(\x0b\x32\n.proto.Key\x12\x1d\n\tsupplyKey\x18\t \x01(\x0b\x32\n.proto.Key\x12*\n\x10\x61utoRenewAccount\x18\n \x01(\x0b\x32\x10.proto.AccountID\x12(\n\x0f\x61utoRenewPeriod\x18\x0b \x01(\x0b\x32\x0f.proto.Duration\x12 \n\x06\x65xpiry\x18\x0c \x01(\x0b\x32\x10.proto.Timestamp\x12*\n\x04memo\x18\r \x01(\x0b\x32\x1c.google.protobuf.StringValue\x12$\n\x10\x66\x65\x65_schedule_key\x18\x0e \x01(\x0b\x32\n.proto.Key\x12\x1d\n\tpause_key\x18\x0f \x01(\x0b\x32\n.proto.Key\x12-\n\x08metadata\x18\x10 \x01(\x0b\x32\x1b.google.protobuf.BytesValue\x12 \n\x0cmetadata_key\x18\x11 \x01(\x0b\x32\n.proto.Key\x12\x38\n\x15key_verification_mode\x18\x12 \x01(\x0e\x32\x19.proto.TokenKeyValidationB&\n\"com.hederahashgraph.api.proto.javaP\x01\x62\x06proto3')
|
|
32
|
+
|
|
33
|
+
_globals = globals()
|
|
34
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
35
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'token_update_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['_TOKENUPDATETRANSACTIONBODY']._serialized_start=114
|
|
40
|
+
_globals['_TOKENUPDATETRANSACTIONBODY']._serialized_end=760
|
|
41
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import basic_types_pb2 as _basic_types_pb2
|
|
2
|
+
import duration_pb2 as _duration_pb2
|
|
3
|
+
import timestamp_pb2 as _timestamp_pb2
|
|
4
|
+
from google.protobuf import wrappers_pb2 as _wrappers_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 TokenUpdateTransactionBody(_message.Message):
|
|
12
|
+
__slots__ = ("token", "symbol", "name", "treasury", "adminKey", "kycKey", "freezeKey", "wipeKey", "supplyKey", "autoRenewAccount", "autoRenewPeriod", "expiry", "memo", "fee_schedule_key", "pause_key", "metadata", "metadata_key", "key_verification_mode")
|
|
13
|
+
TOKEN_FIELD_NUMBER: _ClassVar[int]
|
|
14
|
+
SYMBOL_FIELD_NUMBER: _ClassVar[int]
|
|
15
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
16
|
+
TREASURY_FIELD_NUMBER: _ClassVar[int]
|
|
17
|
+
ADMINKEY_FIELD_NUMBER: _ClassVar[int]
|
|
18
|
+
KYCKEY_FIELD_NUMBER: _ClassVar[int]
|
|
19
|
+
FREEZEKEY_FIELD_NUMBER: _ClassVar[int]
|
|
20
|
+
WIPEKEY_FIELD_NUMBER: _ClassVar[int]
|
|
21
|
+
SUPPLYKEY_FIELD_NUMBER: _ClassVar[int]
|
|
22
|
+
AUTORENEWACCOUNT_FIELD_NUMBER: _ClassVar[int]
|
|
23
|
+
AUTORENEWPERIOD_FIELD_NUMBER: _ClassVar[int]
|
|
24
|
+
EXPIRY_FIELD_NUMBER: _ClassVar[int]
|
|
25
|
+
MEMO_FIELD_NUMBER: _ClassVar[int]
|
|
26
|
+
FEE_SCHEDULE_KEY_FIELD_NUMBER: _ClassVar[int]
|
|
27
|
+
PAUSE_KEY_FIELD_NUMBER: _ClassVar[int]
|
|
28
|
+
METADATA_FIELD_NUMBER: _ClassVar[int]
|
|
29
|
+
METADATA_KEY_FIELD_NUMBER: _ClassVar[int]
|
|
30
|
+
KEY_VERIFICATION_MODE_FIELD_NUMBER: _ClassVar[int]
|
|
31
|
+
token: _basic_types_pb2.TokenID
|
|
32
|
+
symbol: str
|
|
33
|
+
name: str
|
|
34
|
+
treasury: _basic_types_pb2.AccountID
|
|
35
|
+
adminKey: _basic_types_pb2.Key
|
|
36
|
+
kycKey: _basic_types_pb2.Key
|
|
37
|
+
freezeKey: _basic_types_pb2.Key
|
|
38
|
+
wipeKey: _basic_types_pb2.Key
|
|
39
|
+
supplyKey: _basic_types_pb2.Key
|
|
40
|
+
autoRenewAccount: _basic_types_pb2.AccountID
|
|
41
|
+
autoRenewPeriod: _duration_pb2.Duration
|
|
42
|
+
expiry: _timestamp_pb2.Timestamp
|
|
43
|
+
memo: _wrappers_pb2.StringValue
|
|
44
|
+
fee_schedule_key: _basic_types_pb2.Key
|
|
45
|
+
pause_key: _basic_types_pb2.Key
|
|
46
|
+
metadata: _wrappers_pb2.BytesValue
|
|
47
|
+
metadata_key: _basic_types_pb2.Key
|
|
48
|
+
key_verification_mode: _basic_types_pb2.TokenKeyValidation
|
|
49
|
+
def __init__(self, token: _Optional[_Union[_basic_types_pb2.TokenID, _Mapping]] = ..., symbol: _Optional[str] = ..., name: _Optional[str] = ..., treasury: _Optional[_Union[_basic_types_pb2.AccountID, _Mapping]] = ..., adminKey: _Optional[_Union[_basic_types_pb2.Key, _Mapping]] = ..., kycKey: _Optional[_Union[_basic_types_pb2.Key, _Mapping]] = ..., freezeKey: _Optional[_Union[_basic_types_pb2.Key, _Mapping]] = ..., wipeKey: _Optional[_Union[_basic_types_pb2.Key, _Mapping]] = ..., supplyKey: _Optional[_Union[_basic_types_pb2.Key, _Mapping]] = ..., autoRenewAccount: _Optional[_Union[_basic_types_pb2.AccountID, _Mapping]] = ..., autoRenewPeriod: _Optional[_Union[_duration_pb2.Duration, _Mapping]] = ..., expiry: _Optional[_Union[_timestamp_pb2.Timestamp, _Mapping]] = ..., memo: _Optional[_Union[_wrappers_pb2.StringValue, _Mapping]] = ..., fee_schedule_key: _Optional[_Union[_basic_types_pb2.Key, _Mapping]] = ..., pause_key: _Optional[_Union[_basic_types_pb2.Key, _Mapping]] = ..., metadata: _Optional[_Union[_wrappers_pb2.BytesValue, _Mapping]] = ..., metadata_key: _Optional[_Union[_basic_types_pb2.Key, _Mapping]] = ..., key_verification_mode: _Optional[_Union[_basic_types_pb2.TokenKeyValidation, str]] = ...) -> None: ...
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
|
2
|
+
"""Client and server classes corresponding to protobuf-defined services."""
|
|
3
|
+
import grpc
|
|
4
|
+
import warnings
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
GRPC_GENERATED_VERSION = '1.70.0'
|
|
8
|
+
GRPC_VERSION = grpc.__version__
|
|
9
|
+
_version_not_supported = False
|
|
10
|
+
|
|
11
|
+
try:
|
|
12
|
+
from grpc._utilities import first_version_is_lower
|
|
13
|
+
_version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
|
|
14
|
+
except ImportError:
|
|
15
|
+
_version_not_supported = True
|
|
16
|
+
|
|
17
|
+
if _version_not_supported:
|
|
18
|
+
raise RuntimeError(
|
|
19
|
+
f'The grpc package installed is at version {GRPC_VERSION},'
|
|
20
|
+
+ f' but the generated code in token_update_pb2_grpc.py depends on'
|
|
21
|
+
+ f' grpcio>={GRPC_GENERATED_VERSION}.'
|
|
22
|
+
+ f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
|
|
23
|
+
+ f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
|
|
24
|
+
)
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: token_wipe_account.proto
|
|
5
|
+
# Protobuf Python Version: 5.29.0
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
29,
|
|
16
|
+
0,
|
|
17
|
+
'',
|
|
18
|
+
'token_wipe_account.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from . import basic_types_pb2 as basic__types__pb2
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x18token_wipe_account.proto\x12\x05proto\x1a\x11\x62\x61sic_types.proto\"\x8a\x01\n\x1fTokenWipeAccountTransactionBody\x12\x1d\n\x05token\x18\x01 \x01(\x0b\x32\x0e.proto.TokenID\x12!\n\x07\x61\x63\x63ount\x18\x02 \x01(\x0b\x32\x10.proto.AccountID\x12\x0e\n\x06\x61mount\x18\x03 \x01(\x04\x12\x15\n\rserialNumbers\x18\x04 \x03(\x03\x42&\n\"com.hederahashgraph.api.proto.javaP\x01\x62\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'token_wipe_account_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
35
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n\"com.hederahashgraph.api.proto.javaP\001'
|
|
36
|
+
_globals['_TOKENWIPEACCOUNTTRANSACTIONBODY']._serialized_start=55
|
|
37
|
+
_globals['_TOKENWIPEACCOUNTTRANSACTIONBODY']._serialized_end=193
|
|
38
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import basic_types_pb2 as _basic_types_pb2
|
|
2
|
+
from google.protobuf.internal import containers as _containers
|
|
3
|
+
from google.protobuf import descriptor as _descriptor
|
|
4
|
+
from google.protobuf import message as _message
|
|
5
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Mapping as _Mapping, Optional as _Optional, Union as _Union
|
|
6
|
+
|
|
7
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
8
|
+
|
|
9
|
+
class TokenWipeAccountTransactionBody(_message.Message):
|
|
10
|
+
__slots__ = ("token", "account", "amount", "serialNumbers")
|
|
11
|
+
TOKEN_FIELD_NUMBER: _ClassVar[int]
|
|
12
|
+
ACCOUNT_FIELD_NUMBER: _ClassVar[int]
|
|
13
|
+
AMOUNT_FIELD_NUMBER: _ClassVar[int]
|
|
14
|
+
SERIALNUMBERS_FIELD_NUMBER: _ClassVar[int]
|
|
15
|
+
token: _basic_types_pb2.TokenID
|
|
16
|
+
account: _basic_types_pb2.AccountID
|
|
17
|
+
amount: int
|
|
18
|
+
serialNumbers: _containers.RepeatedScalarFieldContainer[int]
|
|
19
|
+
def __init__(self, token: _Optional[_Union[_basic_types_pb2.TokenID, _Mapping]] = ..., account: _Optional[_Union[_basic_types_pb2.AccountID, _Mapping]] = ..., amount: _Optional[int] = ..., serialNumbers: _Optional[_Iterable[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 token_wipe_account_pb2_grpc.py depends on'
|
|
21
|
+
+ f' grpcio>={GRPC_GENERATED_VERSION}.'
|
|
22
|
+
+ f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
|
|
23
|
+
+ f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
|
|
24
|
+
)
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: transaction_body.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_body.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from . import system_delete_pb2 as system__delete__pb2
|
|
26
|
+
from . import system_undelete_pb2 as system__undelete__pb2
|
|
27
|
+
from . import freeze_pb2 as freeze__pb2
|
|
28
|
+
from . import contract_call_pb2 as contract__call__pb2
|
|
29
|
+
from . import contract_create_pb2 as contract__create__pb2
|
|
30
|
+
from . import contract_update_pb2 as contract__update__pb2
|
|
31
|
+
from . import crypto_add_live_hash_pb2 as crypto__add__live__hash__pb2
|
|
32
|
+
from . import crypto_create_pb2 as crypto__create__pb2
|
|
33
|
+
from . import crypto_delete_pb2 as crypto__delete__pb2
|
|
34
|
+
from . import crypto_delete_live_hash_pb2 as crypto__delete__live__hash__pb2
|
|
35
|
+
from . import crypto_transfer_pb2 as crypto__transfer__pb2
|
|
36
|
+
from . import crypto_update_pb2 as crypto__update__pb2
|
|
37
|
+
from . import crypto_approve_allowance_pb2 as crypto__approve__allowance__pb2
|
|
38
|
+
from . import crypto_delete_allowance_pb2 as crypto__delete__allowance__pb2
|
|
39
|
+
from . import ethereum_transaction_pb2 as ethereum__transaction__pb2
|
|
40
|
+
from . import file_append_pb2 as file__append__pb2
|
|
41
|
+
from . import file_create_pb2 as file__create__pb2
|
|
42
|
+
from . import file_delete_pb2 as file__delete__pb2
|
|
43
|
+
from . import file_update_pb2 as file__update__pb2
|
|
44
|
+
from . import duration_pb2 as duration__pb2
|
|
45
|
+
from . import basic_types_pb2 as basic__types__pb2
|
|
46
|
+
from . import contract_delete_pb2 as contract__delete__pb2
|
|
47
|
+
from . import consensus_create_topic_pb2 as consensus__create__topic__pb2
|
|
48
|
+
from . import consensus_update_topic_pb2 as consensus__update__topic__pb2
|
|
49
|
+
from . import consensus_delete_topic_pb2 as consensus__delete__topic__pb2
|
|
50
|
+
from . import consensus_submit_message_pb2 as consensus__submit__message__pb2
|
|
51
|
+
from . import unchecked_submit_pb2 as unchecked__submit__pb2
|
|
52
|
+
from . import token_create_pb2 as token__create__pb2
|
|
53
|
+
from . import token_freeze_account_pb2 as token__freeze__account__pb2
|
|
54
|
+
from . import token_unfreeze_account_pb2 as token__unfreeze__account__pb2
|
|
55
|
+
from . import token_grant_kyc_pb2 as token__grant__kyc__pb2
|
|
56
|
+
from . import token_revoke_kyc_pb2 as token__revoke__kyc__pb2
|
|
57
|
+
from . import token_delete_pb2 as token__delete__pb2
|
|
58
|
+
from . import token_update_pb2 as token__update__pb2
|
|
59
|
+
from . import token_mint_pb2 as token__mint__pb2
|
|
60
|
+
from . import token_burn_pb2 as token__burn__pb2
|
|
61
|
+
from . import token_wipe_account_pb2 as token__wipe__account__pb2
|
|
62
|
+
from . import token_associate_pb2 as token__associate__pb2
|
|
63
|
+
from . import token_dissociate_pb2 as token__dissociate__pb2
|
|
64
|
+
from . import token_fee_schedule_update_pb2 as token__fee__schedule__update__pb2
|
|
65
|
+
from . import token_pause_pb2 as token__pause__pb2
|
|
66
|
+
from . import token_unpause_pb2 as token__unpause__pb2
|
|
67
|
+
from . import token_update_nfts_pb2 as token__update__nfts__pb2
|
|
68
|
+
from . import token_reject_pb2 as token__reject__pb2
|
|
69
|
+
from . import token_airdrop_pb2 as token__airdrop__pb2
|
|
70
|
+
from . import token_cancel_airdrop_pb2 as token__cancel__airdrop__pb2
|
|
71
|
+
from . import token_claim_airdrop_pb2 as token__claim__airdrop__pb2
|
|
72
|
+
from . import schedule_create_pb2 as schedule__create__pb2
|
|
73
|
+
from . import schedule_delete_pb2 as schedule__delete__pb2
|
|
74
|
+
from . import schedule_sign_pb2 as schedule__sign__pb2
|
|
75
|
+
from . import node_stake_update_pb2 as node__stake__update__pb2
|
|
76
|
+
from . import util_prng_pb2 as util__prng__pb2
|
|
77
|
+
from . import node_create_pb2 as node__create__pb2
|
|
78
|
+
from . import node_update_pb2 as node__update__pb2
|
|
79
|
+
from . import node_delete_pb2 as node__delete__pb2
|
|
80
|
+
from .auxiliary.tss import tss_message_pb2 as auxiliary_dot_tss_dot_tss__message__pb2
|
|
81
|
+
from .auxiliary.tss import tss_vote_pb2 as auxiliary_dot_tss_dot_tss__vote__pb2
|
|
82
|
+
from .auxiliary.tss import tss_share_signature_pb2 as auxiliary_dot_tss_dot_tss__share__signature__pb2
|
|
83
|
+
from .auxiliary.tss import tss_encryption_key_pb2 as auxiliary_dot_tss_dot_tss__encryption__key__pb2
|
|
84
|
+
from .event import state_signature_transaction_pb2 as event_dot_state__signature__transaction__pb2
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x16transaction_body.proto\x12\x05proto\x1a\x13system_delete.proto\x1a\x15system_undelete.proto\x1a\x0c\x66reeze.proto\x1a\x13\x63ontract_call.proto\x1a\x15\x63ontract_create.proto\x1a\x15\x63ontract_update.proto\x1a\x1a\x63rypto_add_live_hash.proto\x1a\x13\x63rypto_create.proto\x1a\x13\x63rypto_delete.proto\x1a\x1d\x63rypto_delete_live_hash.proto\x1a\x15\x63rypto_transfer.proto\x1a\x13\x63rypto_update.proto\x1a\x1e\x63rypto_approve_allowance.proto\x1a\x1d\x63rypto_delete_allowance.proto\x1a\x1a\x65thereum_transaction.proto\x1a\x11\x66ile_append.proto\x1a\x11\x66ile_create.proto\x1a\x11\x66ile_delete.proto\x1a\x11\x66ile_update.proto\x1a\x0e\x64uration.proto\x1a\x11\x62\x61sic_types.proto\x1a\x15\x63ontract_delete.proto\x1a\x1c\x63onsensus_create_topic.proto\x1a\x1c\x63onsensus_update_topic.proto\x1a\x1c\x63onsensus_delete_topic.proto\x1a\x1e\x63onsensus_submit_message.proto\x1a\x16unchecked_submit.proto\x1a\x12token_create.proto\x1a\x1atoken_freeze_account.proto\x1a\x1ctoken_unfreeze_account.proto\x1a\x15token_grant_kyc.proto\x1a\x16token_revoke_kyc.proto\x1a\x12token_delete.proto\x1a\x12token_update.proto\x1a\x10token_mint.proto\x1a\x10token_burn.proto\x1a\x18token_wipe_account.proto\x1a\x15token_associate.proto\x1a\x16token_dissociate.proto\x1a\x1ftoken_fee_schedule_update.proto\x1a\x11token_pause.proto\x1a\x13token_unpause.proto\x1a\x17token_update_nfts.proto\x1a\x12token_reject.proto\x1a\x13token_airdrop.proto\x1a\x1atoken_cancel_airdrop.proto\x1a\x19token_claim_airdrop.proto\x1a\x15schedule_create.proto\x1a\x15schedule_delete.proto\x1a\x13schedule_sign.proto\x1a\x17node_stake_update.proto\x1a\x0futil_prng.proto\x1a\x11node_create.proto\x1a\x11node_update.proto\x1a\x11node_delete.proto\x1a\x1f\x61uxiliary/tss/tss_message.proto\x1a\x1c\x61uxiliary/tss/tss_vote.proto\x1a\'auxiliary/tss/tss_share_signature.proto\x1a&auxiliary/tss/tss_encryption_key.proto\x1a\'event/state_signature_transaction.proto\"\xda \n\x0fTransactionBody\x12+\n\rtransactionID\x18\x01 \x01(\x0b\x32\x14.proto.TransactionID\x12\'\n\rnodeAccountID\x18\x02 \x01(\x0b\x32\x10.proto.AccountID\x12\x16\n\x0etransactionFee\x18\x03 \x01(\x04\x12\x31\n\x18transactionValidDuration\x18\x04 \x01(\x0b\x32\x0f.proto.Duration\x12\x1a\n\x0egenerateRecord\x18\x05 \x01(\x08\x42\x02\x18\x01\x12\x0c\n\x04memo\x18\x06 \x01(\t\x12:\n\x0c\x63ontractCall\x18\x07 \x01(\x0b\x32\".proto.ContractCallTransactionBodyH\x00\x12\x46\n\x16\x63ontractCreateInstance\x18\x08 \x01(\x0b\x32$.proto.ContractCreateTransactionBodyH\x00\x12\x46\n\x16\x63ontractUpdateInstance\x18\t \x01(\x0b\x32$.proto.ContractUpdateTransactionBodyH\x00\x12\x44\n\x11\x63ryptoAddLiveHash\x18\n \x01(\x0b\x32\'.proto.CryptoAddLiveHashTransactionBodyH\x00\x12\x41\n\x13\x63ryptoCreateAccount\x18\x0b \x01(\x0b\x32\".proto.CryptoCreateTransactionBodyH\x00\x12:\n\x0c\x63ryptoDelete\x18\x0c \x01(\x0b\x32\".proto.CryptoDeleteTransactionBodyH\x00\x12J\n\x14\x63ryptoDeleteLiveHash\x18\r \x01(\x0b\x32*.proto.CryptoDeleteLiveHashTransactionBodyH\x00\x12>\n\x0e\x63ryptoTransfer\x18\x0e \x01(\x0b\x32$.proto.CryptoTransferTransactionBodyH\x00\x12\x41\n\x13\x63ryptoUpdateAccount\x18\x0f \x01(\x0b\x32\".proto.CryptoUpdateTransactionBodyH\x00\x12\x36\n\nfileAppend\x18\x10 \x01(\x0b\x32 .proto.FileAppendTransactionBodyH\x00\x12\x36\n\nfileCreate\x18\x11 \x01(\x0b\x32 .proto.FileCreateTransactionBodyH\x00\x12\x36\n\nfileDelete\x18\x12 \x01(\x0b\x32 .proto.FileDeleteTransactionBodyH\x00\x12\x36\n\nfileUpdate\x18\x13 \x01(\x0b\x32 .proto.FileUpdateTransactionBodyH\x00\x12:\n\x0csystemDelete\x18\x14 \x01(\x0b\x32\".proto.SystemDeleteTransactionBodyH\x00\x12>\n\x0esystemUndelete\x18\x15 \x01(\x0b\x32$.proto.SystemUndeleteTransactionBodyH\x00\x12\x46\n\x16\x63ontractDeleteInstance\x18\x16 \x01(\x0b\x32$.proto.ContractDeleteTransactionBodyH\x00\x12.\n\x06\x66reeze\x18\x17 \x01(\x0b\x32\x1c.proto.FreezeTransactionBodyH\x00\x12J\n\x14\x63onsensusCreateTopic\x18\x18 \x01(\x0b\x32*.proto.ConsensusCreateTopicTransactionBodyH\x00\x12J\n\x14\x63onsensusUpdateTopic\x18\x19 \x01(\x0b\x32*.proto.ConsensusUpdateTopicTransactionBodyH\x00\x12J\n\x14\x63onsensusDeleteTopic\x18\x1a \x01(\x0b\x32*.proto.ConsensusDeleteTopicTransactionBodyH\x00\x12N\n\x16\x63onsensusSubmitMessage\x18\x1b \x01(\x0b\x32,.proto.ConsensusSubmitMessageTransactionBodyH\x00\x12\x35\n\x0funcheckedSubmit\x18\x1c \x01(\x0b\x32\x1a.proto.UncheckedSubmitBodyH\x00\x12:\n\rtokenCreation\x18\x1d \x01(\x0b\x32!.proto.TokenCreateTransactionBodyH\x00\x12?\n\x0btokenFreeze\x18\x1f \x01(\x0b\x32(.proto.TokenFreezeAccountTransactionBodyH\x00\x12\x43\n\rtokenUnfreeze\x18 \x01(\x0b\x32*.proto.TokenUnfreezeAccountTransactionBodyH\x00\x12<\n\rtokenGrantKyc\x18! \x01(\x0b\x32#.proto.TokenGrantKycTransactionBodyH\x00\x12>\n\x0etokenRevokeKyc\x18\" \x01(\x0b\x32$.proto.TokenRevokeKycTransactionBodyH\x00\x12:\n\rtokenDeletion\x18# \x01(\x0b\x32!.proto.TokenDeleteTransactionBodyH\x00\x12\x38\n\x0btokenUpdate\x18$ \x01(\x0b\x32!.proto.TokenUpdateTransactionBodyH\x00\x12\x34\n\ttokenMint\x18% \x01(\x0b\x32\x1f.proto.TokenMintTransactionBodyH\x00\x12\x34\n\ttokenBurn\x18& \x01(\x0b\x32\x1f.proto.TokenBurnTransactionBodyH\x00\x12;\n\ttokenWipe\x18\' \x01(\x0b\x32&.proto.TokenWipeAccountTransactionBodyH\x00\x12>\n\x0etokenAssociate\x18( \x01(\x0b\x32$.proto.TokenAssociateTransactionBodyH\x00\x12@\n\x0ftokenDissociate\x18) \x01(\x0b\x32%.proto.TokenDissociateTransactionBodyH\x00\x12>\n\x0escheduleCreate\x18* \x01(\x0b\x32$.proto.ScheduleCreateTransactionBodyH\x00\x12>\n\x0escheduleDelete\x18+ \x01(\x0b\x32$.proto.ScheduleDeleteTransactionBodyH\x00\x12:\n\x0cscheduleSign\x18, \x01(\x0b\x32\".proto.ScheduleSignTransactionBodyH\x00\x12Q\n\x19token_fee_schedule_update\x18- \x01(\x0b\x32,.proto.TokenFeeScheduleUpdateTransactionBodyH\x00\x12\x37\n\x0btoken_pause\x18. \x01(\x0b\x32 .proto.TokenPauseTransactionBodyH\x00\x12;\n\rtoken_unpause\x18/ \x01(\x0b\x32\".proto.TokenUnpauseTransactionBodyH\x00\x12N\n\x16\x63ryptoApproveAllowance\x18\x30 \x01(\x0b\x32,.proto.CryptoApproveAllowanceTransactionBodyH\x00\x12L\n\x15\x63ryptoDeleteAllowance\x18\x31 \x01(\x0b\x32+.proto.CryptoDeleteAllowanceTransactionBodyH\x00\x12=\n\x13\x65thereumTransaction\x18\x32 \x01(\x0b\x32\x1e.proto.EthereumTransactionBodyH\x00\x12\x42\n\x11node_stake_update\x18\x33 \x01(\x0b\x32%.proto.NodeStakeUpdateTransactionBodyH\x00\x12\x33\n\tutil_prng\x18\x34 \x01(\x0b\x32\x1e.proto.UtilPrngTransactionBodyH\x00\x12\x42\n\x11token_update_nfts\x18\x35 \x01(\x0b\x32%.proto.TokenUpdateNftsTransactionBodyH\x00\x12Q\n\nnodeCreate\x18\x36 \x01(\x0b\x32;.com.hedera.hapi.node.addressbook.NodeCreateTransactionBodyH\x00\x12Q\n\nnodeUpdate\x18\x37 \x01(\x0b\x32;.com.hedera.hapi.node.addressbook.NodeUpdateTransactionBodyH\x00\x12Q\n\nnodeDelete\x18\x38 \x01(\x0b\x32;.com.hedera.hapi.node.addressbook.NodeDeleteTransactionBodyH\x00\x12\x38\n\x0btokenReject\x18\x39 \x01(\x0b\x32!.proto.TokenRejectTransactionBodyH\x00\x12:\n\x0ctokenAirdrop\x18: \x01(\x0b\x32\".proto.TokenAirdropTransactionBodyH\x00\x12\x46\n\x12tokenCancelAirdrop\x18; \x01(\x0b\x32(.proto.TokenCancelAirdropTransactionBodyH\x00\x12\x44\n\x11tokenClaimAirdrop\x18< \x01(\x0b\x32\'.proto.TokenClaimAirdropTransactionBodyH\x00\x12W\n\ntssMessage\x18= \x01(\x0b\x32\x41.com.hedera.hapi.services.auxiliary.tss.TssMessageTransactionBodyH\x00\x12Q\n\x07tssVote\x18> \x01(\x0b\x32>.com.hedera.hapi.services.auxiliary.tss.TssVoteTransactionBodyH\x00\x12\x65\n\x11tssShareSignature\x18? \x01(\x0b\x32H.com.hedera.hapi.services.auxiliary.tss.TssShareSignatureTransactionBodyH\x00\x12\x63\n\x10tssEncryptionKey\x18@ \x01(\x0b\x32G.com.hedera.hapi.services.auxiliary.tss.TssEncryptionKeyTransactionBodyH\x00\x12`\n\x1bstate_signature_transaction\x18\x41 \x01(\x0b\x32\x39.com.hedera.hapi.platform.event.StateSignatureTransactionH\x00\x42\x06\n\x04\x64\x61taB&\n\"com.hederahashgraph.api.proto.javaP\x01\x62\x06proto3')
|
|
88
|
+
|
|
89
|
+
_globals = globals()
|
|
90
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
91
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'transaction_body_pb2', _globals)
|
|
92
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
93
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
|
94
|
+
_globals['DESCRIPTOR']._serialized_options = b'\n\"com.hederahashgraph.api.proto.javaP\001'
|
|
95
|
+
_globals['_TRANSACTIONBODY'].fields_by_name['generateRecord']._loaded_options = None
|
|
96
|
+
_globals['_TRANSACTIONBODY'].fields_by_name['generateRecord']._serialized_options = b'\030\001'
|
|
97
|
+
_globals['_TRANSACTIONBODY']._serialized_start=1494
|
|
98
|
+
_globals['_TRANSACTIONBODY']._serialized_end=5680
|
|
99
|
+
# @@protoc_insertion_point(module_scope)
|