Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

ValidatedTransactionsForRescan.md

File metadata and controls

31 lines (22 loc) · 1.28 KB

ValidatedTransactionsForRescan

Properties

Name Type Description Notes
base_asset str Base asset symbol BTC_TEST, ETH_TEST5) [optional]
network_protocol str Netowrk protocol of the blockchain (BTC, ETH) [optional]
tx_hashes List[str] Blockchain TX hashes [optional]

Example

from fireblocks.models.validated_transactions_for_rescan import ValidatedTransactionsForRescan

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

# convert the object into a dict
validated_transactions_for_rescan_dict = validated_transactions_for_rescan_instance.to_dict()
# create an instance of ValidatedTransactionsForRescan from a dict
validated_transactions_for_rescan_from_dict = ValidatedTransactionsForRescan.from_dict(validated_transactions_for_rescan_dict)

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