2017-05-30 16:41:02 +00:00
|
|
|
/*
|
2019-06-17 18:27:55 +00:00
|
|
|
* This file is part of the Trezor project, https://trezor.io/
|
2017-05-30 16:41:02 +00:00
|
|
|
*
|
2017-10-09 16:49:13 +00:00
|
|
|
* Copyright (C) 2017 Saleem Rashid <trezor@saleemrashid.com>
|
2017-05-30 16:41:02 +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 as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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 GNU Lesser General Public License
|
|
|
|
* along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nem2.h"
|
|
|
|
|
2018-01-13 14:20:10 +00:00
|
|
|
#include "aes/aes.h"
|
2017-05-30 16:41:02 +00:00
|
|
|
#include "fsm.h"
|
|
|
|
#include "gettext.h"
|
|
|
|
#include "layout2.h"
|
2019-03-29 16:10:31 +00:00
|
|
|
#include "memzero.h"
|
2017-05-30 16:41:02 +00:00
|
|
|
#include "protect.h"
|
|
|
|
#include "rng.h"
|
2017-07-20 21:58:19 +00:00
|
|
|
#include "secp256k1.h"
|
|
|
|
|
2018-08-27 17:06:11 +00:00
|
|
|
const char *nem_validate_common(NEMTransactionCommon *common, bool inner) {
|
2019-03-29 16:10:31 +00:00
|
|
|
if (!common->has_network) {
|
|
|
|
common->has_network = true;
|
|
|
|
common->network = NEM_NETWORK_MAINNET;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (common->network > 0xFF || nem_network_name(common->network) == NULL) {
|
|
|
|
return inner ? _("Invalid NEM network in inner transaction")
|
|
|
|
: _("Invalid NEM network");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!common->has_timestamp) {
|
|
|
|
return inner ? _("No timestamp provided in inner transaction")
|
|
|
|
: _("No timestamp provided");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!common->has_fee) {
|
|
|
|
return inner ? _("No fee provided in inner transaction")
|
|
|
|
: _("No fee provided");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!common->has_deadline) {
|
|
|
|
return inner ? _("No deadline provided in inner transaction")
|
|
|
|
: _("No deadline provided");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (inner != common->has_signer) {
|
|
|
|
return inner ? _("No signer provided in inner transaction")
|
|
|
|
: _("Signer not allowed in outer transaction");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (common->has_signer && common->signer.size != sizeof(ed25519_public_key)) {
|
|
|
|
return _("Invalid signer public key in inner transaction");
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2017-05-30 16:41:02 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
const char *nem_validate_transfer(const NEMTransfer *transfer,
|
|
|
|
uint8_t network) {
|
|
|
|
if (!transfer->has_recipient) return _("No recipient provided");
|
|
|
|
if (!transfer->has_amount) return _("No amount provided");
|
2017-07-01 13:38:04 +00:00
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
if (transfer->has_public_key &&
|
|
|
|
transfer->public_key.size != sizeof(ed25519_public_key)) {
|
|
|
|
return _("Invalid recipient public key");
|
|
|
|
}
|
2017-05-30 16:41:02 +00:00
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
if (!nem_validate_address(transfer->recipient, network))
|
|
|
|
return _("Invalid recipient address");
|
2017-05-30 16:41:02 +00:00
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
for (size_t i = 0; i < transfer->mosaics_count; i++) {
|
|
|
|
const NEMMosaic *mosaic = &transfer->mosaics[i];
|
2017-05-30 16:41:02 +00:00
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
if (!mosaic->has_namespace) return _("No mosaic namespace provided");
|
|
|
|
if (!mosaic->has_mosaic) return _("No mosaic name provided");
|
|
|
|
if (!mosaic->has_quantity) return _("No mosaic quantity provided");
|
|
|
|
}
|
2017-05-30 16:41:02 +00:00
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
return NULL;
|
2017-05-30 16:41:02 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
const char *nem_validate_provision_namespace(
|
|
|
|
const NEMProvisionNamespace *provision_namespace, uint8_t network) {
|
|
|
|
if (!provision_namespace->has_namespace) return _("No namespace provided");
|
|
|
|
if (!provision_namespace->has_sink) return _("No rental sink provided");
|
|
|
|
if (!provision_namespace->has_fee) return _("No rental sink fee provided");
|
2017-07-17 19:23:20 +00:00
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
if (!nem_validate_address(provision_namespace->sink, network))
|
|
|
|
return _("Invalid rental sink address");
|
2017-07-17 19:23:20 +00:00
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
return NULL;
|
2017-07-17 19:23:20 +00:00
|
|
|
}
|
2017-05-30 16:41:02 +00:00
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
const char *nem_validate_mosaic_creation(
|
|
|
|
const NEMMosaicCreation *mosaic_creation, uint8_t network) {
|
|
|
|
if (!mosaic_creation->has_definition)
|
|
|
|
return _("No mosaic definition provided");
|
|
|
|
if (!mosaic_creation->has_sink) return _("No creation sink provided");
|
|
|
|
if (!mosaic_creation->has_fee) return _("No creation sink fee provided");
|
|
|
|
|
|
|
|
if (!nem_validate_address(mosaic_creation->sink, network))
|
|
|
|
return _("Invalid creation sink address");
|
|
|
|
|
|
|
|
if (mosaic_creation->definition.has_name)
|
|
|
|
return _("Name not allowed in mosaic creation transactions");
|
|
|
|
if (mosaic_creation->definition.has_ticker)
|
|
|
|
return _("Ticker not allowed in mosaic creation transactions");
|
|
|
|
if (mosaic_creation->definition.networks_count)
|
|
|
|
return _("Networks not allowed in mosaic creation transactions");
|
|
|
|
|
|
|
|
if (!mosaic_creation->definition.has_namespace)
|
|
|
|
return _("No mosaic namespace provided");
|
|
|
|
if (!mosaic_creation->definition.has_mosaic)
|
|
|
|
return _("No mosaic name provided");
|
|
|
|
|
|
|
|
if (mosaic_creation->definition.has_levy) {
|
|
|
|
if (!mosaic_creation->definition.has_fee)
|
|
|
|
return _("No levy address provided");
|
|
|
|
if (!mosaic_creation->definition.has_levy_address)
|
|
|
|
return _("No levy address provided");
|
|
|
|
if (!mosaic_creation->definition.has_levy_namespace)
|
|
|
|
return _("No levy namespace provided");
|
|
|
|
if (!mosaic_creation->definition.has_levy_mosaic)
|
|
|
|
return _("No levy mosaic name provided");
|
|
|
|
|
|
|
|
if (!mosaic_creation->definition.has_divisibility)
|
|
|
|
return _("No divisibility provided");
|
|
|
|
if (!mosaic_creation->definition.has_supply) return _("No supply provided");
|
|
|
|
if (!mosaic_creation->definition.has_mutable_supply)
|
|
|
|
return _("No supply mutability provided");
|
|
|
|
if (!mosaic_creation->definition.has_transferable)
|
|
|
|
return _("No mosaic transferability provided");
|
|
|
|
if (!mosaic_creation->definition.has_description)
|
|
|
|
return _("No description provided");
|
|
|
|
|
|
|
|
if (mosaic_creation->definition.divisibility > NEM_MAX_DIVISIBILITY)
|
|
|
|
return _("Invalid divisibility provided");
|
|
|
|
if (mosaic_creation->definition.supply > NEM_MAX_SUPPLY)
|
|
|
|
return _("Invalid supply provided");
|
|
|
|
|
|
|
|
if (!nem_validate_address(mosaic_creation->definition.levy_address,
|
|
|
|
network))
|
|
|
|
return _("Invalid levy address");
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2017-07-22 18:02:41 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
const char *nem_validate_supply_change(
|
|
|
|
const NEMMosaicSupplyChange *supply_change) {
|
|
|
|
if (!supply_change->has_namespace) return _("No namespace provided");
|
|
|
|
if (!supply_change->has_mosaic) return _("No mosaic provided");
|
|
|
|
if (!supply_change->has_type) return _("No type provided");
|
|
|
|
if (!supply_change->has_delta) return _("No delta provided");
|
2017-07-23 14:45:20 +00:00
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
return NULL;
|
2017-07-23 14:45:20 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
const char *nem_validate_aggregate_modification(
|
|
|
|
const NEMAggregateModification *aggregate_modification, bool creation) {
|
|
|
|
if (creation && aggregate_modification->modifications_count == 0) {
|
|
|
|
return _("No modifications provided");
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t i = 0; i < aggregate_modification->modifications_count; i++) {
|
|
|
|
const NEMCosignatoryModification *modification =
|
|
|
|
&aggregate_modification->modifications[i];
|
|
|
|
|
|
|
|
if (!modification->has_type) return _("No modification type provided");
|
|
|
|
if (!modification->has_public_key)
|
|
|
|
return _("No cosignatory public key provided");
|
|
|
|
if (modification->public_key.size != 32)
|
|
|
|
return _("Invalid cosignatory public key provided");
|
|
|
|
|
|
|
|
if (creation && modification->type ==
|
|
|
|
NEMModificationType_CosignatoryModification_Delete) {
|
|
|
|
return _("Cannot remove cosignatory when converting account");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2017-07-23 17:55:13 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
const char *nem_validate_importance_transfer(
|
|
|
|
const NEMImportanceTransfer *importance_transfer) {
|
|
|
|
if (!importance_transfer->has_mode) return _("No mode provided");
|
|
|
|
if (!importance_transfer->has_public_key)
|
|
|
|
return _("No remote account provided");
|
|
|
|
if (importance_transfer->public_key.size != 32)
|
|
|
|
return _("Invalid remote account provided");
|
2017-10-07 21:07:56 +00:00
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
return NULL;
|
2017-10-07 21:07:56 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
bool nem_askTransfer(const NEMTransactionCommon *common,
|
|
|
|
const NEMTransfer *transfer, const char *desc) {
|
|
|
|
if (transfer->mosaics_count) {
|
|
|
|
const NEMMosaic *xem = NULL;
|
|
|
|
bool unknownMosaic = false;
|
|
|
|
|
|
|
|
const NEMMosaicDefinition *definitions[transfer->mosaics_count];
|
2019-10-02 13:21:33 +00:00
|
|
|
memset(definitions, 0, sizeof(definitions));
|
2019-03-29 16:10:31 +00:00
|
|
|
|
|
|
|
for (size_t i = 0; i < transfer->mosaics_count; i++) {
|
|
|
|
const NEMMosaic *mosaic = &transfer->mosaics[i];
|
|
|
|
|
|
|
|
definitions[i] =
|
|
|
|
nem_mosaicByName(mosaic->namespace, mosaic->mosaic, common->network);
|
|
|
|
|
|
|
|
if (definitions[i] == NEM_MOSAIC_DEFINITION_XEM) {
|
|
|
|
xem = mosaic;
|
|
|
|
} else if (definitions[i] == NULL) {
|
|
|
|
unknownMosaic = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-30 15:34:38 +00:00
|
|
|
bignum256 multiplier = {0};
|
2019-03-29 16:10:31 +00:00
|
|
|
bn_read_uint64(transfer->amount, &multiplier);
|
|
|
|
|
|
|
|
if (unknownMosaic) {
|
|
|
|
layoutDialogSwipe(&bmp_icon_question, _("Cancel"), _("I take the risk"),
|
|
|
|
_("Unknown Mosaics"), _("Divisibility and levy"),
|
|
|
|
_("cannot be shown for"), _("unknown mosaics!"), NULL,
|
|
|
|
NULL, NULL);
|
|
|
|
if (!protectButton(ButtonRequestType_ButtonRequest_ConfirmOutput,
|
|
|
|
false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
layoutNEMTransferXEM(desc, xem ? xem->quantity : 0, &multiplier,
|
|
|
|
common->fee);
|
|
|
|
if (!protectButton(ButtonRequestType_ButtonRequest_ConfirmOutput, false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t i = 0; i < transfer->mosaics_count; i++) {
|
|
|
|
const NEMMosaic *mosaic = &transfer->mosaics[i];
|
|
|
|
|
|
|
|
if (mosaic == xem) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (definitions[i]) {
|
|
|
|
layoutNEMTransferMosaic(definitions[i], mosaic->quantity, &multiplier,
|
|
|
|
common->network);
|
|
|
|
} else {
|
|
|
|
layoutNEMTransferUnknownMosaic(mosaic->namespace, mosaic->mosaic,
|
|
|
|
mosaic->quantity, &multiplier);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!protectButton(ButtonRequestType_ButtonRequest_ConfirmOutput,
|
|
|
|
false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
layoutNEMTransferXEM(desc, transfer->amount, NULL, common->fee);
|
|
|
|
if (!protectButton(ButtonRequestType_ButtonRequest_ConfirmOutput, false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (transfer->has_payload) {
|
|
|
|
layoutNEMTransferPayload(transfer->payload.bytes, transfer->payload.size,
|
|
|
|
transfer->has_public_key);
|
|
|
|
if (!protectButton(ButtonRequestType_ButtonRequest_ConfirmOutput, false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
layoutNEMDialog(&bmp_icon_question, _("Cancel"), _("Confirm"), desc,
|
|
|
|
_("Confirm transfer to"), transfer->recipient);
|
|
|
|
if (!protectButton(ButtonRequestType_ButtonRequest_SignTx, false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2017-05-30 16:41:02 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
bool nem_fsmTransfer(nem_transaction_ctx *context, const HDNode *node,
|
|
|
|
const NEMTransactionCommon *common,
|
|
|
|
const NEMTransfer *transfer) {
|
|
|
|
static uint8_t
|
|
|
|
encrypted[NEM_ENCRYPTED_PAYLOAD_SIZE(sizeof(transfer->payload.bytes))];
|
|
|
|
|
|
|
|
const uint8_t *payload = transfer->payload.bytes;
|
|
|
|
size_t size = transfer->payload.size;
|
|
|
|
|
|
|
|
if (transfer->has_public_key) {
|
|
|
|
if (node == NULL) {
|
|
|
|
fsm_sendFailure(FailureType_Failure_ProcessError,
|
|
|
|
_("Private key unavailable for encrypted message"));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
random_buffer(encrypted, NEM_SALT_SIZE + AES_BLOCK_SIZE);
|
|
|
|
|
|
|
|
const uint8_t *salt = encrypted;
|
|
|
|
const uint8_t *iv = &encrypted[NEM_SALT_SIZE];
|
|
|
|
uint8_t *buffer = &encrypted[NEM_SALT_SIZE + AES_BLOCK_SIZE];
|
|
|
|
|
|
|
|
bool ret = hdnode_nem_encrypt(node, transfer->public_key.bytes, iv, salt,
|
|
|
|
payload, size, buffer);
|
|
|
|
|
|
|
|
if (!ret) {
|
|
|
|
fsm_sendFailure(FailureType_Failure_ProcessError,
|
|
|
|
_("Failed to encrypt payload"));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
payload = encrypted;
|
|
|
|
size = NEM_ENCRYPTED_PAYLOAD_SIZE(size);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ret = nem_transaction_create_transfer(
|
|
|
|
context, common->network, common->timestamp, NULL, common->fee,
|
|
|
|
common->deadline, transfer->recipient, transfer->amount, payload, size,
|
|
|
|
transfer->has_public_key, transfer->mosaics_count);
|
|
|
|
|
|
|
|
if (!ret) {
|
|
|
|
fsm_sendFailure(FailureType_Failure_ProcessError,
|
|
|
|
_("Failed to create transfer transaction"));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t i = 0; i < transfer->mosaics_count; i++) {
|
|
|
|
const NEMMosaic *mosaic = &transfer->mosaics[i];
|
|
|
|
|
|
|
|
ret = nem_transaction_write_mosaic(context, mosaic->namespace,
|
|
|
|
mosaic->mosaic, mosaic->quantity);
|
|
|
|
|
|
|
|
if (!ret) {
|
|
|
|
fsm_sendFailure(FailureType_Failure_ProcessError,
|
|
|
|
_("Failed to attach mosaics"));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2017-05-30 16:41:02 +00:00
|
|
|
}
|
2017-07-01 13:38:04 +00:00
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
bool nem_askProvisionNamespace(const NEMTransactionCommon *common,
|
|
|
|
const NEMProvisionNamespace *provision_namespace,
|
|
|
|
const char *desc) {
|
|
|
|
layoutDialogSwipe(
|
|
|
|
&bmp_icon_question, _("Cancel"), _("Next"), desc, _("Create namespace"),
|
|
|
|
provision_namespace->namespace,
|
|
|
|
provision_namespace->has_parent ? _("under namespace") : NULL,
|
|
|
|
provision_namespace->has_parent ? provision_namespace->parent : NULL,
|
|
|
|
NULL, NULL);
|
|
|
|
if (!protectButton(ButtonRequestType_ButtonRequest_ConfirmOutput, false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
layoutNEMNetworkFee(desc, true, _("Confirm rental fee of"),
|
|
|
|
provision_namespace->fee, _("and network fee of"),
|
|
|
|
common->fee);
|
|
|
|
if (!protectButton(ButtonRequestType_ButtonRequest_SignTx, false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2017-07-17 19:23:20 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
bool nem_fsmProvisionNamespace(
|
|
|
|
nem_transaction_ctx *context, const NEMTransactionCommon *common,
|
|
|
|
const NEMProvisionNamespace *provision_namespace) {
|
|
|
|
return nem_transaction_create_provision_namespace(
|
|
|
|
context, common->network, common->timestamp, NULL, common->fee,
|
|
|
|
common->deadline, provision_namespace->namespace,
|
|
|
|
provision_namespace->has_parent ? provision_namespace->parent : NULL,
|
|
|
|
provision_namespace->sink, provision_namespace->fee);
|
2017-07-17 19:23:20 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
bool nem_askMosaicCreation(const NEMTransactionCommon *common,
|
|
|
|
const NEMMosaicCreation *mosaic_creation,
|
|
|
|
const char *desc, const char *address) {
|
|
|
|
layoutDialogSwipe(&bmp_icon_question, _("Cancel"), _("Next"), desc,
|
|
|
|
_("Create mosaic"), mosaic_creation->definition.mosaic,
|
|
|
|
_("under namespace"), mosaic_creation->definition.namespace,
|
|
|
|
NULL, NULL);
|
|
|
|
if (!protectButton(ButtonRequestType_ButtonRequest_ConfirmOutput, false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
layoutNEMMosaicDescription(mosaic_creation->definition.description);
|
|
|
|
if (!protectButton(ButtonRequestType_ButtonRequest_ConfirmOutput, false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-09-30 15:34:38 +00:00
|
|
|
char str_out[32] = {0};
|
2019-03-29 16:10:31 +00:00
|
|
|
|
|
|
|
bn_format_uint64(mosaic_creation->definition.supply, NULL, NULL,
|
|
|
|
mosaic_creation->definition.divisibility,
|
|
|
|
mosaic_creation->definition.divisibility, true, str_out,
|
|
|
|
sizeof(str_out));
|
|
|
|
|
|
|
|
layoutDialogSwipe(
|
|
|
|
&bmp_icon_question, _("Cancel"), _("Next"), _("Properties"),
|
|
|
|
mosaic_creation->definition.mutable_supply ? _("Mutable supply:")
|
|
|
|
: _("Immutable supply:"),
|
|
|
|
str_out, _("Mosaic will be"),
|
|
|
|
mosaic_creation->definition.transferable ? _("transferable")
|
|
|
|
: _("non-transferable"),
|
|
|
|
NULL, NULL);
|
|
|
|
if (!protectButton(ButtonRequestType_ButtonRequest_ConfirmOutput, false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mosaic_creation->definition.has_levy) {
|
|
|
|
layoutNEMLevy(&mosaic_creation->definition, common->network);
|
|
|
|
if (!protectButton(ButtonRequestType_ButtonRequest_ConfirmOutput, false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(address, mosaic_creation->definition.levy_address) == 0) {
|
|
|
|
layoutDialogSwipe(&bmp_icon_question, _("Cancel"), _("Next"),
|
|
|
|
_("Levy Recipient"), _("Levy will be paid to"),
|
|
|
|
_("yourself"), NULL, NULL, NULL, NULL);
|
|
|
|
} else {
|
|
|
|
layoutNEMDialog(&bmp_icon_question, _("Cancel"), _("Next"),
|
|
|
|
_("Levy Recipient"), _("Levy will be paid to"),
|
|
|
|
mosaic_creation->definition.levy_address);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!protectButton(ButtonRequestType_ButtonRequest_ConfirmOutput, false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
layoutNEMNetworkFee(desc, true, _("Confirm creation fee"),
|
|
|
|
mosaic_creation->fee, _("and network fee of"),
|
|
|
|
common->fee);
|
|
|
|
if (!protectButton(ButtonRequestType_ButtonRequest_SignTx, false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2017-07-22 18:02:41 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
bool nem_fsmMosaicCreation(nem_transaction_ctx *context,
|
|
|
|
const NEMTransactionCommon *common,
|
|
|
|
const NEMMosaicCreation *mosaic_creation) {
|
|
|
|
return nem_transaction_create_mosaic_creation(
|
|
|
|
context, common->network, common->timestamp, NULL, common->fee,
|
|
|
|
common->deadline, mosaic_creation->definition.namespace,
|
|
|
|
mosaic_creation->definition.mosaic,
|
|
|
|
mosaic_creation->definition.description,
|
|
|
|
mosaic_creation->definition.divisibility,
|
|
|
|
mosaic_creation->definition.supply,
|
|
|
|
mosaic_creation->definition.mutable_supply,
|
|
|
|
mosaic_creation->definition.transferable,
|
2020-09-21 09:21:27 +00:00
|
|
|
mosaic_creation->definition.has_levy ? mosaic_creation->definition.levy
|
|
|
|
: 0,
|
|
|
|
mosaic_creation->definition.fee, mosaic_creation->definition.levy_address,
|
2019-03-29 16:10:31 +00:00
|
|
|
mosaic_creation->definition.levy_namespace,
|
|
|
|
mosaic_creation->definition.levy_mosaic, mosaic_creation->sink,
|
|
|
|
mosaic_creation->fee);
|
2017-07-22 18:02:41 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
bool nem_askSupplyChange(const NEMTransactionCommon *common,
|
|
|
|
const NEMMosaicSupplyChange *supply_change,
|
|
|
|
const char *desc) {
|
|
|
|
layoutDialogSwipe(&bmp_icon_question, _("Cancel"), _("Next"), desc,
|
|
|
|
_("Modify supply for"), supply_change->mosaic,
|
|
|
|
_("under namespace"), supply_change->namespace, NULL, NULL);
|
|
|
|
if (!protectButton(ButtonRequestType_ButtonRequest_ConfirmOutput, false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-09-30 15:34:38 +00:00
|
|
|
char str_out[32] = {0};
|
2019-03-29 16:10:31 +00:00
|
|
|
bn_format_uint64(supply_change->delta, NULL, NULL, 0, 0, false, str_out,
|
|
|
|
sizeof(str_out));
|
|
|
|
|
|
|
|
layoutDialogSwipe(
|
|
|
|
&bmp_icon_question, _("Cancel"), _("Next"), desc,
|
|
|
|
supply_change->type == NEMSupplyChangeType_SupplyChange_Increase
|
|
|
|
? _("Increase supply by")
|
|
|
|
: _("Decrease supply by"),
|
|
|
|
str_out, _("whole units"), NULL, NULL, NULL);
|
|
|
|
if (!protectButton(ButtonRequestType_ButtonRequest_ConfirmOutput, false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
layoutNEMNetworkFee(desc, true, _("Confirm network fee"), common->fee, NULL,
|
|
|
|
0);
|
|
|
|
if (!protectButton(ButtonRequestType_ButtonRequest_SignTx, false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2017-07-23 14:45:20 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
bool nem_fsmSupplyChange(nem_transaction_ctx *context,
|
|
|
|
const NEMTransactionCommon *common,
|
|
|
|
const NEMMosaicSupplyChange *supply_change) {
|
|
|
|
return nem_transaction_create_mosaic_supply_change(
|
|
|
|
context, common->network, common->timestamp, NULL, common->fee,
|
|
|
|
common->deadline, supply_change->namespace, supply_change->mosaic,
|
|
|
|
supply_change->type, supply_change->delta);
|
2017-07-23 14:45:20 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
bool nem_askAggregateModification(
|
|
|
|
const NEMTransactionCommon *common,
|
|
|
|
const NEMAggregateModification *aggregate_modification, const char *desc,
|
|
|
|
bool creation) {
|
|
|
|
if (creation) {
|
|
|
|
layoutDialogSwipe(&bmp_icon_question, _("Cancel"), _("Next"), desc,
|
|
|
|
_("Convert account to"), _("multisig account?"), NULL,
|
|
|
|
NULL, NULL, NULL);
|
|
|
|
if (!protectButton(ButtonRequestType_ButtonRequest_ConfirmOutput, false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-30 15:34:38 +00:00
|
|
|
char address[NEM_ADDRESS_SIZE + 1] = {0};
|
2019-03-29 16:10:31 +00:00
|
|
|
|
|
|
|
for (size_t i = 0; i < aggregate_modification->modifications_count; i++) {
|
|
|
|
const NEMCosignatoryModification *modification =
|
|
|
|
&aggregate_modification->modifications[i];
|
|
|
|
nem_get_address(modification->public_key.bytes, common->network, address);
|
|
|
|
|
|
|
|
layoutNEMDialog(
|
|
|
|
&bmp_icon_question, _("Cancel"), _("Next"), desc,
|
|
|
|
modification->type == NEMModificationType_CosignatoryModification_Add
|
|
|
|
? _("Add cosignatory")
|
|
|
|
: _("Remove cosignatory"),
|
|
|
|
address);
|
|
|
|
if (!protectButton(ButtonRequestType_ButtonRequest_ConfirmOutput, false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t relative_change = aggregate_modification->relative_change;
|
|
|
|
if (relative_change) {
|
2019-09-30 15:34:38 +00:00
|
|
|
char str_out[32] = {0};
|
2019-03-29 16:10:31 +00:00
|
|
|
bn_format_uint64(relative_change < 0 ? -relative_change : relative_change,
|
|
|
|
NULL, NULL, 0, 0, false, str_out, sizeof(str_out));
|
|
|
|
|
|
|
|
layoutDialogSwipe(&bmp_icon_question, _("Cancel"), _("Next"), desc,
|
|
|
|
creation ? _("Set minimum")
|
|
|
|
: (relative_change < 0 ? _("Decrease minimum")
|
|
|
|
: _("Increase minimum")),
|
|
|
|
creation ? _("cosignatories to") : _("cosignatories by"),
|
|
|
|
str_out, NULL, NULL, NULL);
|
|
|
|
if (!protectButton(ButtonRequestType_ButtonRequest_ConfirmOutput, false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
layoutNEMNetworkFee(desc, true, _("Confirm network fee"), common->fee, NULL,
|
|
|
|
0);
|
|
|
|
if (!protectButton(ButtonRequestType_ButtonRequest_SignTx, false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2017-07-23 17:55:13 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
bool nem_fsmAggregateModification(
|
|
|
|
nem_transaction_ctx *context, const NEMTransactionCommon *common,
|
|
|
|
const NEMAggregateModification *aggregate_modification) {
|
|
|
|
bool ret = nem_transaction_create_aggregate_modification(
|
|
|
|
context, common->network, common->timestamp, NULL, common->fee,
|
|
|
|
common->deadline, aggregate_modification->modifications_count,
|
|
|
|
aggregate_modification->relative_change != 0);
|
|
|
|
if (!ret) return false;
|
|
|
|
|
|
|
|
for (size_t i = 0; i < aggregate_modification->modifications_count; i++) {
|
|
|
|
const NEMCosignatoryModification *modification =
|
|
|
|
&aggregate_modification->modifications[i];
|
|
|
|
|
|
|
|
ret = nem_transaction_write_cosignatory_modification(
|
|
|
|
context, modification->type, modification->public_key.bytes);
|
|
|
|
if (!ret) return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aggregate_modification->relative_change) {
|
|
|
|
ret = nem_transaction_write_minimum_cosignatories(
|
|
|
|
context, aggregate_modification->relative_change);
|
|
|
|
if (!ret) return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2017-07-23 17:55:13 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
bool nem_askImportanceTransfer(const NEMTransactionCommon *common,
|
|
|
|
const NEMImportanceTransfer *importance_transfer,
|
|
|
|
const char *desc) {
|
|
|
|
layoutDialogSwipe(
|
|
|
|
&bmp_icon_question, _("Cancel"), _("Next"), desc,
|
|
|
|
importance_transfer->mode ==
|
|
|
|
NEMImportanceTransferMode_ImportanceTransfer_Activate
|
|
|
|
? _("Activate remote")
|
|
|
|
: _("Deactivate remote"),
|
|
|
|
_("harvesting?"), NULL, NULL, NULL, NULL);
|
|
|
|
if (!protectButton(ButtonRequestType_ButtonRequest_ConfirmOutput, false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
layoutNEMNetworkFee(desc, true, _("Confirm network fee"), common->fee, NULL,
|
|
|
|
0);
|
|
|
|
if (!protectButton(ButtonRequestType_ButtonRequest_SignTx, false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2017-10-07 21:07:56 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
bool nem_fsmImportanceTransfer(
|
|
|
|
nem_transaction_ctx *context, const NEMTransactionCommon *common,
|
|
|
|
const NEMImportanceTransfer *importance_transfer) {
|
|
|
|
return nem_transaction_create_importance_transfer(
|
|
|
|
context, common->network, common->timestamp, NULL, common->fee,
|
|
|
|
common->deadline, importance_transfer->mode,
|
|
|
|
importance_transfer->public_key.bytes);
|
2017-10-07 21:07:56 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
bool nem_askMultisig(const char *address, const char *desc, bool cosigning,
|
|
|
|
uint64_t fee) {
|
|
|
|
layoutNEMDialog(
|
|
|
|
&bmp_icon_question, _("Cancel"), _("Next"), desc,
|
|
|
|
cosigning ? _("Cosign transaction for") : _("Initiate transaction for"),
|
|
|
|
address);
|
|
|
|
if (!protectButton(ButtonRequestType_ButtonRequest_ConfirmOutput, false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
layoutNEMNetworkFee(desc, false, _("Confirm multisig fee"), fee, NULL, 0);
|
|
|
|
if (!protectButton(ButtonRequestType_ButtonRequest_ConfirmOutput, false)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2017-07-01 13:38:04 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
bool nem_fsmMultisig(nem_transaction_ctx *context,
|
|
|
|
const NEMTransactionCommon *common,
|
|
|
|
const nem_transaction_ctx *inner, bool cosigning) {
|
|
|
|
bool ret;
|
|
|
|
if (cosigning) {
|
|
|
|
ret = nem_transaction_create_multisig_signature(
|
|
|
|
context, common->network, common->timestamp, NULL, common->fee,
|
|
|
|
common->deadline, inner);
|
|
|
|
} else {
|
|
|
|
ret = nem_transaction_create_multisig(context, common->network,
|
|
|
|
common->timestamp, NULL, common->fee,
|
|
|
|
common->deadline, inner);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ret) {
|
|
|
|
fsm_sendFailure(FailureType_Failure_ProcessError,
|
|
|
|
_("Failed to create multisig transaction"));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2017-07-01 13:38:04 +00:00
|
|
|
}
|
2017-07-20 21:58:19 +00:00
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
const NEMMosaicDefinition *nem_mosaicByName(const char *namespace,
|
|
|
|
const char *mosaic,
|
|
|
|
uint8_t network) {
|
|
|
|
for (size_t i = 0; i < NEM_MOSAIC_DEFINITIONS_COUNT; i++) {
|
|
|
|
const NEMMosaicDefinition *definition = &NEM_MOSAIC_DEFINITIONS[i];
|
2017-07-20 21:58:19 +00:00
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
if (nem_mosaicMatches(definition, namespace, mosaic, network)) {
|
|
|
|
return definition;
|
|
|
|
}
|
|
|
|
}
|
2017-07-20 21:58:19 +00:00
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
return NULL;
|
2017-07-20 21:58:19 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
static inline size_t format_amount(const NEMMosaicDefinition *definition,
|
|
|
|
const bignum256 *amnt,
|
|
|
|
const bignum256 *multiplier, int divisor,
|
|
|
|
char *str_out, size_t size) {
|
2019-09-30 15:34:38 +00:00
|
|
|
bignum256 val = {0};
|
2019-03-29 16:10:31 +00:00
|
|
|
memcpy(&val, amnt, sizeof(bignum256));
|
|
|
|
|
|
|
|
if (multiplier) {
|
|
|
|
bn_multiply(multiplier, &val, &secp256k1.prime);
|
|
|
|
divisor += NEM_MOSAIC_DEFINITION_XEM->divisibility;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bn_format(
|
|
|
|
&val, NULL,
|
|
|
|
definition && definition->has_ticker ? definition->ticker : NULL,
|
|
|
|
definition && definition->has_divisibility ? definition->divisibility : 0,
|
|
|
|
-divisor, false, str_out, size);
|
2017-07-20 21:58:19 +00:00
|
|
|
}
|
|
|
|
|
2019-10-02 15:43:21 +00:00
|
|
|
void nem_canonicalizeMosaics(NEMTransfer *transfer) {
|
|
|
|
size_t old_count = transfer->mosaics_count;
|
|
|
|
|
|
|
|
if (old_count <= 1) {
|
|
|
|
return;
|
2019-03-29 16:10:31 +00:00
|
|
|
}
|
2017-07-28 15:29:31 +00:00
|
|
|
|
2019-10-02 15:43:21 +00:00
|
|
|
NEMMosaic *const mosaics = transfer->mosaics;
|
2017-07-28 15:29:31 +00:00
|
|
|
|
2019-10-02 15:43:21 +00:00
|
|
|
bool skip[old_count];
|
2019-03-29 16:10:31 +00:00
|
|
|
memzero(skip, sizeof(skip));
|
2017-07-28 15:29:31 +00:00
|
|
|
|
2019-10-02 15:43:21 +00:00
|
|
|
size_t new_count = 0;
|
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
// Merge duplicates
|
2019-10-02 15:43:21 +00:00
|
|
|
for (size_t i = 0; i < old_count; i++) {
|
2019-03-29 16:10:31 +00:00
|
|
|
if (skip[i]) continue;
|
2017-07-28 15:29:31 +00:00
|
|
|
|
2019-10-02 15:43:21 +00:00
|
|
|
NEMMosaic *mosaic = &mosaics[new_count];
|
2017-07-28 15:29:31 +00:00
|
|
|
|
2019-10-02 15:43:21 +00:00
|
|
|
if (new_count++ != i) {
|
2019-03-29 16:10:31 +00:00
|
|
|
memcpy(mosaic, &mosaics[i], sizeof(NEMMosaic));
|
|
|
|
}
|
2017-07-28 15:29:31 +00:00
|
|
|
|
2019-10-02 15:43:21 +00:00
|
|
|
for (size_t j = i + 1; j < old_count; j++) {
|
2019-03-29 16:10:31 +00:00
|
|
|
if (skip[j]) continue;
|
2017-07-28 15:29:31 +00:00
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
const NEMMosaic *new_mosaic = &mosaics[j];
|
2017-07-28 15:29:31 +00:00
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
if (nem_mosaicCompare(mosaic, new_mosaic) == 0) {
|
|
|
|
skip[j] = true;
|
|
|
|
mosaic->quantity += new_mosaic->quantity;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-07-28 15:29:31 +00:00
|
|
|
|
2019-10-02 15:43:21 +00:00
|
|
|
transfer->mosaics_count = new_count;
|
2017-07-28 15:29:31 +00:00
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
// Sort mosaics
|
2019-10-02 15:43:21 +00:00
|
|
|
for (size_t i = 0; i < new_count - 1; i++) {
|
2019-03-29 16:10:31 +00:00
|
|
|
NEMMosaic *a = &mosaics[i];
|
2017-07-28 15:29:31 +00:00
|
|
|
|
2019-10-02 15:43:21 +00:00
|
|
|
for (size_t j = i + 1; j < new_count; j++) {
|
2019-03-29 16:10:31 +00:00
|
|
|
NEMMosaic *b = &mosaics[j];
|
2017-07-28 15:29:31 +00:00
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
if (nem_mosaicCompare(a, b) > 0) {
|
2019-09-30 15:34:38 +00:00
|
|
|
NEMMosaic temp = {0};
|
2019-03-29 16:10:31 +00:00
|
|
|
memcpy(&temp, a, sizeof(NEMMosaic));
|
|
|
|
memcpy(a, b, sizeof(NEMMosaic));
|
|
|
|
memcpy(b, &temp, sizeof(NEMMosaic));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-07-28 15:29:31 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
void nem_mosaicFormatAmount(const NEMMosaicDefinition *definition,
|
|
|
|
uint64_t quantity, const bignum256 *multiplier,
|
|
|
|
char *str_out, size_t size) {
|
2019-09-30 15:34:38 +00:00
|
|
|
bignum256 amnt = {0};
|
2019-03-29 16:10:31 +00:00
|
|
|
bn_read_uint64(quantity, &amnt);
|
2017-07-26 18:25:46 +00:00
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
format_amount(definition, &amnt, multiplier, 0, str_out, size);
|
2017-07-20 21:58:19 +00:00
|
|
|
}
|
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
bool nem_mosaicFormatLevy(const NEMMosaicDefinition *definition,
|
|
|
|
uint64_t quantity, const bignum256 *multiplier,
|
|
|
|
uint8_t network, char *str_out, size_t size) {
|
|
|
|
if (!definition->has_levy || !definition->has_fee) {
|
|
|
|
return false;
|
|
|
|
}
|
2017-07-20 21:58:19 +00:00
|
|
|
|
2019-09-30 15:34:38 +00:00
|
|
|
bignum256 amnt = {0}, fee = {0};
|
2019-03-29 16:10:31 +00:00
|
|
|
bn_read_uint64(quantity, &amnt);
|
|
|
|
bn_read_uint64(definition->fee, &fee);
|
2017-07-26 18:25:46 +00:00
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
const NEMMosaicDefinition *mosaic = nem_mosaicByName(
|
|
|
|
definition->levy_namespace, definition->levy_mosaic, network);
|
2017-07-22 18:02:41 +00:00
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
switch (definition->levy) {
|
|
|
|
case NEMMosaicLevy_MosaicLevy_Absolute:
|
|
|
|
return format_amount(mosaic, &fee, NULL, 0, str_out, size);
|
2017-07-20 21:58:19 +00:00
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
case NEMMosaicLevy_MosaicLevy_Percentile:
|
|
|
|
bn_multiply(&fee, &amnt, &secp256k1.prime);
|
|
|
|
return format_amount(mosaic, &amnt, multiplier,
|
|
|
|
NEM_LEVY_PERCENTILE_DIVISOR, str_out, size);
|
2017-07-20 21:58:19 +00:00
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
2017-07-22 18:02:41 +00:00
|
|
|
}
|