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

Latest commit

 

History

History
34 lines (26 loc) · 2.44 KB

File metadata and controls

34 lines (26 loc) · 2.44 KB

PrepareTransactionFromAddressRBDataItem

Properties

Name Type Description Notes
additional_data str Represents an optional note to add a free text in, explaining or providing additional detail on the transaction request. [optional]
amount str Representation of the transacted amount
nonce str 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.
fee PrepareTransactionFromAddressRBDataItemFee
transaction_type str Representation of the transaction type. For Ethereum-Classic and Binance Smart Chain there is no need to provide "transactionType" in the request. [optional] [default to 'gas-fee-market-transaction']

Example

from cryptoapis.models.prepare_transaction_from_address_rb_data_item import PrepareTransactionFromAddressRBDataItem

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

# convert the object into a dict
prepare_transaction_from_address_rb_data_item_dict = prepare_transaction_from_address_rb_data_item_instance.to_dict()
# create an instance of PrepareTransactionFromAddressRBDataItem from a dict
prepare_transaction_from_address_rb_data_item_form_dict = prepare_transaction_from_address_rb_data_item.from_dict(prepare_transaction_from_address_rb_data_item_dict)

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