Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.98 KB

File metadata and controls

33 lines (24 loc) · 1.98 KB

TransactionMessageSignEIP712Destination

Information about the transaction destination type EVM_EIP_712_Signature. Refer to Transaction sources and destinations for a detailed introduction about the supported sources and destinations for each transaction type. Switch between the tabs to display the properties for different transaction destinations.

Properties

Name Type Description Notes
destination_type TransactionDestinationType
raw_structured_data str The raw structured data to be signed, formatted as a JSON string. [optional]
structured_data Dict[str, object] The structured data to be signed, formatted as a JSON object according to the EIP-712 standard.
safe_tx_extra_data SafeTxExtraData [optional]

Example

from cobo_waas2.models.transaction_message_sign_eip712_destination import TransactionMessageSignEIP712Destination

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

# convert the object into a dict
transaction_message_sign_eip712_destination_dict = transaction_message_sign_eip712_destination_instance.to_dict()
# create an instance of TransactionMessageSignEIP712Destination from a dict
transaction_message_sign_eip712_destination_from_dict = TransactionMessageSignEIP712Destination.from_dict(transaction_message_sign_eip712_destination_dict)

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