1
0
Fork 0
forked from lthn/blockchain
blockchain/utils/sdk/client/python/docs/BlockProcessingPerformanceModel.md
Snider 2852702a4b Add Python SDK for lthn API
Introduces a new Python client SDK for the lthn API, generated via OpenAPI Generator. Includes source code, models, API classes, documentation, tests, CI/CD workflows for GitHub and GitLab, and project configuration files.
2025-10-19 15:15:41 +01:00

1.9 KiB
Generated

BlockProcessingPerformanceModel

Properties

Name Type Description Notes
block_processing_time_0 int [optional]
block_processing_time_1 int [optional]
target_calculating_time_2 int [optional]
longhash_calculating_time_3 int [optional]
all_txs_insert_time_5 int [optional]
etc_stuff_6 int [optional]
insert_time_4 int [optional]
raise_block_core_event int [optional]
validate_miner_transaction_time int [optional]
collect_rangeproofs_data_from_tx_time int [optional]
verify_multiple_zc_outs_range_proofs_time int [optional]
target_calculating_enum_blocks int [optional]
target_calculating_calc int [optional]
pos_validate_ki_search int [optional]
pos_validate_get_out_keys_for_inputs int [optional]
pos_validate_zvp int [optional]

Example

from lthn.models.block_processing_performance_model import BlockProcessingPerformanceModel

# TODO update the JSON string below
json = "{}"
# create an instance of BlockProcessingPerformanceModel from a JSON string
block_processing_performance_model_instance = BlockProcessingPerformanceModel.from_json(json)
# print the JSON string representation of the object
print(BlockProcessingPerformanceModel.to_json())

# convert the object into a dict
block_processing_performance_model_dict = block_processing_performance_model_instance.to_dict()
# create an instance of BlockProcessingPerformanceModel from a dict
block_processing_performance_model_from_dict = BlockProcessingPerformanceModel.from_dict(block_processing_performance_model_dict)

[Back to Model list] [Back to API list] [Back to README]