Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 2.14 KB

PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRIBSD2VinInner.md

File metadata and controls

35 lines (27 loc) · 2.14 KB

PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRIBSD2VinInner

Properties

Name Type Description Notes
address str Representation of the address
change int Representation of the change value
derivation_index int Representation of the derivation index of the xpub address.
output_index int Representation of the output index
satoshis int Representation of the satoshis value
script str Representation of the script string
sighash str Representation of the hash that should be signed.
transaction_id str Represents the reference transaction identifier.

Example

from cryptoapis.models.prepare_autxo_based_transaction_from_hd_wallet_x_pub_y_pub_z_pub_ribsd2_vin_inner import PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRIBSD2VinInner

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

# convert the object into a dict
prepare_autxo_based_transaction_from_hd_wallet_x_pub_y_pub_z_pub_ribsd2_vin_inner_dict = prepare_autxo_based_transaction_from_hd_wallet_x_pub_y_pub_z_pub_ribsd2_vin_inner_instance.to_dict()
# create an instance of PrepareAUTXOBasedTransactionFromHDWalletXPubYPubZPubRIBSD2VinInner from a dict
prepare_autxo_based_transaction_from_hd_wallet_x_pub_y_pub_z_pub_ribsd2_vin_inner_form_dict = prepare_autxo_based_transaction_from_hd_wallet_x_pub_y_pub_z_pub_ribsd2_vin_inner.from_dict(prepare_autxo_based_transaction_from_hd_wallet_x_pub_y_pub_z_pub_ribsd2_vin_inner_dict)

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