2018-07-05 12:28:08 +00:00
|
|
|
# This file is part of the Trezor project.
|
|
|
|
#
|
2019-05-29 16:44:09 +00:00
|
|
|
# Copyright (C) 2012-2019 SatoshiLabs and contributors
|
2018-07-05 12:28:08 +00:00
|
|
|
#
|
|
|
|
# This library is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
# as published by the Free Software Foundation.
|
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the License along with this library.
|
|
|
|
# If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>.
|
|
|
|
|
2018-07-12 09:16:30 +00:00
|
|
|
from . import messages
|
2018-08-21 13:58:26 +00:00
|
|
|
from .protobuf import dict_to_proto
|
2018-08-21 14:21:49 +00:00
|
|
|
from .tools import dict_from_camelcase, expect
|
2018-07-05 12:28:08 +00:00
|
|
|
|
2018-09-05 08:42:32 +00:00
|
|
|
REQUIRED_FIELDS = ("Fee", "Sequence", "TransactionType", "Payment")
|
|
|
|
REQUIRED_PAYMENT_FIELDS = ("Amount", "Destination")
|
2018-08-13 16:21:24 +00:00
|
|
|
|
2018-07-05 12:28:08 +00:00
|
|
|
|
2018-08-06 14:15:44 +00:00
|
|
|
@expect(messages.RippleAddress, field="address")
|
2018-07-12 14:27:42 +00:00
|
|
|
def get_address(client, address_n, show_display=False):
|
2018-07-12 12:06:36 +00:00
|
|
|
return client.call(
|
2018-08-13 16:21:24 +00:00
|
|
|
messages.RippleGetAddress(address_n=address_n, show_display=show_display)
|
|
|
|
)
|
2018-07-12 12:06:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
@expect(messages.RippleSignedTx)
|
2018-07-12 14:27:42 +00:00
|
|
|
def sign_tx(client, address_n, msg: messages.RippleSignTx):
|
2018-07-12 12:06:36 +00:00
|
|
|
msg.address_n = address_n
|
|
|
|
return client.call(msg)
|
|
|
|
|
|
|
|
|
2018-07-12 12:51:48 +00:00
|
|
|
def create_sign_tx_msg(transaction) -> messages.RippleSignTx:
|
2018-08-13 16:21:24 +00:00
|
|
|
if not all(transaction.get(k) for k in REQUIRED_FIELDS):
|
|
|
|
raise ValueError("Some of the required fields missing")
|
2018-09-05 08:42:32 +00:00
|
|
|
if not all(transaction["Payment"].get(k) for k in REQUIRED_PAYMENT_FIELDS):
|
|
|
|
raise ValueError("Some of the required payment fields missing")
|
2018-07-05 12:28:08 +00:00
|
|
|
if transaction["TransactionType"] != "Payment":
|
|
|
|
raise ValueError("Only Payment transaction type is supported")
|
|
|
|
|
2018-08-21 13:58:26 +00:00
|
|
|
converted = dict_from_camelcase(transaction)
|
|
|
|
return dict_to_proto(messages.RippleSignTx, converted)
|