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 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.
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
fromcryptoapis.models.prepare_transaction_from_address_rb_data_itemimportPrepareTransactionFromAddressRBDataItem# TODO update the JSON string belowjson="{}"# create an instance of PrepareTransactionFromAddressRBDataItem from a JSON stringprepare_transaction_from_address_rb_data_item_instance=PrepareTransactionFromAddressRBDataItem.from_json(json)
# print the JSON string representation of the objectprintPrepareTransactionFromAddressRBDataItem.to_json()
# convert the object into a dictprepare_transaction_from_address_rb_data_item_dict=prepare_transaction_from_address_rb_data_item_instance.to_dict()
# create an instance of PrepareTransactionFromAddressRBDataItem from a dictprepare_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)