Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.55 KB

File metadata and controls

38 lines (29 loc) · 1.55 KB

TSSKeySignRequest

Properties

Name Type Description Notes
group_id str The TSS key share group ID. [optional]
root_pub_key str The The old TSS key share group's root extended public key. [optional]
used_node_ids List[str] [optional]
bip32_path_list List[str] [optional]
msg_hash_list List[str] [optional]
tweak_list List[str] [optional]
signature_type TSSSignatureType [optional]
tss_protocol TSSProtocol [optional]
task_id str The task ID. [optional]
biz_task_id str The business task ID. This field contains the transaction ID. [optional]

Example

from cobo_waas2.models.tss_key_sign_request import TSSKeySignRequest

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

# convert the object into a dict
tss_key_sign_request_dict = tss_key_sign_request_instance.to_dict()
# create an instance of TSSKeySignRequest from a dict
tss_key_sign_request_from_dict = TSSKeySignRequest.from_dict(tss_key_sign_request_dict)

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