Skip to content
This repository was archived by the owner on Dec 1, 2025. It is now read-only.

Latest commit

 

History

History
32 lines (24 loc) · 1.67 KB

File metadata and controls

32 lines (24 loc) · 1.67 KB

DecodeRawTransactionHexRISBVoutInnerScriptPubKey

Script pub key of the transaction

Properties

Name Type Description Notes
address str Represents the address which send the amount.
asm str Represents the assembly of the script public key of the address. [optional]
hex str Represents the hex of the script public key of the address. [optional]
type str Represents the script type. [optional]

Example

from cryptoapis.models.decode_raw_transaction_hex_risb_vout_inner_script_pub_key import DecodeRawTransactionHexRISBVoutInnerScriptPubKey

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

# convert the object into a dict
decode_raw_transaction_hex_risb_vout_inner_script_pub_key_dict = decode_raw_transaction_hex_risb_vout_inner_script_pub_key_instance.to_dict()
# create an instance of DecodeRawTransactionHexRISBVoutInnerScriptPubKey from a dict
decode_raw_transaction_hex_risb_vout_inner_script_pub_key_form_dict = decode_raw_transaction_hex_risb_vout_inner_script_pub_key.from_dict(decode_raw_transaction_hex_risb_vout_inner_script_pub_key_dict)

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