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

Latest commit

 

History

History
38 lines (30 loc) · 2.63 KB

File metadata and controls

38 lines (30 loc) · 2.63 KB

ListWalletTransactionsRI

Properties

Name Type Description Notes
direction str Defines the direction of the transaction, e.g. incoming.
fee ListWalletTransactionsRIFee
fungible_tokens List[ListWalletTransactionsRIFungibleTokensInner] Represents fungible tokens'es detailed information [optional]
internal_transactions List[ListWalletTransactionsRIInternalTransactionsInner] [optional]
non_fungible_tokens List[ListWalletTransactionsRINonFungibleTokensInner] Represents non-fungible tokens'es detailed information. [optional]
recipients List[ListWalletTransactionsRIRecipientsInner] Represents a list of recipient addresses with the respective amounts. In account-based protocols like Ethereum there is only one address in this list.
senders List[ListWalletTransactionsRISendersInner] Represents a list of sender addresses with the respective amounts. In account-based protocols like Ethereum there is only one address in this list.
status str Defines the status of the transaction, if it is confirmed or unconfirmed.
timestamp int Defines the exact date/time in Unix Timestamp when this transaction was mined, confirmed or first seen in Mempool, if it is unconfirmed.
transaction_id str Represents the unique TD of the transaction.
value ListWalletTransactionsRIValue

Example

from cryptoapis.models.list_wallet_transactions_ri import ListWalletTransactionsRI

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

# convert the object into a dict
list_wallet_transactions_ri_dict = list_wallet_transactions_ri_instance.to_dict()
# create an instance of ListWalletTransactionsRI from a dict
list_wallet_transactions_ri_form_dict = list_wallet_transactions_ri.from_dict(list_wallet_transactions_ri_dict)

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