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.
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.
amount
str
Represents the amount received to this address.
Example
fromcryptoapis.models.list_transactions_by_block_hash_ri_recipients_innerimportListTransactionsByBlockHashRIRecipientsInner# TODO update the JSON string belowjson="{}"# create an instance of ListTransactionsByBlockHashRIRecipientsInner from a JSON stringlist_transactions_by_block_hash_ri_recipients_inner_instance=ListTransactionsByBlockHashRIRecipientsInner.from_json(json)
# print the JSON string representation of the objectprintListTransactionsByBlockHashRIRecipientsInner.to_json()
# convert the object into a dictlist_transactions_by_block_hash_ri_recipients_inner_dict=list_transactions_by_block_hash_ri_recipients_inner_instance.to_dict()
# create an instance of ListTransactionsByBlockHashRIRecipientsInner from a dictlist_transactions_by_block_hash_ri_recipients_inner_form_dict=list_transactions_by_block_hash_ri_recipients_inner.from_dict(list_transactions_by_block_hash_ri_recipients_inner_dict)