You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 1, 2025. It is now read-only.
Represents the sequential running number for an address, starting from 0 for the first transaction. E.g., if the nonce of a transaction is 10, it would be the 11th transaction sent from the sender's address.
[optional]
recipient
str
The address which receives this transaction. In UTXO-based protocols like Bitcoin there could be several senders while in account-based protocols like Ethereum there is always only one recipient.
sender
str
Represents the address which sends this transaction. In UTXO-based protocols like Bitcoin there could be several senders while in account-based protocols like Ethereum there is always only one sender.
fromcryptoapis.models.prepare_transaction_from_address_riimportPrepareTransactionFromAddressRI# TODO update the JSON string belowjson="{}"# create an instance of PrepareTransactionFromAddressRI from a JSON stringprepare_transaction_from_address_ri_instance=PrepareTransactionFromAddressRI.from_json(json)
# print the JSON string representation of the objectprintPrepareTransactionFromAddressRI.to_json()
# convert the object into a dictprepare_transaction_from_address_ri_dict=prepare_transaction_from_address_ri_instance.to_dict()
# create an instance of PrepareTransactionFromAddressRI from a dictprepare_transaction_from_address_ri_form_dict=prepare_transaction_from_address_ri.from_dict(prepare_transaction_from_address_ri_dict)