1
0
Fork 0
forked from lthn/blockchain
blockchain/utils/sdk/client/python/docs/TxPoolPerformanceModel.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.5 KiB
Generated

TxPoolPerformanceModel

Properties

Name Type Description Notes
tx_processing_time int [optional]
check_inputs_types_supported_time int [optional]
expiration_validate_time int [optional]
validate_amount_time int [optional]
validate_alias_time int [optional]
check_keyimages_ws_ms_time int [optional]
check_inputs_time int [optional]
begin_tx_time int [optional]
update_db_time int [optional]
db_commit_time int [optional]
check_post_hf4_balance int [optional]

Example

from lthn.models.tx_pool_performance_model import TxPoolPerformanceModel

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

# convert the object into a dict
tx_pool_performance_model_dict = tx_pool_performance_model_instance.to_dict()
# create an instance of TxPoolPerformanceModel from a dict
tx_pool_performance_model_from_dict = TxPoolPerformanceModel.from_dict(tx_pool_performance_model_dict)

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